Class: Azure::ARM::Compute::Models::NetworkInterfaceReferenceProperties

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

Overview

Describes a network interface reference properties.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#primaryBoolean

virtual machine

Returns:

  • (Boolean)

    Gets or sets whether this is a primary NIC on a



17
18
19
# File 'lib/azure_mgmt_compute/models/network_interface_reference_properties.rb', line 17

def primary
  @primary
end

Class Method Details

.deserialize_object(object) ⇒ NetworkInterfaceReferenceProperties

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
55
56
# File 'lib/azure_mgmt_compute/models/network_interface_reference_properties.rb', line 46

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

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



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

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

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

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



22
23
24
# File 'lib/azure_mgmt_compute/models/network_interface_reference_properties.rb', line 22

def validate
  # Nothing to validate
end