Class: Azure::Compute::Mgmt::V2018_04_01::Models::VirtualMachineScaleSetOSDisk
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2018_04_01::Models::VirtualMachineScaleSetOSDisk
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb
Overview
Describes a virtual machine scale set operating system disk.
Instance Attribute Summary collapse
-
#caching ⇒ CachingTypes
Possible values are:
*None*
*ReadOnly*
*ReadWrite*
Default: **None for Standard storage. -
#create_option ⇒ DiskCreateOptionTypes
the scale set should be created.
The only allowed value is: *FromImage* u2013 This value is used when you are using an image to create the virtual machine. -
#disk_size_gb ⇒ Integer
gigabytes.
-
#image ⇒ VirtualHardDisk
user image to base the scale set on.
-
#managed_disk ⇒ VirtualMachineScaleSetManagedDiskParameters
parameters.
-
#name ⇒ String
The disk name.
-
#os_type ⇒ OperatingSystemTypes
type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD.
-
#vhd_containers ⇒ Array<String>
store operating system disks for the scale set.
-
#write_accelerator_enabled ⇒ Boolean
or disabled on the disk.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetOSDisk class as Ruby Hash.
Instance Attribute Details
#caching ⇒ CachingTypes
Possible values are:
*None*
*ReadOnly*
*ReadWrite*
Default: **None for Standard storage. ReadOnly for Premium storage**. Possible values include: 'None', 'ReadOnly', 'ReadWrite'
23 24 25 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 23 def caching @caching end |
#create_option ⇒ DiskCreateOptionTypes
the scale set should be created.
The only allowed value is: *FromImage* u2013 This value is used when you are using an image to create the virtual machine. If you are using a platform image, you also use the imageReference element described above. If you are using a marketplace image, you also use the plan element previously described. Possible values include: 'FromImage', 'Empty', 'Attach'
36 37 38 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 36 def create_option @create_option end |
#disk_size_gb ⇒ Integer
gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image.
This value cannot be larger than 1023 GB
42 43 44 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 42 def disk_size_gb @disk_size_gb end |
#image ⇒ VirtualHardDisk
user image to base the scale set on.
53 54 55 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 53 def image @image end |
#managed_disk ⇒ VirtualMachineScaleSetManagedDiskParameters
parameters.
61 62 63 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 61 def managed_disk @managed_disk end |
#name ⇒ String
Returns The disk name.
16 17 18 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 16 def name @name end |
#os_type ⇒ OperatingSystemTypes
type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD.
Possible values are:
*Windows*
*Linux*. Possible values include: 'Windows', 'Linux'
49 50 51 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 49 def os_type @os_type end |
#vhd_containers ⇒ Array<String>
store operating system disks for the scale set.
57 58 59 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 57 def vhd_containers @vhd_containers end |
#write_accelerator_enabled ⇒ Boolean
or disabled on the disk.
27 28 29 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 27 def write_accelerator_enabled @write_accelerator_enabled end |
Class Method Details
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetOSDisk class as Ruby Hash. This will be used for serialization/deserialization.
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'lib/2018-04-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 68 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VirtualMachineScaleSetOSDisk', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetOSDisk', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, caching: { client_side_validation: true, required: false, serialized_name: 'caching', type: { name: 'Enum', module: 'CachingTypes' } }, write_accelerator_enabled: { client_side_validation: true, required: false, serialized_name: 'writeAcceleratorEnabled', type: { name: 'Boolean' } }, create_option: { client_side_validation: true, required: true, serialized_name: 'createOption', type: { name: 'String' } }, disk_size_gb: { client_side_validation: true, required: false, serialized_name: 'diskSizeGB', type: { name: 'Number' } }, os_type: { client_side_validation: true, required: false, serialized_name: 'osType', type: { name: 'Enum', module: 'OperatingSystemTypes' } }, image: { client_side_validation: true, required: false, serialized_name: 'image', type: { name: 'Composite', class_name: 'VirtualHardDisk' } }, vhd_containers: { client_side_validation: true, required: false, serialized_name: 'vhdContainers', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, managed_disk: { client_side_validation: true, required: false, serialized_name: 'managedDisk', type: { name: 'Composite', class_name: 'VirtualMachineScaleSetManagedDiskParameters' } } } } } end |