Class: Azure::Compute::Mgmt::V2016_03_30::Models::AvailabilitySet
- Inherits:
-
Resource
- Object
- Resource
- Azure::Compute::Mgmt::V2016_03_30::Models::AvailabilitySet
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-30/generated/azure_mgmt_compute/models/availability_set.rb
Overview
Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see [Manage the availability of virtual machines](docs.microsoft.com/azure/virtual-machines/virtual-machines-windows-manage-availability?toc=%2fazure%2fvirtual-machines%2fwindows%2ftoc.json).
For more information on Azure planned maintenance, see [Planned maintenance for virtual machines in Azure](docs.microsoft.com/azure/virtual-machines/virtual-machines-windows-planned-maintenance?toc=%2fazure%2fvirtual-machines%2fwindows%2ftoc.json)
Currently, a VM can only be added to availability set at creation time. An existing VM cannot be added to an availability set.
Instance Attribute Summary collapse
-
#platform_fault_domain_count ⇒ Integer
Fault Domain count.
-
#platform_update_domain_count ⇒ Integer
Update Domain count.
-
#statuses ⇒ Array<InstanceViewStatus>
The resource status information.
-
#virtual_machines ⇒ Array<SubResource>
machines in the availability set.
Attributes inherited from Resource
#id, #location, #name, #tags, #type
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AvailabilitySet class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#platform_fault_domain_count ⇒ Integer
Returns Fault Domain count.
29 30 31 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/availability_set.rb', line 29 def platform_fault_domain_count @platform_fault_domain_count end |
#platform_update_domain_count ⇒ Integer
Returns Update Domain count.
26 27 28 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/availability_set.rb', line 26 def platform_update_domain_count @platform_update_domain_count end |
#statuses ⇒ Array<InstanceViewStatus>
Returns The resource status information.
36 37 38 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/availability_set.rb', line 36 def statuses @statuses end |
#virtual_machines ⇒ Array<SubResource>
machines in the availability set.
33 34 35 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/availability_set.rb', line 33 def virtual_machines @virtual_machines end |
Class Method Details
.mapper ⇒ Object
Mapper for AvailabilitySet class as Ruby Hash. This will be used for serialization/deserialization.
43 44 45 46 47 48 49 50 51 52 53 54 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 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 |
# File 'lib/2016-03-30/generated/azure_mgmt_compute/models/availability_set.rb', line 43 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AvailabilitySet', type: { name: 'Composite', class_name: 'AvailabilitySet', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: true, serialized_name: 'location', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, platform_update_domain_count: { client_side_validation: true, required: false, serialized_name: 'properties.platformUpdateDomainCount', type: { name: 'Number' } }, platform_fault_domain_count: { client_side_validation: true, required: false, serialized_name: 'properties.platformFaultDomainCount', type: { name: 'Number' } }, virtual_machines: { client_side_validation: true, required: false, serialized_name: 'properties.virtualMachines', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'SubResourceElementType', type: { name: 'Composite', class_name: 'SubResource' } } } }, statuses: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.statuses', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'InstanceViewStatusElementType', type: { name: 'Composite', class_name: 'InstanceViewStatus' } } } } } } } end |