Class: Azure::Web::Mgmt::V2018_02_01::Models::FileSystemApplicationLogsConfig
- Inherits:
-
Object
- Object
- Azure::Web::Mgmt::V2018_02_01::Models::FileSystemApplicationLogsConfig
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_web/models/file_system_application_logs_config.rb
Overview
Application logs to file system configuration.
Instance Attribute Summary collapse
-
#level ⇒ LogLevel
‘Verbose’, ‘Information’, ‘Warning’, ‘Error’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for FileSystemApplicationLogsConfig class as Ruby Hash.
Instance Attribute Details
#level ⇒ LogLevel
‘Verbose’, ‘Information’, ‘Warning’, ‘Error’. Default value: ‘Off’ .
17 18 19 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/file_system_application_logs_config.rb', line 17 def level @level end |
Class Method Details
.mapper ⇒ Object
Mapper for FileSystemApplicationLogsConfig class as Ruby Hash. This will be used for serialization/deserialization.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/file_system_application_logs_config.rb', line 24 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'FileSystemApplicationLogsConfig', type: { name: 'Composite', class_name: 'FileSystemApplicationLogsConfig', model_properties: { level: { client_side_validation: true, required: false, serialized_name: 'level', default_value: 'Off', type: { name: 'Enum', module: 'LogLevel' } } } } } end |