class Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ExcludedServicesConfig

The configuration that services will be excluded when creating cluster.

Attributes

excluded_services_config_id[RW]

@return [String] The config id of excluded services.

excluded_services_list[RW]

@return [String] The list of excluded services.

Private Class Methods

mapper() click to toggle source

Mapper for ExcludedServicesConfig class as Ruby Hash. This will be used for serialization/deserialization.

# 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