Class: Azure::ARM::Web::Models::AzureTableStorageApplicationLogsConfig

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_web/models/azure_table_storage_application_logs_config.rb

Overview

Application logs to azure table storage configuration

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#levelLogLevel

‘Verbose’, ‘Information’, ‘Warning’, ‘Error’

Returns:

  • (LogLevel)

    Log level. Possible values include: ‘Off’,



17
18
19
# File 'lib/azure_mgmt_web/models/azure_table_storage_application_logs_config.rb', line 17

def level
  @level
end

#sas_urlString

permissions

Returns:

  • (String)

    SAS url to an azure table with add/query/delete



21
22
23
# File 'lib/azure_mgmt_web/models/azure_table_storage_application_logs_config.rb', line 21

def sas_url
  @sas_url
end

Class Method Details

.deserialize_object(object) ⇒ AzureTableStorageApplicationLogsConfig

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/azure_mgmt_web/models/azure_table_storage_application_logs_config.rb', line 52

def self.deserialize_object(object)
  return if object.nil?
  output_object = AzureTableStorageApplicationLogsConfig.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

  deserialized_property = object['sasUrl']
  output_object.sas_url = deserialized_property

  output_object
end

.serialize_object(object) ⇒ Hash

Serializes given Model object into Ruby Hash.

Parameters:

  • object

    Model object to serialize.

Returns:

  • (Hash)

    Serialized object in form of Ruby Hash.



34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/azure_mgmt_web/models/azure_table_storage_application_logs_config.rb', line 34

def self.serialize_object(object)
  object.validate
  output_object = {}

  serialized_property = object.level
  output_object['level'] = serialized_property unless serialized_property.nil?

  serialized_property = object.sas_url
  output_object['sasUrl'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



26
27
# File 'lib/azure_mgmt_web/models/azure_table_storage_application_logs_config.rb', line 26

def validate
end