class Azure::Resources::Mgmt::V2019_05_10::Models::DebugSetting

The debug setting.

Attributes

detail_level[RW]

@return [String] Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information you are passing in during deployment. By logging information about the request or response, you could potentially expose sensitive data that is retrieved through the deployment operations.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-05-10/generated/azure_mgmt_resources/models/debug_setting.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DebugSetting',
    type: {
      name: 'Composite',
      class_name: 'DebugSetting',
      model_properties: {
        detail_level: {
          client_side_validation: true,
          required: false,
          serialized_name: 'detailLevel',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end