Class: Azure::Compute::Mgmt::V2020_06_01::Models::DedicatedHostGroup
- Inherits:
-
Resource
- Object
- Resource
- Azure::Compute::Mgmt::V2020_06_01::Models::DedicatedHostGroup
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-06-01/generated/azure_mgmt_compute/models/dedicated_host_group.rb
Overview
Specifies information about the dedicated host group that the dedicated hosts should be assigned to.
Currently, a dedicated host can only be added to a dedicated host group at creation time. An existing dedicated host cannot be added to another dedicated host group.
Instance Attribute Summary collapse
-
#hosts ⇒ Array<SubResourceReadOnly>
dedicated hosts in the dedicated host group.
-
#instance_view ⇒ DedicatedHostGroupInstanceView
instance view, which has the list of instance view of the dedicated hosts under the dedicated host group.
-
#platform_fault_domain_count ⇒ Integer
Number of fault domains that the host group can span.
-
#support_automatic_placement ⇒ Boolean
scale sets can be placed automatically on the dedicated host group.
-
#zones ⇒ Array<String>
Only single zone is supported.
Attributes inherited from Resource
#id, #location, #name, #tags, #type
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DedicatedHostGroup class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#hosts ⇒ Array<SubResourceReadOnly>
dedicated hosts in the dedicated host group.
23 24 25 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/dedicated_host_group.rb', line 23 def hosts @hosts end |
#instance_view ⇒ DedicatedHostGroupInstanceView
instance view, which has the list of instance view of the dedicated hosts under the dedicated host group.
28 29 30 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/dedicated_host_group.rb', line 28 def instance_view @instance_view end |
#platform_fault_domain_count ⇒ Integer
Returns Number of fault domains that the host group can span.
19 20 21 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/dedicated_host_group.rb', line 19 def platform_fault_domain_count @platform_fault_domain_count end |
#support_automatic_placement ⇒ Boolean
scale sets can be placed automatically on the dedicated host group. Automatic placement means resources are allocated on dedicated hosts, that are chosen by Azure, under the dedicated host group. The value is defaulted to 'false' when not provided.
Minimum api-version: 2020-06-01.
36 37 38 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/dedicated_host_group.rb', line 36 def support_automatic_placement @support_automatic_placement end |
#zones ⇒ Array<String>
Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.
42 43 44 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/dedicated_host_group.rb', line 42 def zones @zones end |
Class Method Details
.mapper ⇒ Object
Mapper for DedicatedHostGroup class as Ruby Hash. This will be used for serialization/deserialization.
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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/dedicated_host_group.rb', line 49 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DedicatedHostGroup', type: { name: 'Composite', class_name: 'DedicatedHostGroup', 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_fault_domain_count: { client_side_validation: true, required: true, serialized_name: 'properties.platformFaultDomainCount', constraints: { InclusiveMinimum: 1 }, type: { name: 'Number' } }, hosts: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.hosts', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'SubResourceReadOnlyElementType', type: { name: 'Composite', class_name: 'SubResourceReadOnly' } } } }, instance_view: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.instanceView', type: { name: 'Composite', class_name: 'DedicatedHostGroupInstanceView' } }, support_automatic_placement: { client_side_validation: true, required: false, serialized_name: 'properties.supportAutomaticPlacement', type: { name: 'Boolean' } }, zones: { client_side_validation: true, required: false, serialized_name: 'zones', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |