Class: Azure::ARM::Web::Models::VnetGatewayProperties

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_web/models/vnet_gateway_properties.rb

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#vnet_nameString

Returns The VNET name.

Returns:

  • (String)

    The VNET name.



16
17
18
# File 'lib/azure_mgmt_web/models/vnet_gateway_properties.rb', line 16

def vnet_name
  @vnet_name
end

#vpn_package_uriString

Returns The URI where the Vpn package can be downloaded.

Returns:

  • (String)

    The URI where the Vpn package can be downloaded



19
20
21
# File 'lib/azure_mgmt_web/models/vnet_gateway_properties.rb', line 19

def vpn_package_uri
  @vpn_package_uri
end

Class Method Details

.deserialize_object(object) ⇒ VnetGatewayProperties

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
# File 'lib/azure_mgmt_web/models/vnet_gateway_properties.rb', line 51

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

  deserialized_property = object['vnetName']
  output_object.vnet_name = deserialized_property

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



33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/azure_mgmt_web/models/vnet_gateway_properties.rb', line 33

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

  serialized_property = object.vnet_name
  output_object['vnetName'] = serialized_property unless serialized_property.nil?

  serialized_property = object.vpn_package_uri
  output_object['vpnPackageUri'] = 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_web/models/vnet_gateway_properties.rb', line 24

def validate
  # Nothing to validate
end