Class: Azure::ARM::CDN::Models::ProfileUpdateParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_cdn/models/profile_update_parameters.rb

Overview

Profile properties required for profile update

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#tagsHash{String => String}

Returns Profile tags.

Returns:

  • (Hash{String => String})

    Profile tags



16
17
18
# File 'lib/azure_mgmt_cdn/models/profile_update_parameters.rb', line 16

def tags
  @tags
end

Class Method Details

.deserialize_object(object) ⇒ ProfileUpdateParameters

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



46
47
48
49
50
51
52
53
54
# File 'lib/azure_mgmt_cdn/models/profile_update_parameters.rb', line 46

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

  deserialized_property = object['tags']
  output_object.tags = 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.



31
32
33
34
35
36
37
38
39
# File 'lib/azure_mgmt_cdn/models/profile_update_parameters.rb', line 31

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

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

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



21
22
23
24
# File 'lib/azure_mgmt_cdn/models/profile_update_parameters.rb', line 21

def validate
  fail MsRest::ValidationError, 'property tags is nil' if @tags.nil?
  @tags.each{ |e| e.validate if e.respond_to?(:validate) } unless @tags.nil?
end