Class: Azure::ARM::Web::Models::FileSystemHttpLogsConfig
- Inherits:
-
Object
- Object
- Azure::ARM::Web::Models::FileSystemHttpLogsConfig
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_web/models/file_system_http_logs_config.rb
Overview
Http logs to file system configuration
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Enabled.
-
#retention_in_days ⇒ Integer
Remove files older than X days.
-
#retention_in_mb ⇒ Integer
use.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ FileSystemHttpLogsConfig
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
#enabled ⇒ Boolean
Returns Enabled.
28 29 30 |
# File 'lib/azure_mgmt_web/models/file_system_http_logs_config.rb', line 28 def enabled @enabled end |
#retention_in_days ⇒ Integer
Remove files older than X days. 0 or lower means no retention.
25 26 27 |
# File 'lib/azure_mgmt_web/models/file_system_http_logs_config.rb', line 25 def retention_in_days @retention_in_days end |
#retention_in_mb ⇒ Integer
use. When reached old log files will be removed to make space for new ones. Value can range between 25 and 100.
20 21 22 |
# File 'lib/azure_mgmt_web/models/file_system_http_logs_config.rb', line 20 def retention_in_mb @retention_in_mb end |
Class Method Details
.deserialize_object(object) ⇒ FileSystemHttpLogsConfig
Deserializes given Ruby Hash into Model object.
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/azure_mgmt_web/models/file_system_http_logs_config.rb', line 63 def self.deserialize_object(object) return if object.nil? output_object = FileSystemHttpLogsConfig.new deserialized_property = object['retentionInMb'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.retention_in_mb = deserialized_property deserialized_property = object['retentionInDays'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.retention_in_days = deserialized_property deserialized_property = object['enabled'] output_object.enabled = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/azure_mgmt_web/models/file_system_http_logs_config.rb', line 42 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.retention_in_mb output_object['retentionInMb'] = serialized_property unless serialized_property.nil? serialized_property = object.retention_in_days output_object['retentionInDays'] = serialized_property unless serialized_property.nil? serialized_property = object.enabled output_object['enabled'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
33 34 35 |
# File 'lib/azure_mgmt_web/models/file_system_http_logs_config.rb', line 33 def validate # Nothing to validate end |