class Azure::Web::Mgmt::V2018_02_01::Models::ApplicationLogsConfig

Application logs configuration.

Attributes

azure_blob_storage[RW]

@return [AzureBlobStorageApplicationLogsConfig] Application logs to blob storage configuration.

azure_table_storage[RW]

@return [AzureTableStorageApplicationLogsConfig] Application logs to azure table storage configuration.

file_system[RW]

@return [FileSystemApplicationLogsConfig] Application logs to file system configuration.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-02-01/generated/azure_mgmt_web/models/application_logs_config.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationLogsConfig',
    type: {
      name: 'Composite',
      class_name: 'ApplicationLogsConfig',
      model_properties: {
        file_system: {
          client_side_validation: true,
          required: false,
          serialized_name: 'fileSystem',
          type: {
            name: 'Composite',
            class_name: 'FileSystemApplicationLogsConfig'
          }
        },
        azure_table_storage: {
          client_side_validation: true,
          required: false,
          serialized_name: 'azureTableStorage',
          type: {
            name: 'Composite',
            class_name: 'AzureTableStorageApplicationLogsConfig'
          }
        },
        azure_blob_storage: {
          client_side_validation: true,
          required: false,
          serialized_name: 'azureBlobStorage',
          type: {
            name: 'Composite',
            class_name: 'AzureBlobStorageApplicationLogsConfig'
          }
        }
      }
    }
  }
end