Class: Azure::ARM::Compute::Models::NetworkInterfaceReference

Inherits:
MsRestAzure::SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_compute/models/network_interface_reference.rb

Overview

Describes a network interface reference.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#propertiesNetworkInterfaceReferenceProperties



16
17
18
# File 'lib/azure_mgmt_compute/models/network_interface_reference.rb', line 16

def properties
  @properties
end

Class Method Details

.deserialize_object(object) ⇒ NetworkInterfaceReference

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/azure_mgmt_compute/models/network_interface_reference.rb', line 51

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

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

  deserialized_property = object['properties']
  unless deserialized_property.nil?
    deserialized_property = NetworkInterfaceReferenceProperties.deserialize_object(deserialized_property)
  end
  output_object.properties = deserialized_property

  output_object.validate

  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.



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/azure_mgmt_compute/models/network_interface_reference.rb', line 30

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.properties
  unless serialized_property.nil?
    serialized_property = NetworkInterfaceReferenceProperties.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.



21
22
23
# File 'lib/azure_mgmt_compute/models/network_interface_reference.rb', line 21

def validate
  @properties.validate unless @properties.nil?
end