Class: Azure::ARM::Resources::Models::TemplateLink

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_resources/models/template_link.rb

Overview

Entity representing the reference to the template.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#content_versionString

template.

Returns:

  • (String)

    If included it must match the ContentVersion in the



20
21
22
# File 'lib/azure_mgmt_resources/models/template_link.rb', line 20

def content_version
  @content_version
end

#uriString

Returns URI referencing the template.

Returns:

  • (String)

    URI referencing the template.



16
17
18
# File 'lib/azure_mgmt_resources/models/template_link.rb', line 16

def uri
  @uri
end

Class Method Details

.deserialize_object(object) ⇒ TemplateLink

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
# File 'lib/azure_mgmt_resources/models/template_link.rb', line 52

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

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

  deserialized_property = object['contentVersion']
  output_object.content_version = 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_resources/models/template_link.rb', line 34

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

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

  serialized_property = object.content_version
  output_object['contentVersion'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



25
26
27
# File 'lib/azure_mgmt_resources/models/template_link.rb', line 25

def validate
  fail MsRest::ValidationError, 'property uri is nil' if @uri.nil?
end