Class VMSize
- java.lang.Object
- 
- org.jclouds.azurecompute.arm.domain.VMSize
 
- 
- 
Constructor SummaryConstructors Constructor Description VMSize()
 - 
Method SummaryAll Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static VMSizecreate(String name, Integer numberOfCores, Integer osDiskSizeInMB, Integer resourceDiskSizeInMB, Integer memoryInMB, Integer maxDataDiskCount)abstract IntegermaxDataDiskCount()Specifies the maximum number of data disks that can be attached to the VM size.abstract IntegermemoryInMB()Specifies the available RAM in MB.abstract Stringname()The name of the VM size.abstract IntegernumberOfCores()The number of cores that are available in the VM size.abstract IntegerosDiskSizeInMB()Specifies the size in MB of the OS Disk.abstract IntegerresourceDiskSizeInMB()The size of the resource disk.
 
- 
- 
- 
Method Detail- 
namepublic abstract String name() The name of the VM size.
 - 
numberOfCorespublic abstract Integer numberOfCores() The number of cores that are available in the VM size.
 - 
osDiskSizeInMBpublic abstract Integer osDiskSizeInMB() Specifies the size in MB of the OS Disk.
 - 
resourceDiskSizeInMBpublic abstract Integer resourceDiskSizeInMB() The size of the resource disk.
 - 
memoryInMBpublic abstract Integer memoryInMB() Specifies the available RAM in MB.
 - 
maxDataDiskCountpublic abstract Integer maxDataDiskCount() Specifies the maximum number of data disks that can be attached to the VM size.
 
- 
 
-