Class: Azure::ARM::Web::Models::ApplicationLogsConfig

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_web/models/application_logs_config.rb

Overview

Application logs configuration

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#azure_blob_storageAzureBlobStorageApplicationLogsConfig

blob storage configuration

Returns:



25
26
27
# File 'lib/generated/azure_mgmt_web/models/application_logs_config.rb', line 25

def azure_blob_storage
  @azure_blob_storage
end

#azure_table_storageAzureTableStorageApplicationLogsConfig

azure table storage configuration

Returns:



21
22
23
# File 'lib/generated/azure_mgmt_web/models/application_logs_config.rb', line 21

def azure_table_storage
  @azure_table_storage
end

#file_systemFileSystemApplicationLogsConfig

system configuration

Returns:



17
18
19
# File 'lib/generated/azure_mgmt_web/models/application_logs_config.rb', line 17

def file_system
  @file_system
end

Class Method Details

.mapperObject

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



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/generated/azure_mgmt_web/models/application_logs_config.rb', line 32

def self.mapper()
  {
    required: false,
    serialized_name: 'ApplicationLogsConfig',
    type: {
      name: 'Composite',
      class_name: 'ApplicationLogsConfig',
      model_properties: {
        file_system: {
          required: false,
          serialized_name: 'fileSystem',
          type: {
            name: 'Composite',
            class_name: 'FileSystemApplicationLogsConfig'
          }
        },
        azure_table_storage: {
          required: false,
          serialized_name: 'azureTableStorage',
          type: {
            name: 'Composite',
            class_name: 'AzureTableStorageApplicationLogsConfig'
          }
        },
        azure_blob_storage: {
          required: false,
          serialized_name: 'azureBlobStorage',
          type: {
            name: 'Composite',
            class_name: 'AzureBlobStorageApplicationLogsConfig'
          }
        }
      }
    }
  }
end