Class: Azure::Compute::Mgmt::V2020_12_01::Models::DedicatedHostGroupUpdate
- Inherits:
-
UpdateResource
- Object
- UpdateResource
- Azure::Compute::Mgmt::V2020_12_01::Models::DedicatedHostGroupUpdate
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-12-01/generated/azure_mgmt_compute/models/dedicated_host_group_update.rb
Overview
Specifies information about the dedicated host group that the dedicated host should be assigned to. Only tags may be updated.
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 UpdateResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DedicatedHostGroupUpdate class as Ruby Hash.
Instance Attribute Details
#hosts ⇒ Array<SubResourceReadOnly>
dedicated hosts in the dedicated host group.
21 22 23 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/dedicated_host_group_update.rb', line 21 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.
26 27 28 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/dedicated_host_group_update.rb', line 26 def instance_view @instance_view end |
#platform_fault_domain_count ⇒ Integer
Returns Number of fault domains that the host group can span.
17 18 19 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/dedicated_host_group_update.rb', line 17 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.
34 35 36 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/dedicated_host_group_update.rb', line 34 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.
40 41 42 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/dedicated_host_group_update.rb', line 40 def zones @zones end |
Class Method Details
.mapper ⇒ Object
Mapper for DedicatedHostGroupUpdate class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2020-12-01/generated/azure_mgmt_compute/models/dedicated_host_group_update.rb', line 47 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DedicatedHostGroupUpdate', type: { name: 'Composite', class_name: 'DedicatedHostGroupUpdate', model_properties: { 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 |