Class: Azure::ARM::Web::Models::FileSystemApplicationLogsConfig
- Inherits:
-
Object
- Object
- Azure::ARM::Web::Models::FileSystemApplicationLogsConfig
- Includes:
- MsRestAzure
- Defined in:
- lib/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
-
.deserialize_object(object) ⇒ FileSystemApplicationLogsConfig
Deserializes given Ruby Hash into Model object.
-
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
Instance Method Summary collapse
-
#validate ⇒ Object
Validate the object.
Instance Attribute Details
#level ⇒ LogLevel
‘Verbose’, ‘Information’, ‘Warning’, ‘Error’
17 18 19 |
# File 'lib/azure_mgmt_web/models/file_system_application_logs_config.rb', line 17 def level @level end |
Class Method Details
.deserialize_object(object) ⇒ FileSystemApplicationLogsConfig
Deserializes given Ruby Hash into Model object.
45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/azure_mgmt_web/models/file_system_application_logs_config.rb', line 45 def self.deserialize_object(object) return if object.nil? output_object = FileSystemApplicationLogsConfig.new deserialized_property = object['level'] if (!deserialized_property.nil? && !deserialized_property.empty?) enum_is_valid = LogLevel.constants.any? { |e| LogLevel.const_get(e).to_s.downcase == deserialized_property.downcase } warn 'Enum LogLevel does not contain ' + deserialized_property.downcase + ', but was received from the server.' unless enum_is_valid end output_object.level = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
30 31 32 33 34 35 36 37 38 |
# File 'lib/azure_mgmt_web/models/file_system_application_logs_config.rb', line 30 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.level output_object['level'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
22 23 |
# File 'lib/azure_mgmt_web/models/file_system_application_logs_config.rb', line 22 def validate end |