/* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { Agent } from './agent';
// May contain unused imports in some cases
// @ts-ignore
import type { CloudError } from './cloud-error';
// May contain unused imports in some cases
// @ts-ignore
import type { CloudImage } from './cloud-image';
/**
* An individual cloud instance spawned from a cloud image.
* @export
* @interface CloudInstance
*/
export interface CloudInstance {
/**
* The internally used read-only ID of this instance.
* @type {string}
* @memberof CloudInstance
*/
id?: string;
/**
* The name of this instance.
* @type {string}
* @memberof CloudInstance
*/
name?: string;
/**
* A String value that specifies the instance current status. Can return the following values: `scheduled to start`, `scheduled to stop`, `starting`, `running`, `restarting`, `stopping`, `stopped`, `unknown`, and `error`.
* @type {string}
* @memberof CloudInstance
*/
state?: string;
/**
* The time of this instance\'s initial start.
* @type {string}
* @memberof CloudInstance
*/
startDate?: string;
/**
* The actual instance address.
* @type {string}
* @memberof CloudInstance
*/
networkAddress?: string;
/**
* The relative (without the TeamCity server URL) link to this instance.
* @type {string}
* @memberof CloudInstance
*/
href?: string;
/**
*
* @type {CloudImage}
* @memberof CloudInstance
*/
image?: CloudImage;
/**
*
* @type {Agent}
* @memberof CloudInstance
*/
agent?: Agent;
/**
* This property is deprecated, use `error` instead.
* @type {string}
* @memberof CloudInstance
*/
errorMessage?: string;
/**
*
* @type {CloudError}
* @memberof CloudInstance
*/
error?: CloudError;
}