Class: Azure::ARM::Storage::Models::StorageAccountUpdateParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_storage/models/storage_account_update_parameters.rb

Overview

The parameters to provide for the account.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#propertiesStorageAccountPropertiesUpdateParameters



28
29
30
# File 'lib/azure_mgmt_storage/models/storage_account_update_parameters.rb', line 28

def properties
  @properties
end

#skuSku

updated to StandardZRS or ProvisionedLRS, nor can accounts of that sku type be updated to any other value.

Returns:

  • (Sku)

    Gets or sets the sku type. Note that sku cannot be



18
19
20
# File 'lib/azure_mgmt_storage/models/storage_account_update_parameters.rb', line 18

def sku
  @sku
end

#tagsHash{String => String}

pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters.

Returns:

  • (Hash{String => String})

    Gets or sets a list of key value



25
26
27
# File 'lib/azure_mgmt_storage/models/storage_account_update_parameters.rb', line 25

def tags
  @tags
end

Class Method Details

.deserialize_object(object) ⇒ StorageAccountUpdateParameters

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/azure_mgmt_storage/models/storage_account_update_parameters.rb', line 71

def self.deserialize_object(object)
  return if object.nil?
  output_object = StorageAccountUpdateParameters.new

  deserialized_property = object['sku']
  unless deserialized_property.nil?
    deserialized_property = Sku.deserialize_object(deserialized_property)
  end
  output_object.sku = deserialized_property

  deserialized_property = object['tags']
  output_object.tags = deserialized_property

  deserialized_property = object['properties']
  unless deserialized_property.nil?
    deserialized_property = StorageAccountPropertiesUpdateParameters.deserialize_object(deserialized_property)
  end
  output_object.properties = 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.



44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/azure_mgmt_storage/models/storage_account_update_parameters.rb', line 44

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

  serialized_property = object.sku
  unless serialized_property.nil?
    serialized_property = Sku.serialize_object(serialized_property)
  end
  output_object['sku'] = serialized_property unless serialized_property.nil?

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

  serialized_property = object.properties
  unless serialized_property.nil?
    serialized_property = StorageAccountPropertiesUpdateParameters.serialize_object(serialized_property)
  end
  output_object['properties'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



33
34
35
36
37
# File 'lib/azure_mgmt_storage/models/storage_account_update_parameters.rb', line 33

def validate
  @sku.validate unless @sku.nil?
  @tags.each{ |e| e.validate if e.respond_to?(:validate) } unless @tags.nil?
  @properties.validate unless @properties.nil?
end