class Azure::Web::Mgmt::V2018_02_01::Models::EnabledConfig

Enabled configuration.

Attributes

enabled[RW]

@return [Boolean] True if configuration is enabled, false if it is disabled and null if configuration is not set.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-02-01/generated/azure_mgmt_web/models/enabled_config.rb, line 24
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'EnabledConfig',
    type: {
      name: 'Composite',
      class_name: 'EnabledConfig',
      model_properties: {
        enabled: {
          client_side_validation: true,
          required: false,
          serialized_name: 'enabled',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end