Class: Azure::Compute::Mgmt::V2016_03_30::Models::VirtualMachineScaleSetOSDisk
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2016_03_30::Models::VirtualMachineScaleSetOSDisk
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-30/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. -
#image ⇒ VirtualHardDisk
VirtualHardDisk will be copied before using it to attach to the Virtual Machine.
-
#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>
The list of virtual hard disk container uris.
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/2016-03-30/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'
32 33 34 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 32 def create_option @create_option end |
#image ⇒ VirtualHardDisk
VirtualHardDisk will be copied before using it to attach to the Virtual Machine. If SourceImage is provided, the destination VirtualHardDisk should not exist.
45 46 47 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 45 def image @image end |
#name ⇒ String
Returns The disk name.
16 17 18 |
# File 'lib/2016-03-30/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'
39 40 41 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 39 def os_type @os_type end |
#vhd_containers ⇒ Array<String>
Returns The list of virtual hard disk container uris.
48 49 50 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 48 def vhd_containers @vhd_containers end |
Class Method Details
.mapper ⇒ Object
Mapper for VirtualMachineScaleSetOSDisk class as Ruby Hash. This will be used for serialization/deserialization.
55 56 57 58 59 60 61 62 63 64 65 66 67 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 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/virtual_machine_scale_set_osdisk.rb', line 55 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: true, serialized_name: 'name', type: { name: 'String' } }, caching: { client_side_validation: true, required: false, serialized_name: 'caching', type: { name: 'Enum', module: 'CachingTypes' } }, create_option: { client_side_validation: true, required: true, serialized_name: 'createOption', type: { name: 'Enum', module: 'DiskCreateOptionTypes' } }, 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' } } } } } } } end |