Class: Azure::ARM::Resources::Models::TargetResource

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

Overview

Target resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#idString

Returns Gets or sets the ID of the resource.

Returns:

  • (String)

    Gets or sets the ID of the resource.



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

def id
  @id
end

#resource_nameString

Returns Gets or sets the name of the resource.

Returns:

  • (String)

    Gets or sets the name of the resource.



19
20
21
# File 'lib/azure_mgmt_resources/models/target_resource.rb', line 19

def resource_name
  @resource_name
end

#resource_typeString

Returns Gets or sets the type of the resource.

Returns:

  • (String)

    Gets or sets the type of the resource.



22
23
24
# File 'lib/azure_mgmt_resources/models/target_resource.rb', line 22

def resource_type
  @resource_type
end

Class Method Details

.deserialize_object(object) ⇒ TargetResource

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/azure_mgmt_resources/models/target_resource.rb', line 57

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

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

  deserialized_property = object['resourceName']
  output_object.resource_name = deserialized_property

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



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/azure_mgmt_resources/models/target_resource.rb', line 36

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

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

  serialized_property = object.resource_name
  output_object['resourceName'] = serialized_property unless serialized_property.nil?

  serialized_property = object.resource_type
  output_object['resourceType'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



27
28
29
# File 'lib/azure_mgmt_resources/models/target_resource.rb', line 27

def validate
  # Nothing to validate
end