azure_mgmt_network 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +3 -0
  5. data/Gemfile +15 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +131 -0
  8. data/Rakefile +5 -0
  9. data/azure_mgmt_network.gemspec +39 -0
  10. data/lib/azure_mgmt_network.rb +139 -0
  11. data/lib/azure_mgmt_network/Models/address_space.rb +60 -0
  12. data/lib/azure_mgmt_network/Models/application_gateway.rb +104 -0
  13. data/lib/azure_mgmt_network/Models/application_gateway_backend_address.rb +67 -0
  14. data/lib/azure_mgmt_network/Models/application_gateway_backend_address_pool.rb +90 -0
  15. data/lib/azure_mgmt_network/Models/application_gateway_backend_address_pool_properties_format.rb +121 -0
  16. data/lib/azure_mgmt_network/Models/application_gateway_backend_http_settings.rb +90 -0
  17. data/lib/azure_mgmt_network/Models/application_gateway_backend_http_settings_properties_format.rb +98 -0
  18. data/lib/azure_mgmt_network/Models/application_gateway_cookie_based_affinity.rb +16 -0
  19. data/lib/azure_mgmt_network/Models/application_gateway_frontend_ip_configuration.rb +91 -0
  20. data/lib/azure_mgmt_network/Models/application_gateway_frontend_ip_configuration_properties_format.rb +117 -0
  21. data/lib/azure_mgmt_network/Models/application_gateway_frontend_port.rb +90 -0
  22. data/lib/azure_mgmt_network/Models/application_gateway_frontend_port_properties_format.rb +70 -0
  23. data/lib/azure_mgmt_network/Models/application_gateway_http_listener.rb +90 -0
  24. data/lib/azure_mgmt_network/Models/application_gateway_http_listener_properties_format.rb +124 -0
  25. data/lib/azure_mgmt_network/Models/application_gateway_ip_configuration.rb +90 -0
  26. data/lib/azure_mgmt_network/Models/application_gateway_ip_configuration_properties_format.rb +77 -0
  27. data/lib/azure_mgmt_network/Models/application_gateway_list_result.rb +88 -0
  28. data/lib/azure_mgmt_network/Models/application_gateway_operational_state.rb +18 -0
  29. data/lib/azure_mgmt_network/Models/application_gateway_properties_format.rb +338 -0
  30. data/lib/azure_mgmt_network/Models/application_gateway_protocol.rb +16 -0
  31. data/lib/azure_mgmt_network/Models/application_gateway_request_routing_rule.rb +90 -0
  32. data/lib/azure_mgmt_network/Models/application_gateway_request_routing_rule_properties_format.rb +124 -0
  33. data/lib/azure_mgmt_network/Models/application_gateway_request_routing_rule_type.rb +15 -0
  34. data/lib/azure_mgmt_network/Models/application_gateway_sku.rb +88 -0
  35. data/lib/azure_mgmt_network/Models/application_gateway_sku_name.rb +17 -0
  36. data/lib/azure_mgmt_network/Models/application_gateway_ssl_certificate.rb +90 -0
  37. data/lib/azure_mgmt_network/Models/application_gateway_ssl_certificate_properties_format.rb +87 -0
  38. data/lib/azure_mgmt_network/Models/application_gateway_tier.rb +15 -0
  39. data/lib/azure_mgmt_network/Models/azure_async_operation_result.rb +85 -0
  40. data/lib/azure_mgmt_network/Models/backend_address_pool.rb +90 -0
  41. data/lib/azure_mgmt_network/Models/backend_address_pool_properties_format.rb +120 -0
  42. data/lib/azure_mgmt_network/Models/connection_reset_shared_key.rb +64 -0
  43. data/lib/azure_mgmt_network/Models/connection_reset_shared_key_properties_format.rb +60 -0
  44. data/lib/azure_mgmt_network/Models/connection_shared_key.rb +58 -0
  45. data/lib/azure_mgmt_network/Models/dhcp_options.rb +60 -0
  46. data/lib/azure_mgmt_network/Models/dns_name_availability_result.rb +58 -0
  47. data/lib/azure_mgmt_network/Models/error.rb +114 -0
  48. data/lib/azure_mgmt_network/Models/error_details.rb +76 -0
  49. data/lib/azure_mgmt_network/Models/frontend_ip_configuration.rb +90 -0
  50. data/lib/azure_mgmt_network/Models/frontend_ip_configuration_properties_format.rb +181 -0
  51. data/lib/azure_mgmt_network/Models/inbound_nat_rule.rb +90 -0
  52. data/lib/azure_mgmt_network/Models/inbound_nat_rule_properties_format.rb +163 -0
  53. data/lib/azure_mgmt_network/Models/ip_allocation_method.rb +16 -0
  54. data/lib/azure_mgmt_network/Models/load_balancer.rb +104 -0
  55. data/lib/azure_mgmt_network/Models/load_balancer_list_result.rb +88 -0
  56. data/lib/azure_mgmt_network/Models/load_balancer_properties_format.rb +210 -0
  57. data/lib/azure_mgmt_network/Models/load_balancing_rule.rb +90 -0
  58. data/lib/azure_mgmt_network/Models/load_balancing_rule_properties_format.rb +195 -0
  59. data/lib/azure_mgmt_network/Models/load_distribution.rb +17 -0
  60. data/lib/azure_mgmt_network/Models/local_network_gateway.rb +104 -0
  61. data/lib/azure_mgmt_network/Models/local_network_gateway_list_result.rb +88 -0
  62. data/lib/azure_mgmt_network/Models/local_network_gateway_properties_format.rb +83 -0
  63. data/lib/azure_mgmt_network/Models/network_interface.rb +104 -0
  64. data/lib/azure_mgmt_network/Models/network_interface_dns_settings.rb +89 -0
  65. data/lib/azure_mgmt_network/Models/network_interface_ip_configuration.rb +90 -0
  66. data/lib/azure_mgmt_network/Models/network_interface_ip_configuration_properties_format.rb +179 -0
  67. data/lib/azure_mgmt_network/Models/network_interface_list_result.rb +88 -0
  68. data/lib/azure_mgmt_network/Models/network_interface_properties_format.rb +158 -0
  69. data/lib/azure_mgmt_network/Models/network_security_group.rb +104 -0
  70. data/lib/azure_mgmt_network/Models/network_security_group_list_result.rb +88 -0
  71. data/lib/azure_mgmt_network/Models/network_security_group_properties_format.rb +181 -0
  72. data/lib/azure_mgmt_network/Models/operation_status.rb +17 -0
  73. data/lib/azure_mgmt_network/Models/probe.rb +90 -0
  74. data/lib/azure_mgmt_network/Models/probe_properties_format.rb +157 -0
  75. data/lib/azure_mgmt_network/Models/probe_protocol.rb +16 -0
  76. data/lib/azure_mgmt_network/Models/public_ip_address.rb +104 -0
  77. data/lib/azure_mgmt_network/Models/public_ip_address_dns_settings.rb +85 -0
  78. data/lib/azure_mgmt_network/Models/public_ip_address_list_result.rb +88 -0
  79. data/lib/azure_mgmt_network/Models/public_ip_address_properties_format.rb +126 -0
  80. data/lib/azure_mgmt_network/Models/security_rule.rb +90 -0
  81. data/lib/azure_mgmt_network/Models/security_rule_access.rb +16 -0
  82. data/lib/azure_mgmt_network/Models/security_rule_direction.rb +16 -0
  83. data/lib/azure_mgmt_network/Models/security_rule_list_result.rb +89 -0
  84. data/lib/azure_mgmt_network/Models/security_rule_properties_format.rb +174 -0
  85. data/lib/azure_mgmt_network/Models/security_rule_protocol.rb +17 -0
  86. data/lib/azure_mgmt_network/Models/subnet.rb +90 -0
  87. data/lib/azure_mgmt_network/Models/subnet_list_result.rb +88 -0
  88. data/lib/azure_mgmt_network/Models/subnet_properties_format.rb +115 -0
  89. data/lib/azure_mgmt_network/Models/transport_protocol.rb +16 -0
  90. data/lib/azure_mgmt_network/Models/usage.rb +98 -0
  91. data/lib/azure_mgmt_network/Models/usage_name.rb +68 -0
  92. data/lib/azure_mgmt_network/Models/usage_unit.rb +15 -0
  93. data/lib/azure_mgmt_network/Models/usages_list_result.rb +78 -0
  94. data/lib/azure_mgmt_network/Models/virtual_network.rb +104 -0
  95. data/lib/azure_mgmt_network/Models/virtual_network_gateway.rb +104 -0
  96. data/lib/azure_mgmt_network/Models/virtual_network_gateway_connection.rb +104 -0
  97. data/lib/azure_mgmt_network/Models/virtual_network_gateway_connection_list_result.rb +89 -0
  98. data/lib/azure_mgmt_network/Models/virtual_network_gateway_connection_properties_format.rb +141 -0
  99. data/lib/azure_mgmt_network/Models/virtual_network_gateway_connection_type.rb +18 -0
  100. data/lib/azure_mgmt_network/Models/virtual_network_gateway_ip_configuration.rb +90 -0
  101. data/lib/azure_mgmt_network/Models/virtual_network_gateway_ip_configuration_properties_format.rb +117 -0
  102. data/lib/azure_mgmt_network/Models/virtual_network_gateway_list_result.rb +88 -0
  103. data/lib/azure_mgmt_network/Models/virtual_network_gateway_properties_format.rb +126 -0
  104. data/lib/azure_mgmt_network/Models/virtual_network_gateway_type.rb +15 -0
  105. data/lib/azure_mgmt_network/Models/virtual_network_list_result.rb +88 -0
  106. data/lib/azure_mgmt_network/Models/virtual_network_properties_format.rb +123 -0
  107. data/lib/azure_mgmt_network/Models/vpn_type.rb +16 -0
  108. data/lib/azure_mgmt_network/application_gateways.rb +915 -0
  109. data/lib/azure_mgmt_network/load_balancers.rb +709 -0
  110. data/lib/azure_mgmt_network/local_network_gateways.rb +550 -0
  111. data/lib/azure_mgmt_network/module_definition.rb +6 -0
  112. data/lib/azure_mgmt_network/network_interfaces.rb +709 -0
  113. data/lib/azure_mgmt_network/network_resource_provider_client.rb +195 -0
  114. data/lib/azure_mgmt_network/network_security_groups.rb +718 -0
  115. data/lib/azure_mgmt_network/public_ip_addresses.rb +711 -0
  116. data/lib/azure_mgmt_network/security_rules.rb +563 -0
  117. data/lib/azure_mgmt_network/subnets.rb +552 -0
  118. data/lib/azure_mgmt_network/usages.rb +113 -0
  119. data/lib/azure_mgmt_network/version.rb +6 -0
  120. data/lib/azure_mgmt_network/virtual_network_gateway_connections.rb +945 -0
  121. data/lib/azure_mgmt_network/virtual_network_gateways.rb +686 -0
  122. data/lib/azure_mgmt_network/virtual_networks.rb +707 -0
  123. metadata +311 -0
