Class: Azure::ARM::Network::Models::VirtualNetworkGatewayIpConfigurationPropertiesFormat

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_network/models/virtual_network_gateway_ip_configuration_properties_format.rb

Overview

Properties of VirtualNetworkGatewayIPConfiguration

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#private_ipaddressString

Interface IP Configuration

Returns:

  • (String)

    Gets or sets the privateIPAddress of the Network



17
18
19
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_ip_configuration_properties_format.rb', line 17

def private_ipaddress
  @private_ipaddress
end

#private_ipallocation_methodIpAllocationMethod

(Static/Dynamic). Possible values for this property include: ‘Static’, ‘Dynamic’.

Returns:



22
23
24
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_ip_configuration_properties_format.rb', line 22

def private_ipallocation_method
  @private_ipallocation_method
end

#provisioning_stateString

resource Updating/Deleting/Failed

Returns:

  • (String)

    Gets or sets Provisioning state of the PublicIP



33
34
35
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_ip_configuration_properties_format.rb', line 33

def provisioning_state
  @provisioning_state
end

#public_ipaddressSubResource

resource

Returns:

  • (SubResource)

    Gets or sets the reference of the PublicIP



29
30
31
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_ip_configuration_properties_format.rb', line 29

def public_ipaddress
  @public_ipaddress
end

#subnetSubResource

Returns Gets or sets the reference of the subnet resource.

Returns:

  • (SubResource)

    Gets or sets the reference of the subnet resource



25
26
27
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_ip_configuration_properties_format.rb', line 25

def subnet
  @subnet
end

Class Method Details

.deserialize_object(object) ⇒ VirtualNetworkGatewayIpConfigurationPropertiesFormat

Deserializes given Ruby Hash into Model object. Deserialized object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_ip_configuration_properties_format.rb', line 82

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

  deserialized_property = object['privateIPAddress']
  output_object.private_ipaddress = deserialized_property

  deserialized_property = object['privateIPAllocationMethod']
  if (!deserialized_property.nil? && !deserialized_property.empty?)
    enum_is_valid = IpAllocationMethod.constants.any? { |e| IpAllocationMethod.const_get(e).to_s.downcase == deserialized_property.downcase }
    fail MsRest::DeserializationError.new('Error occured while deserializing the enum', nil, nil, nil) unless enum_is_valid
  end
  output_object.private_ipallocation_method = deserialized_property

  deserialized_property = object['subnet']
  unless deserialized_property.nil?
    deserialized_property = SubResource.deserialize_object(deserialized_property)
  end
  output_object.subnet = deserialized_property

  deserialized_property = object['publicIPAddress']
  unless deserialized_property.nil?
    deserialized_property = SubResource.deserialize_object(deserialized_property)
  end
  output_object.public_ipaddress = deserialized_property

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



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_ip_configuration_properties_format.rb', line 48

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

  serialized_property = object.private_ipaddress
  output_object['privateIPAddress'] = serialized_property unless serialized_property.nil?

  serialized_property = object.private_ipallocation_method
  output_object['privateIPAllocationMethod'] = serialized_property unless serialized_property.nil?

  serialized_property = object.subnet
  unless serialized_property.nil?
    serialized_property = SubResource.serialize_object(serialized_property)
  end
  output_object['subnet'] = serialized_property unless serialized_property.nil?

  serialized_property = object.public_ipaddress
  unless serialized_property.nil?
    serialized_property = SubResource.serialize_object(serialized_property)
  end
  output_object['publicIPAddress'] = serialized_property unless serialized_property.nil?

  serialized_property = object.provisioning_state
  output_object['provisioningState'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



38
39
40
41
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_ip_configuration_properties_format.rb', line 38

def validate
  @subnet.validate unless @subnet.nil?
  @public_ipaddress.validate unless @public_ipaddress.nil?
end