Class: Azure::ARM::Web::Models::FileSystemApplicationLogsConfig
- Inherits:
-
Object
- Object
- Azure::ARM::Web::Models::FileSystemApplicationLogsConfig
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/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’ .
18 19 20 |
# File 'lib/generated/azure_mgmt_web/models/file_system_application_logs_config.rb', line 18 def level @level end |
Class Method Details
.mapper ⇒ Object
Mapper for FileSystemApplicationLogsConfig class as Ruby Hash. This will be used for serialization/deserialization.
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/generated/azure_mgmt_web/models/file_system_application_logs_config.rb', line 25 def self.mapper() { required: false, serialized_name: 'FileSystemApplicationLogsConfig', type: { name: 'Composite', class_name: 'FileSystemApplicationLogsConfig', model_properties: { level: { required: false, serialized_name: 'level', default_value: 'Off', type: { name: 'Enum', module: 'LogLevel' } } } } } end |