Class: Azure::Compute::Mgmt::V2019_07_01::Models::DedicatedHostGroup
- Inherits:
-
Resource
- Object
- Resource
- Azure::Compute::Mgmt::V2019_07_01::Models::DedicatedHostGroup
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-07-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.
-
#platform_fault_domain_count ⇒ Integer
Number of fault domains that the host group can span.
-
#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/2019-07-01/generated/azure_mgmt_compute/models/dedicated_host_group.rb', line 23 def hosts @hosts end |
#platform_fault_domain_count ⇒ Integer
Returns Number of fault domains that the host group can span.
19 20 21 |
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/dedicated_host_group.rb', line 19 def platform_fault_domain_count @platform_fault_domain_count 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.
29 30 31 |
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/dedicated_host_group.rb', line 29 def zones @zones end |
Class Method Details
.mapper ⇒ Object
Mapper for DedicatedHostGroup class as Ruby Hash. This will be used for serialization/deserialization.
36 37 38 39 40 41 42 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 |
# File 'lib/2019-07-01/generated/azure_mgmt_compute/models/dedicated_host_group.rb', line 36 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: { InclusiveMaximum: 3, 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' } } } }, 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 |