Class: Azure::ARM::Network::Models::ApplicationGatewayBackendAddress

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_network/Models/application_gateway_backend_address.rb

Overview

Backend Address of application gateway

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#fqdnString

Returns Gets or sets the dns name.

Returns:

  • (String)

    Gets or sets the dns name



16
17
18
# File 'lib/azure_mgmt_network/Models/application_gateway_backend_address.rb', line 16

def fqdn
  @fqdn
end

#ip_addressString

Returns Gets or sets the ip address.

Returns:

  • (String)

    Gets or sets the ip address



19
20
21
# File 'lib/azure_mgmt_network/Models/application_gateway_backend_address.rb', line 19

def ip_address
  @ip_address
end

Class Method Details

.deserialize_object(object) ⇒ ApplicationGatewayBackendAddress

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
# File 'lib/azure_mgmt_network/Models/application_gateway_backend_address.rb', line 51

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

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

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



33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/azure_mgmt_network/Models/application_gateway_backend_address.rb', line 33

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

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

  serialized_property = object.ip_address
  output_object['ipAddress'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



24
25
26
# File 'lib/azure_mgmt_network/Models/application_gateway_backend_address.rb', line 24

def validate
  # Nothing to validate
end