Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ExcludedServicesConfig
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ExcludedServicesConfig
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/excluded_services_config.rb
Overview
The configuration that services will be excluded when creating cluster.
Instance Attribute Summary collapse
-
#excluded_services_config_id ⇒ String
The config id of excluded services.
-
#excluded_services_list ⇒ String
The list of excluded services.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ExcludedServicesConfig class as Ruby Hash.
Instance Attribute Details
#excluded_services_config_id ⇒ String
Returns The config id of excluded services.
16 17 18 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/excluded_services_config.rb', line 16 def excluded_services_config_id @excluded_services_config_id end |
#excluded_services_list ⇒ String
Returns The list of excluded services.
19 20 21 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/excluded_services_config.rb', line 19 def excluded_services_list @excluded_services_list end |
Class Method Details
.mapper ⇒ Object
Mapper for ExcludedServicesConfig class as Ruby Hash. This will be used for serialization/deserialization.
26 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 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/excluded_services_config.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExcludedServicesConfig', type: { name: 'Composite', class_name: 'ExcludedServicesConfig', model_properties: { excluded_services_config_id: { client_side_validation: true, required: false, serialized_name: 'excludedServicesConfigId', type: { name: 'String' } }, excluded_services_list: { client_side_validation: true, required: false, serialized_name: 'excludedServicesList', type: { name: 'String' } } } } } end |