Class: Azure::Compute::Mgmt::V2016_03_30::Models::HardwareProfile
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2016_03_30::Models::HardwareProfile
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-30/generated/azure_mgmt_compute/models/hardware_profile.rb
Overview
Specifies the hardware settings for the virtual machine.
Instance Attribute Summary collapse
-
#vm_size ⇒ VirtualMachineSizeTypes
machine.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for HardwareProfile class as Ruby Hash.
Instance Attribute Details
#vm_size ⇒ VirtualMachineSizeTypes
machine. For more information about virtual machine sizes, see [Sizes for virtual machines](docs.microsoft.com/azure/virtual-machines/virtual-machines-windows-sizes?toc=%2fazure%2fvirtual-machines%2fwindows%2ftoc.json).
The available VM sizes depend on region and availability set. For a list of available sizes use these APIs:
[List all available virtual machine sizes in an availability set](docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes)
[List all available virtual machine sizes in a region](docs.microsoft.com/rest/api/compute/virtualmachinesizes/list)
[List all available virtual machine sizes for resizing](docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes). Possible values include: 'Basic_A0', 'Basic_A1', 'Basic_A2', 'Basic_A3', 'Basic_A4', 'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3', 'Standard_A4', 'Standard_A5', 'Standard_A6', 'Standard_A7', 'Standard_A8', 'Standard_A9', 'Standard_A10', 'Standard_A11', 'Standard_D1', 'Standard_D2', 'Standard_D3', 'Standard_D4', 'Standard_D11', 'Standard_D12', 'Standard_D13', 'Standard_D14', 'Standard_D1_v2', 'Standard_D2_v2', 'Standard_D3_v2', 'Standard_D4_v2', 'Standard_D5_v2', 'Standard_D11_v2', 'Standard_D12_v2', 'Standard_D13_v2', 'Standard_D14_v2', 'Standard_D15_v2', 'Standard_DS1', 'Standard_DS2', 'Standard_DS3', 'Standard_DS4', 'Standard_DS11', 'Standard_DS12', 'Standard_DS13', 'Standard_DS14', 'Standard_DS1_v2', 'Standard_DS2_v2', 'Standard_DS3_v2', 'Standard_DS4_v2', 'Standard_DS5_v2', 'Standard_DS11_v2', 'Standard_DS12_v2', 'Standard_DS13_v2', 'Standard_DS14_v2', 'Standard_DS15_v2', 'Standard_G1', 'Standard_G2', 'Standard_G3', 'Standard_G4', 'Standard_G5', 'Standard_GS1', 'Standard_GS2', 'Standard_GS3', 'Standard_GS4', 'Standard_GS5'
44 45 46 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/hardware_profile.rb', line 44 def vm_size @vm_size end |
Class Method Details
.mapper ⇒ Object
Mapper for HardwareProfile class as Ruby Hash. This will be used for serialization/deserialization.
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/hardware_profile.rb', line 51 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'HardwareProfile', type: { name: 'Composite', class_name: 'HardwareProfile', model_properties: { vm_size: { client_side_validation: true, required: false, serialized_name: 'vmSize', type: { name: 'String' } } } } } end |