@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
50 lines (49 loc) • 1.29 kB
TypeScript
/**
* devopness API
* Devopness API - Painless essential DevOps to everyone
*
* The version of the OpenAPI document: latest
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { CloudOsVersionCode } from './cloud-os-version-code';
/**
*
* @export
* @interface CloudServiceSettingsAzureRm
*/
export interface CloudServiceSettingsAzureRm {
/**
* The instance type to be launched on the cloud provider
* @type {string}
* @memberof CloudServiceSettingsAzureRm
*/
instance_type: string;
/**
* Datacenter region where the cloud instance will be launched
* @type {string}
* @memberof CloudServiceSettingsAzureRm
*/
region: string;
/**
* Human readable version of the server region
* @type {string}
* @memberof CloudServiceSettingsAzureRm
*/
region_human_readable?: string;
/**
* The storage\'s size of the cloud instance
* @type {number}
* @memberof CloudServiceSettingsAzureRm
*/
storage_size: number;
/**
*
* @type {CloudOsVersionCode}
* @memberof CloudServiceSettingsAzureRm
*/
os_version_code: CloudOsVersionCode | null;
}