@@ -0,0 +1,58 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::Network
7
+ module Models
8
+ #
9
+ # Response for CheckDnsNameAvailability Api servive call
10
+ #
11
+ class DnsNameAvailabilityResult
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [Boolean] Domain availability (True/False)
16
+ attr_accessor :available
17
+
18
+ #
19
+ # Validate the object. Throws ValidationError if validation fails.
20
+ #
21
+ def validate
22
+ # Nothing to validate
23
+ end
24
+
25
+ #
26
+ # Serializes given Model object into Ruby Hash.
27
+ # @param object Model object to serialize.
28
+ # @return [Hash] Serialized object in form of Ruby Hash.
29
+ #
30
+ def self.serialize_object(object)
31
+ object.validate
32
+ output_object = {}
33
+
34
+ serialized_property = object.available
35
+ output_object['available'] = serialized_property unless serialized_property.nil?
36
+
37
+ output_object
38
+ end
39
+
40
+ #
41
+ # Deserializes given Ruby Hash into Model object.
42
+ # @param object [Hash] Ruby Hash object to deserialize.
43
+ # @return [DnsNameAvailabilityResult] Deserialized object.
44
+ #
45
+ def self.deserialize_object(object)
46
+ return if object.nil?
47
+ output_object = DnsNameAvailabilityResult.new
48
+
49
+ deserialized_property = object['available']
50
+ output_object.available = deserialized_property
51
+
52
+ output_object.validate
53
+
54
+ output_object
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,114 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::Network
7
+ module Models
8
+ #
9
+ # Model object.
10
+ #
11
+ class Error
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String]
16
+ attr_accessor :code
17
+
18
+ # @return [String]
19
+ attr_accessor :message
20
+
21
+ # @return [String]
22
+ attr_accessor :target
23
+
24
+ # @return [Array<ErrorDetails>]
25
+ attr_accessor :details
26
+
27
+ # @return [String]
28
+ attr_accessor :inner_error
29
+
30
+ #
31
+ # Validate the object. Throws ValidationError if validation fails.
32
+ #
33
+ def validate
34
+ @details.each{ |e| e.validate if e.respond_to?(:validate) } unless @details.nil?
35
+ end
36
+
37
+ #
38
+ # Serializes given Model object into Ruby Hash.
39
+ # @param object Model object to serialize.
40
+ # @return [Hash] Serialized object in form of Ruby Hash.
41
+ #
42
+ def self.serialize_object(object)
43
+ object.validate
44
+ output_object = {}
45
+
46
+ serialized_property = object.code
47
+ output_object['code'] = serialized_property unless serialized_property.nil?
48
+
49
+ serialized_property = object.message
50
+ output_object['message'] = serialized_property unless serialized_property.nil?
51
+
52
+ serialized_property = object.target
53
+ output_object['target'] = serialized_property unless serialized_property.nil?
54
+
55
+ serialized_property = object.details
56
+ unless serialized_property.nil?
57
+ serializedArray = []
58
+ serialized_property.each do |element|
59
+ unless element.nil?
60
+ element = ErrorDetails.serialize_object(element)
61
+ end
62
+ serializedArray.push(element)
63
+ end
64
+ serialized_property = serializedArray
65
+ end
66
+ output_object['details'] = serialized_property unless serialized_property.nil?
67
+
68
+ serialized_property = object.inner_error
69
+ output_object['innerError'] = serialized_property unless serialized_property.nil?
70
+
71
+ output_object
72
+ end
73
+
74
+ #
75
+ # Deserializes given Ruby Hash into Model object.
76
+ # @param object [Hash] Ruby Hash object to deserialize.
77
+ # @return [Error] Deserialized object.
78
+ #
79
+ def self.deserialize_object(object)
80
+ return if object.nil?
81
+ output_object = Error.new
82
+
83
+ deserialized_property = object['code']
84
+ output_object.code = deserialized_property
85
+
86
+ deserialized_property = object['message']
87
+ output_object.message = deserialized_property
88
+
89
+ deserialized_property = object['target']
90
+ output_object.target = deserialized_property
91
+
92
+ deserialized_property = object['details']
93
+ unless deserialized_property.nil?
94
+ deserializedArray = [];
95
+ deserialized_property.each do |element1|
96
+ unless element1.nil?
97
+ element1 = ErrorDetails.deserialize_object(element1)
98
+ end
99
+ deserializedArray.push(element1);
100
+ end
101
+ deserialized_property = deserializedArray;
102
+ end
103
+ output_object.details = deserialized_property
104
+
105
+ deserialized_property = object['innerError']
106
+ output_object.inner_error = deserialized_property
107
+
108
+ output_object.validate
109
+
110
+ output_object
111
+ end
112
+ end
113
+ end
114
+ end
@@ -0,0 +1,76 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::Network
7
+ module Models
8
+ #
9
+ # Model object.
10
+ #
11
+ class ErrorDetails
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String]
16
+ attr_accessor :code
17
+
18
+ # @return [String]
19
+ attr_accessor :target
20
+
21
+ # @return [String]
22
+ attr_accessor :message
23
+
24
+ #
25
+ # Validate the object. Throws ValidationError if validation fails.
26
+ #
27
+ def validate
28
+ # Nothing to validate
29
+ end
30
+
31
+ #
32
+ # Serializes given Model object into Ruby Hash.
33
+ # @param object Model object to serialize.
34
+ # @return [Hash] Serialized object in form of Ruby Hash.
35
+ #
36
+ def self.serialize_object(object)
37
+ object.validate
38
+ output_object = {}
39
+
40
+ serialized_property = object.code
41
+ output_object['code'] = serialized_property unless serialized_property.nil?
42
+
43
+ serialized_property = object.target
44
+ output_object['target'] = serialized_property unless serialized_property.nil?
45
+
46
+ serialized_property = object.message
47
+ output_object['message'] = serialized_property unless serialized_property.nil?
48
+
49
+ output_object
50
+ end
51
+
52
+ #
53
+ # Deserializes given Ruby Hash into Model object.
54
+ # @param object [Hash] Ruby Hash object to deserialize.
55
+ # @return [ErrorDetails] Deserialized object.
56
+ #
57
+ def self.deserialize_object(object)
58
+ return if object.nil?
59
+ output_object = ErrorDetails.new
60
+
61
+ deserialized_property = object['code']
62
+ output_object.code = deserialized_property
63
+
64
+ deserialized_property = object['target']
65
+ output_object.target = deserialized_property
66
+
67
+ deserialized_property = object['message']
68
+ output_object.message = deserialized_property
69
+
70
+ output_object.validate
71
+
72
+ output_object
73
+ end
74
+ end
75
+ end
76
+ end
@@ -0,0 +1,90 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::Network
7
+ module Models
8
+ #
9
+ # Frontend IP address of the load balancer
10
+ #
11
+ class FrontendIpConfiguration < MsRestAzure::SubResource
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [FrontendIpConfigurationPropertiesFormat]
16
+ attr_accessor :properties
17
+
18
+ # @return [String] Gets name of the resource that is unique within a
19
+ # resource group. This name can be used to access the resource
20
+ attr_accessor :name
21
+
22
+ # @return [String] A unique read-only string that changes whenever the
23
+ # resource is updated
24
+ attr_accessor :etag
25
+
26
+ #
27
+ # Validate the object. Throws ValidationError if validation fails.
28
+ #
29
+ def validate
30
+ @properties.validate unless @properties.nil?
31
+ end
32
+
33
+ #
34
+ # Serializes given Model object into Ruby Hash.
35
+ # @param object Model object to serialize.
36
+ # @return [Hash] Serialized object in form of Ruby Hash.
37
+ #
38
+ def self.serialize_object(object)
39
+ object.validate
40
+ output_object = {}
41
+
42
+ serialized_property = object.id
43
+ output_object['id'] = serialized_property unless serialized_property.nil?
44
+
45
+ serialized_property = object.properties
46
+ unless serialized_property.nil?
47
+ serialized_property = FrontendIpConfigurationPropertiesFormat.serialize_object(serialized_property)
48
+ end
49
+ output_object['properties'] = serialized_property unless serialized_property.nil?
50
+
51
+ serialized_property = object.name
52
+ output_object['name'] = serialized_property unless serialized_property.nil?
53
+
54
+ serialized_property = object.etag
55
+ output_object['etag'] = serialized_property unless serialized_property.nil?
56
+
57
+ output_object
58
+ end
59
+
60
+ #
61
+ # Deserializes given Ruby Hash into Model object.
62
+ # @param object [Hash] Ruby Hash object to deserialize.
63
+ # @return [FrontendIpConfiguration] Deserialized object.
64
+ #
65
+ def self.deserialize_object(object)
66
+ return if object.nil?
67
+ output_object = FrontendIpConfiguration.new
68
+
69
+ deserialized_property = object['id']
70
+ output_object.id = deserialized_property
71
+
72
+ deserialized_property = object['properties']
73
+ unless deserialized_property.nil?
74
+ deserialized_property = FrontendIpConfigurationPropertiesFormat.deserialize_object(deserialized_property)
75
+ end
76
+ output_object.properties = deserialized_property
77
+
78
+ deserialized_property = object['name']
79
+ output_object.name = deserialized_property
80
+
81
+ deserialized_property = object['etag']
82
+ output_object.etag = deserialized_property
83
+
84
+ output_object.validate
85
+
86
+ output_object
87
+ end
88
+ end
89
+ end
90
+ end
@@ -0,0 +1,181 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::Network
7
+ module Models
8
+ #
9
+ # Properties of Frontend IP Configuration of the load balancer
10
+ #
11
+ class FrontendIpConfigurationPropertiesFormat
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] Gets or sets the IP address of the Load Balancer.This
16
+ # is only specified if a specific private IP address shall be allocated
17
+ # from the subnet specified in subnetRef
18
+ attr_accessor :private_ipaddress
19
+
20
+ # @return [IpAllocationMethod] Gets or sets PrivateIP allocation method
21
+ # (Static/Dynamic). Possible values for this property include:
22
+ # 'Static', 'Dynamic'.
23
+ attr_accessor :private_ipallocation_method
24
+
25
+ # @return [SubResource] Gets or sets the reference of the subnet
26
+ # resource.A subnet from wher the load balancer gets its private
27
+ # frontend address
28
+ attr_accessor :subnet
29
+
30
+ # @return [SubResource] Gets or sets the reference of the PublicIP
31
+ # resource
32
+ attr_accessor :public_ipaddress
33
+
34
+ # @return [Array<SubResource>] Read only.Inbound rules URIs that use
35
+ # this frontend IP
36
+ attr_accessor :inbound_nat_rules
37
+
38
+ # @return [Array<SubResource>] Gets Load Balancing rules URIs that use
39
+ # this frontend IP
40
+ attr_accessor :load_balancing_rules
41
+
42
+ # @return [String] Gets or sets Provisioning state of the PublicIP
43
+ # resource Updating/Deleting/Failed
44
+ attr_accessor :provisioning_state
45
+
46
+ #
47
+ # Validate the object. Throws ValidationError if validation fails.
48
+ #
49
+ def validate
50
+ @subnet.validate unless @subnet.nil?
51
+ @public_ipaddress.validate unless @public_ipaddress.nil?
52
+ @inbound_nat_rules.each{ |e| e.validate if e.respond_to?(:validate) } unless @inbound_nat_rules.nil?
53
+ @load_balancing_rules.each{ |e| e.validate if e.respond_to?(:validate) } unless @load_balancing_rules.nil?
54
+ end
55
+
56
+ #
57
+ # Serializes given Model object into Ruby Hash.
58
+ # @param object Model object to serialize.
59
+ # @return [Hash] Serialized object in form of Ruby Hash.
60
+ #
61
+ def self.serialize_object(object)
62
+ object.validate
63
+ output_object = {}
64
+
65
+ serialized_property = object.private_ipaddress
66
+ output_object['privateIPAddress'] = serialized_property unless serialized_property.nil?
67
+
68
+ serialized_property = object.private_ipallocation_method
69
+ output_object['privateIPAllocationMethod'] = serialized_property unless serialized_property.nil?
70
+
71
+ serialized_property = object.subnet
72
+ unless serialized_property.nil?
73
+ serialized_property = SubResource.serialize_object(serialized_property)
74
+ end
75
+ output_object['subnet'] = serialized_property unless serialized_property.nil?
76
+
77
+ serialized_property = object.public_ipaddress
78
+ unless serialized_property.nil?
79
+ serialized_property = SubResource.serialize_object(serialized_property)
80
+ end
81
+ output_object['publicIPAddress'] = serialized_property unless serialized_property.nil?
82
+
83
+ serialized_property = object.inbound_nat_rules
84
+ unless serialized_property.nil?
85
+ serializedArray = []
86
+ serialized_property.each do |element|
87
+ unless element.nil?
88
+ element = SubResource.serialize_object(element)
89
+ end
90
+ serializedArray.push(element)
91
+ end
92
+ serialized_property = serializedArray
93
+ end
94
+ output_object['inboundNatRules'] = serialized_property unless serialized_property.nil?
95
+
96
+ serialized_property = object.load_balancing_rules
97
+ unless serialized_property.nil?
98
+ serializedArray = []
99
+ serialized_property.each do |element1|
100
+ unless element1.nil?
101
+ element1 = SubResource.serialize_object(element1)
102
+ end
103
+ serializedArray.push(element1)
104
+ end
105
+ serialized_property = serializedArray
106
+ end
107
+ output_object['loadBalancingRules'] = serialized_property unless serialized_property.nil?
108
+
109
+ serialized_property = object.provisioning_state
110
+ output_object['provisioningState'] = serialized_property unless serialized_property.nil?
111
+
112
+ output_object
113
+ end
114
+
115
+ #
116
+ # Deserializes given Ruby Hash into Model object.
117
+ # @param object [Hash] Ruby Hash object to deserialize.
118
+ # @return [FrontendIpConfigurationPropertiesFormat] Deserialized object.
119
+ #
120
+ def self.deserialize_object(object)
121
+ return if object.nil?
122
+ output_object = FrontendIpConfigurationPropertiesFormat.new
123
+
124
+ deserialized_property = object['privateIPAddress']
125
+ output_object.private_ipaddress = deserialized_property
126
+
127
+ deserialized_property = object['privateIPAllocationMethod']
128
+ if (!deserialized_property.nil? && !deserialized_property.empty?)
129
+ enum_is_valid = IpAllocationMethod.constants.any? { |e| IpAllocationMethod.const_get(e).to_s.downcase == deserialized_property.downcase }
130
+ fail MsRest::DeserializationError.new('Error occured while deserializing the enum', nil, nil, nil) unless enum_is_valid
131
+ end
132
+ output_object.private_ipallocation_method = deserialized_property
133
+
134
+ deserialized_property = object['subnet']
135
+ unless deserialized_property.nil?
136
+ deserialized_property = SubResource.deserialize_object(deserialized_property)
137
+ end
138
+ output_object.subnet = deserialized_property
139
+
140
+ deserialized_property = object['publicIPAddress']
141
+ unless deserialized_property.nil?
142
+ deserialized_property = SubResource.deserialize_object(deserialized_property)
143
+ end
144
+ output_object.public_ipaddress = deserialized_property
145
+
146
+ deserialized_property = object['inboundNatRules']
147
+ unless deserialized_property.nil?
148
+ deserializedArray = [];
149
+ deserialized_property.each do |element2|
150
+ unless element2.nil?
151
+ element2 = SubResource.deserialize_object(element2)
152
+ end
153
+ deserializedArray.push(element2);
154
+ end
155
+ deserialized_property = deserializedArray;
156
+ end
157
+ output_object.inbound_nat_rules = deserialized_property
158
+
159
+ deserialized_property = object['loadBalancingRules']
160
+ unless deserialized_property.nil?
161
+ deserializedArray = [];
162
+ deserialized_property.each do |element3|
163
+ unless element3.nil?
164
+ element3 = SubResource.deserialize_object(element3)
165
+ end
166
+ deserializedArray.push(element3);
167
+ end
168
+ deserialized_property = deserializedArray;
169
+ end
170
+ output_object.load_balancing_rules = deserialized_property
171
+
172
+ deserialized_property = object['provisioningState']
173
+ output_object.provisioning_state = deserialized_property
174
+
175
+ output_object.validate
176
+
177
+ output_object
178
+ end
179
+ end
180
+ end
181
+ end