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

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, 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:



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

def azure_blob_storage
  @azure_blob_storage
end

#azure_table_storageAzureTableStorageApplicationLogsConfig

azure table storage configuration.

Returns:



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

def azure_table_storage
  @azure_table_storage
end

#file_systemFileSystemApplicationLogsConfig

system configuration.

Returns:



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

def file_system
  @file_system
end

Class Method Details

.mapperObject

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



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
68
# File 'lib/generated/azure_mgmt_web/models/application_logs_config.rb', line 33

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