Package version:

Interface CloudCapacity

Cloud Capacity model

interface CloudCapacity {
    cpuCount?: number;
    memoryMB?: number;
    vmCount?: number;
}

Properties

cpuCount?: number

CPUCount specifies the maximum number of CPUs that can be allocated in the cloud. NOTE: This property will not be serialized. It can only be populated by the server.

memoryMB?: number

MemoryMB specifies a memory usage limit in megabytes. NOTE: This property will not be serialized. It can only be populated by the server.

vmCount?: number

VMCount gives the max number of VMs that can be deployed in the cloud. NOTE: This property will not be serialized. It can only be populated by the server.