Class: Azure::ARM::Web::Models::AzureBlobStorageHttpLogsConfig
- Inherits:
-
Object
- Object
- Azure::ARM::Web::Models::AzureBlobStorageHttpLogsConfig
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_web/models/azure_blob_storage_http_logs_config.rb
Overview
Http logs to azure blob storage configuration
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Enabled.
-
#retention_in_days ⇒ Integer
Remove blobs older than X days.
-
#sas_url ⇒ String
read/write/list/delete permissions.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ AzureBlobStorageHttpLogsConfig
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.
25 26 27 |
# File 'lib/azure_mgmt_web/models/azure_blob_storage_http_logs_config.rb', line 25 def enabled @enabled end |
#retention_in_days ⇒ Integer
Remove blobs older than X days. 0 or lower means no retention.
22 23 24 |
# File 'lib/azure_mgmt_web/models/azure_blob_storage_http_logs_config.rb', line 22 def retention_in_days @retention_in_days end |
#sas_url ⇒ String
read/write/list/delete permissions
17 18 19 |
# File 'lib/azure_mgmt_web/models/azure_blob_storage_http_logs_config.rb', line 17 def sas_url @sas_url end |
Class Method Details
.deserialize_object(object) ⇒ AzureBlobStorageHttpLogsConfig
Deserializes given Ruby Hash into Model object.
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/azure_mgmt_web/models/azure_blob_storage_http_logs_config.rb', line 60 def self.deserialize_object(object) return if object.nil? output_object = AzureBlobStorageHttpLogsConfig.new deserialized_property = object['sasUrl'] output_object.sas_url = 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.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/azure_mgmt_web/models/azure_blob_storage_http_logs_config.rb', line 39 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.sas_url output_object['sasUrl'] = 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.
30 31 32 |
# File 'lib/azure_mgmt_web/models/azure_blob_storage_http_logs_config.rb', line 30 def validate # Nothing to validate end |