/* 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 { CloudError } from './cloud-error';
// May contain unused imports in some cases
// @ts-ignore
import type { CloudInstances } from './cloud-instances';
// May contain unused imports in some cases
// @ts-ignore
import type { CloudProfile } from './cloud-profile';
/**
* A cloud image that stores settings for individual cloud machine instances (the ID of an instance to start, post-launch sripts, and more). Cloud images are owned by cloud profiles.
* @export
* @interface CloudImage
*/
export interface CloudImage {
/**
* The ID of this cloud image. Typically consists of the truncated image name added to the parent profile ID.
* @type {string}
* @memberof CloudImage
*/
id?: string;
/**
* The full image name. Includes the public cloud image name and ID.
* @type {string}
* @memberof CloudImage
*/
name?: string;
/**
* The shortened (without the server URL) link to this cloud image.
* @type {string}
* @memberof CloudImage
*/
href?: string;
/**
*
* @type {CloudProfile}
* @memberof CloudImage
*/
profile?: CloudProfile;
/**
*
* @type {CloudInstances}
* @memberof CloudImage
*/
instances?: CloudInstances;
/**
* This property is deprecated, use `error` instead.
* @type {string}
* @memberof CloudImage
*/
errorMessage?: string;
/**
*
* @type {CloudError}
* @memberof CloudImage
*/
error?: CloudError;
/**
* The value of the `typeId` property of all agents spawned from this image. Allows you to identify sibling cloud agents.
* @type {number}
* @memberof CloudImage
*/
agentTypeId?: number;
/**
* The ID of the agent pool to which agents spawned from this image belong.
* @type {number}
* @memberof CloudImage
*/
agentPoolId?: number;
/**
* The full name of the OS installed on virtual machines spawned from this image.
* @type {string}
* @memberof CloudImage
*/
operatingSystemName?: string;
/**
* Returns the full web link to access this cloud image.
* @type {string}
* @memberof CloudImage
*/
webUrl?: string;
/**
*
* @type {string}
* @memberof CloudImage
*/
locator?: string;
}