Class: Azure::ARM::CDN::Models::TrackedResource

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

Overview

ARM tracked resource

Direct Known Subclasses

Endpoint, Profile

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#locationString

Returns Resource location.

Returns:

  • (String)

    Resource location



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

def location
  @location
end

#tagsHash{String => String}

Returns Resource tags.

Returns:

  • (Hash{String => String})

    Resource tags



19
20
21
# File 'lib/azure_mgmt_cdn/models/tracked_resource.rb', line 19

def tags
  @tags
end

Class Method Details

.deserialize_object(object) ⇒ TrackedResource

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/azure_mgmt_cdn/models/tracked_resource.rb', line 62

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

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

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

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

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

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



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/azure_mgmt_cdn/models/tracked_resource.rb', line 35

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

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

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

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

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

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

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



24
25
26
27
28
# File 'lib/azure_mgmt_cdn/models/tracked_resource.rb', line 24

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