/* tslint:disable */
/* eslint-disable */
/**
* TeamCity REST API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2018.1 (current)
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Represents a locator string for filtering DeploymentInstance entities.
* @export
* @interface DeploymentInstanceLocator
*/
export interface DeploymentInstanceLocator {
/**
* For paginated calls, how many entities to return per page.
* @type {number}
* @memberof DeploymentInstanceLocator
*/
count?: number;
/**
* Current state of deployment.
* @type {string}
* @memberof DeploymentInstanceLocator
*/
currentState?: DeploymentInstanceLocatorCurrentStateEnum;
/**
* Deployment dashboard locator.
* @type {string}
* @memberof DeploymentInstanceLocator
*/
dashboard?: string;
/**
* Dashboard id.
* @type {string}
* @memberof DeploymentInstanceLocator
*/
id?: string;
/**
* For paginated calls, from which entity to start rendering the page.
* @type {number}
* @memberof DeploymentInstanceLocator
*/
start?: number;
}
export const DeploymentInstanceLocatorCurrentStateEnum = {
InProgress: 'in_progress',
Successful: 'successful',
Failed: 'failed',
Cancelled: 'cancelled',
Unknown: 'unknown',
} as const;
export type DeploymentInstanceLocatorCurrentStateEnum =
(typeof DeploymentInstanceLocatorCurrentStateEnum)[keyof typeof DeploymentInstanceLocatorCurrentStateEnum];