Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ComputeIsolationProperties
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ComputeIsolationProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/compute_isolation_properties.rb
Overview
The compute isolation properties.
Instance Attribute Summary collapse
-
#enable_compute_isolation ⇒ Boolean
or not.
-
#host_sku ⇒ String
The host sku.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ComputeIsolationProperties class as Ruby Hash.
Instance Attribute Details
#enable_compute_isolation ⇒ Boolean
or not.
17 18 19 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/compute_isolation_properties.rb', line 17 def enable_compute_isolation @enable_compute_isolation end |
#host_sku ⇒ String
Returns The host sku.
20 21 22 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/compute_isolation_properties.rb', line 20 def host_sku @host_sku end |
Class Method Details
.mapper ⇒ Object
Mapper for ComputeIsolationProperties class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/compute_isolation_properties.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ComputeIsolationProperties', type: { name: 'Composite', class_name: 'ComputeIsolationProperties', model_properties: { enable_compute_isolation: { client_side_validation: true, required: false, serialized_name: 'enableComputeIsolation', type: { name: 'Boolean' } }, host_sku: { client_side_validation: true, required: false, serialized_name: 'hostSku', type: { name: 'String' } } } } } end |