Class: Azure::Compute::Mgmt::V2019_12_01::Models::DedicatedHostUpdate
- Inherits:
-
UpdateResource
- Object
- UpdateResource
- Azure::Compute::Mgmt::V2019_12_01::Models::DedicatedHostUpdate
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-12-01/generated/azure_mgmt_compute/models/dedicated_host_update.rb
Overview
Specifies information about the dedicated host. Only tags, autoReplaceOnFailure and licenseType may be updated.
Instance Attribute Summary collapse
-
#auto_replace_on_failure ⇒ Boolean
replaced automatically in case of a failure.
-
#host_id ⇒ String
host by the platform.
-
#instance_view ⇒ DedicatedHostInstanceView
The dedicated host instance view.
-
#license_type ⇒ DedicatedHostLicenseTypes
that will be applied to the VMs deployed on the dedicated host.
-
#platform_fault_domain ⇒ Integer
host group.
-
#provisioning_state ⇒ String
response.
-
#provisioning_time ⇒ DateTime
The date when the host was first provisioned.
-
#virtual_machines ⇒ Array<SubResourceReadOnly>
virtual machines in the Dedicated Host.
Attributes inherited from UpdateResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DedicatedHostUpdate class as Ruby Hash.
Instance Attribute Details
#auto_replace_on_failure ⇒ Boolean
replaced automatically in case of a failure. The value is defaulted to 'true' when not provided.
23 24 25 |
# File 'lib/2019-12-01/generated/azure_mgmt_compute/models/dedicated_host_update.rb', line 23 def auto_replace_on_failure @auto_replace_on_failure end |
#host_id ⇒ String
host by the platform.
Does not change throughout the lifetime of the host.
28 29 30 |
# File 'lib/2019-12-01/generated/azure_mgmt_compute/models/dedicated_host_update.rb', line 28 def host_id @host_id end |
#instance_view ⇒ DedicatedHostInstanceView
Returns The dedicated host instance view.
50 51 52 |
# File 'lib/2019-12-01/generated/azure_mgmt_compute/models/dedicated_host_update.rb', line 50 def instance_view @instance_view end |
#license_type ⇒ DedicatedHostLicenseTypes
that will be applied to the VMs deployed on the dedicated host.
Possible values are:
*None*
*Windows_Server_Hybrid*
*Windows_Server_Perpetual*
Default: *None*. Possible values include: 'None', 'Windows_Server_Hybrid', 'Windows_Server_Perpetual'
40 41 42 |
# File 'lib/2019-12-01/generated/azure_mgmt_compute/models/dedicated_host_update.rb', line 40 def license_type @license_type end |
#platform_fault_domain ⇒ Integer
host group.
18 19 20 |
# File 'lib/2019-12-01/generated/azure_mgmt_compute/models/dedicated_host_update.rb', line 18 def platform_fault_domain @platform_fault_domain end |
#provisioning_state ⇒ String
response.
47 48 49 |
# File 'lib/2019-12-01/generated/azure_mgmt_compute/models/dedicated_host_update.rb', line 47 def provisioning_state @provisioning_state end |
#provisioning_time ⇒ DateTime
Returns The date when the host was first provisioned.
43 44 45 |
# File 'lib/2019-12-01/generated/azure_mgmt_compute/models/dedicated_host_update.rb', line 43 def provisioning_time @provisioning_time end |
#virtual_machines ⇒ Array<SubResourceReadOnly>
virtual machines in the Dedicated Host.
32 33 34 |
# File 'lib/2019-12-01/generated/azure_mgmt_compute/models/dedicated_host_update.rb', line 32 def virtual_machines @virtual_machines end |
Class Method Details
.mapper ⇒ Object
Mapper for DedicatedHostUpdate class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2019-12-01/generated/azure_mgmt_compute/models/dedicated_host_update.rb', line 57 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DedicatedHostUpdate', type: { name: 'Composite', class_name: 'DedicatedHostUpdate', 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: { client_side_validation: true, required: false, serialized_name: 'properties.platformFaultDomain', constraints: { InclusiveMaximum: 2, InclusiveMinimum: 0 }, type: { name: 'Number' } }, auto_replace_on_failure: { client_side_validation: true, required: false, serialized_name: 'properties.autoReplaceOnFailure', type: { name: 'Boolean' } }, host_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.hostId', type: { name: 'String' } }, virtual_machines: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.virtualMachines', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'SubResourceReadOnlyElementType', type: { name: 'Composite', class_name: 'SubResourceReadOnly' } } } }, license_type: { client_side_validation: true, required: false, serialized_name: 'properties.licenseType', type: { name: 'Enum', module: 'DedicatedHostLicenseTypes' } }, provisioning_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningTime', type: { name: 'DateTime' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, instance_view: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.instanceView', type: { name: 'Composite', class_name: 'DedicatedHostInstanceView' } } } } } end |