azure_mgmt_network 0.4.0 → 0.5.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.
- checksums.yaml +4 -4
- data/README.md +7 -11
- data/azure_mgmt_network.gemspec +1 -1
- data/lib/generated/azure_mgmt_network.rb +7 -2
- data/lib/generated/azure_mgmt_network/application_gateways.rb +15 -15
- data/lib/generated/azure_mgmt_network/express_route_circuit_authorizations.rb +1 -1
- data/lib/generated/azure_mgmt_network/express_route_circuit_peerings.rb +1 -1
- data/lib/generated/azure_mgmt_network/express_route_circuits.rb +47 -47
- data/lib/generated/azure_mgmt_network/express_route_service_providers.rb +8 -8
- data/lib/generated/azure_mgmt_network/load_balancers.rb +22 -22
- data/lib/generated/azure_mgmt_network/local_network_gateways.rb +8 -8
- data/lib/generated/azure_mgmt_network/models/application_gateway.rb +59 -29
- data/lib/generated/azure_mgmt_network/models/application_gateway_authentication_certificate.rb +85 -0
- data/lib/generated/azure_mgmt_network/models/application_gateway_backend_address.rb +2 -2
- data/lib/generated/azure_mgmt_network/models/application_gateway_backend_address_pool.rb +5 -6
- data/lib/generated/azure_mgmt_network/models/application_gateway_backend_http_settings.rb +30 -12
- data/lib/generated/azure_mgmt_network/models/application_gateway_frontend_ipconfiguration.rb +9 -10
- data/lib/generated/azure_mgmt_network/models/application_gateway_frontend_port.rb +5 -5
- data/lib/generated/azure_mgmt_network/models/application_gateway_http_listener.rb +12 -15
- data/lib/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb +6 -7
- data/lib/generated/azure_mgmt_network/models/application_gateway_list_result.rb +4 -4
- data/lib/generated/azure_mgmt_network/models/application_gateway_path_rule.rb +6 -8
- data/lib/generated/azure_mgmt_network/models/application_gateway_probe.rb +11 -11
- data/lib/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb +10 -13
- data/lib/generated/azure_mgmt_network/models/application_gateway_sku.rb +6 -7
- data/lib/generated/azure_mgmt_network/models/application_gateway_ssl_certificate.rb +7 -7
- data/lib/generated/azure_mgmt_network/models/application_gateway_ssl_policy.rb +52 -0
- data/lib/generated/azure_mgmt_network/models/application_gateway_ssl_protocol.rb +17 -0
- data/lib/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb +9 -9
- data/lib/generated/azure_mgmt_network/models/effective_network_security_group.rb +3 -3
- data/lib/generated/azure_mgmt_network/models/effective_network_security_group_list_result.rb +0 -32
- data/lib/generated/azure_mgmt_network/models/{effective_network_security_rules.rb → effective_network_security_rule.rb} +4 -4
- data/lib/generated/azure_mgmt_network/models/effective_route.rb +6 -14
- data/lib/generated/azure_mgmt_network/models/effective_route_list_result.rb +0 -31
- data/lib/generated/azure_mgmt_network/models/express_route_circuit.rb +10 -0
- data/lib/generated/azure_mgmt_network/models/express_route_circuit_peering.rb +21 -0
- data/lib/generated/azure_mgmt_network/models/ipaddress_availability_result.rb +62 -0
- data/lib/generated/azure_mgmt_network/models/resource_navigation_link.rb +96 -0
- data/lib/generated/azure_mgmt_network/models/subnet.rb +19 -0
- data/lib/generated/azure_mgmt_network/models/usages_list_result.rb +41 -0
- data/lib/generated/azure_mgmt_network/network_interfaces.rb +41 -445
- data/lib/generated/azure_mgmt_network/network_management_client.rb +1 -1
- data/lib/generated/azure_mgmt_network/network_security_groups.rb +1 -1
- data/lib/generated/azure_mgmt_network/public_ipaddresses.rb +15 -15
- data/lib/generated/azure_mgmt_network/route_tables.rb +1 -1
- data/lib/generated/azure_mgmt_network/routes.rb +8 -8
- data/lib/generated/azure_mgmt_network/security_rules.rb +8 -8
- data/lib/generated/azure_mgmt_network/subnets.rb +8 -8
- data/lib/generated/azure_mgmt_network/usages.rb +115 -4
- data/lib/generated/azure_mgmt_network/version.rb +1 -1
- data/lib/generated/azure_mgmt_network/virtual_network_gateway_connections.rb +1 -1
- data/lib/generated/azure_mgmt_network/virtual_network_gateways.rb +8 -8
- data/lib/generated/azure_mgmt_network/virtual_network_peerings.rb +8 -8
- data/lib/generated/azure_mgmt_network/virtual_networks.rb +98 -1
- metadata +10 -5
@@ -12,10 +12,10 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [String]
|
15
|
+
# @return [String] Dns name
|
16
16
|
attr_accessor :fqdn
|
17
17
|
|
18
|
-
# @return [String]
|
18
|
+
# @return [String] Ip address
|
19
19
|
attr_accessor :ip_address
|
20
20
|
|
21
21
|
|
@@ -12,20 +12,19 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Array<NetworkInterfaceIPConfiguration>]
|
15
|
+
# @return [Array<NetworkInterfaceIPConfiguration>] Collection of
|
16
16
|
# references to IPs defined in NICs
|
17
17
|
attr_accessor :backend_ipconfigurations
|
18
18
|
|
19
|
-
# @return [Array<ApplicationGatewayBackendAddress>]
|
20
|
-
# backend addresses
|
19
|
+
# @return [Array<ApplicationGatewayBackendAddress>] Backend addresses
|
21
20
|
attr_accessor :backend_addresses
|
22
21
|
|
23
|
-
# @return [String]
|
22
|
+
# @return [String] Provisioning state of the backend address pool
|
24
23
|
# resource Updating/Deleting/Failed
|
25
24
|
attr_accessor :provisioning_state
|
26
25
|
|
27
|
-
# @return [String]
|
28
|
-
#
|
26
|
+
# @return [String] Resource that is unique within a resource group. This
|
27
|
+
# name can be used to access the resource
|
29
28
|
attr_accessor :name
|
30
29
|
|
31
30
|
# @return [String] A unique read-only string that changes whenever the
|
@@ -12,30 +12,33 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Integer]
|
15
|
+
# @return [Integer] Port
|
16
16
|
attr_accessor :port
|
17
17
|
|
18
|
-
# @return [ApplicationGatewayProtocol]
|
19
|
-
#
|
18
|
+
# @return [ApplicationGatewayProtocol] Protocol. Possible values
|
19
|
+
# include: 'Http', 'Https'
|
20
20
|
attr_accessor :protocol
|
21
21
|
|
22
|
-
# @return [ApplicationGatewayCookieBasedAffinity]
|
23
|
-
#
|
22
|
+
# @return [ApplicationGatewayCookieBasedAffinity] Cookie affinity.
|
23
|
+
# Possible values include: 'Enabled', 'Disabled'
|
24
24
|
attr_accessor :cookie_based_affinity
|
25
25
|
|
26
|
-
# @return [Integer]
|
26
|
+
# @return [Integer] Request timeout
|
27
27
|
attr_accessor :request_timeout
|
28
28
|
|
29
|
-
# @return [SubResource]
|
30
|
-
# gateway
|
29
|
+
# @return [SubResource] Probe resource of application gateway
|
31
30
|
attr_accessor :probe
|
32
31
|
|
33
|
-
# @return [
|
34
|
-
#
|
32
|
+
# @return [Array<SubResource>] Array of references to Application
|
33
|
+
# Gateway Authentication Certificates
|
34
|
+
attr_accessor :authentication_certificates
|
35
|
+
|
36
|
+
# @return [String] Provisioning state of the backend http settings
|
37
|
+
# resource Updating/Deleting/Failed
|
35
38
|
attr_accessor :provisioning_state
|
36
39
|
|
37
|
-
# @return [String]
|
38
|
-
#
|
40
|
+
# @return [String] Name of the resource that is unique within a resource
|
41
|
+
# group. This name can be used to access the resource
|
39
42
|
attr_accessor :name
|
40
43
|
|
41
44
|
# @return [String] A unique read-only string that changes whenever the
|
@@ -98,6 +101,21 @@ module Azure::ARM::Network
|
|
98
101
|
class_name: 'SubResource'
|
99
102
|
}
|
100
103
|
},
|
104
|
+
authentication_certificates: {
|
105
|
+
required: false,
|
106
|
+
serialized_name: 'properties.authenticationCertificates',
|
107
|
+
type: {
|
108
|
+
name: 'Sequence',
|
109
|
+
element: {
|
110
|
+
required: false,
|
111
|
+
serialized_name: 'SubResourceElementType',
|
112
|
+
type: {
|
113
|
+
name: 'Composite',
|
114
|
+
class_name: 'SubResource'
|
115
|
+
}
|
116
|
+
}
|
117
|
+
}
|
118
|
+
},
|
101
119
|
provisioning_state: {
|
102
120
|
required: false,
|
103
121
|
serialized_name: 'properties.provisioningState',
|
data/lib/generated/azure_mgmt_network/models/application_gateway_frontend_ipconfiguration.rb
CHANGED
@@ -12,27 +12,26 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [String]
|
16
|
-
#
|
15
|
+
# @return [String] PrivateIPAddress of the Network Interface IP
|
16
|
+
# Configuration
|
17
17
|
attr_accessor :private_ipaddress
|
18
18
|
|
19
|
-
# @return [IPAllocationMethod]
|
19
|
+
# @return [IPAllocationMethod] PrivateIP allocation method
|
20
20
|
# (Static/Dynamic). Possible values include: 'Static', 'Dynamic'
|
21
21
|
attr_accessor :private_ipallocation_method
|
22
22
|
|
23
|
-
# @return [SubResource]
|
23
|
+
# @return [SubResource] Reference of the subnet resource
|
24
24
|
attr_accessor :subnet
|
25
25
|
|
26
|
-
# @return [SubResource]
|
27
|
-
# resource
|
26
|
+
# @return [SubResource] Reference of the PublicIP resource
|
28
27
|
attr_accessor :public_ipaddress
|
29
28
|
|
30
|
-
# @return [String]
|
31
|
-
#
|
29
|
+
# @return [String] Provisioning state of the PublicIP resource
|
30
|
+
# Updating/Deleting/Failed
|
32
31
|
attr_accessor :provisioning_state
|
33
32
|
|
34
|
-
# @return [String]
|
35
|
-
#
|
33
|
+
# @return [String] Name of the resource that is unique within a resource
|
34
|
+
# group. This name can be used to access the resource
|
36
35
|
attr_accessor :name
|
37
36
|
|
38
37
|
# @return [String] A unique read-only string that changes whenever the
|
@@ -12,15 +12,15 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Integer]
|
15
|
+
# @return [Integer] Frontend port
|
16
16
|
attr_accessor :port
|
17
17
|
|
18
|
-
# @return [String]
|
19
|
-
#
|
18
|
+
# @return [String] Provisioning state of the frontend port resource
|
19
|
+
# Updating/Deleting/Failed
|
20
20
|
attr_accessor :provisioning_state
|
21
21
|
|
22
|
-
# @return [String]
|
23
|
-
#
|
22
|
+
# @return [String] Name of the resource that is unique within a resource
|
23
|
+
# group. This name can be used to access the resource
|
24
24
|
attr_accessor :name
|
25
25
|
|
26
26
|
# @return [String] A unique read-only string that changes whenever the
|
@@ -12,35 +12,32 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [SubResource]
|
16
|
-
#
|
15
|
+
# @return [SubResource] Frontend IP configuration resource of
|
16
|
+
# application gateway
|
17
17
|
attr_accessor :frontend_ipconfiguration
|
18
18
|
|
19
|
-
# @return [SubResource]
|
20
|
-
# application gateway
|
19
|
+
# @return [SubResource] Frontend port resource of application gateway
|
21
20
|
attr_accessor :frontend_port
|
22
21
|
|
23
|
-
# @return [ApplicationGatewayProtocol]
|
24
|
-
#
|
22
|
+
# @return [ApplicationGatewayProtocol] Protocol. Possible values
|
23
|
+
# include: 'Http', 'Https'
|
25
24
|
attr_accessor :protocol
|
26
25
|
|
27
|
-
# @return [String]
|
26
|
+
# @return [String] Host name of http listener
|
28
27
|
attr_accessor :host_name
|
29
28
|
|
30
|
-
# @return [SubResource]
|
31
|
-
# application gateway
|
29
|
+
# @return [SubResource] Ssl certificate resource of application gateway
|
32
30
|
attr_accessor :ssl_certificate
|
33
31
|
|
34
|
-
# @return [Boolean]
|
35
|
-
# listener
|
32
|
+
# @return [Boolean] RequireServerNameIndication of http listener
|
36
33
|
attr_accessor :require_server_name_indication
|
37
34
|
|
38
|
-
# @return [String]
|
39
|
-
#
|
35
|
+
# @return [String] Provisioning state of the http listener resource
|
36
|
+
# Updating/Deleting/Failed
|
40
37
|
attr_accessor :provisioning_state
|
41
38
|
|
42
|
-
# @return [String]
|
43
|
-
#
|
39
|
+
# @return [String] Name of the resource that is unique within a resource
|
40
|
+
# group. This name can be used to access the resource
|
44
41
|
attr_accessor :name
|
45
42
|
|
46
43
|
# @return [String] A unique read-only string that changes whenever the
|
@@ -12,17 +12,16 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [SubResource]
|
16
|
-
#
|
17
|
-
# address
|
15
|
+
# @return [SubResource] Reference of the subnet resource. A subnet from
|
16
|
+
# where appliation gateway gets its private address
|
18
17
|
attr_accessor :subnet
|
19
18
|
|
20
|
-
# @return [String]
|
21
|
-
#
|
19
|
+
# @return [String] Provisioning state of the application gateway subnet
|
20
|
+
# resource Updating/Deleting/Failed
|
22
21
|
attr_accessor :provisioning_state
|
23
22
|
|
24
|
-
# @return [String]
|
25
|
-
#
|
23
|
+
# @return [String] Name of the resource that is unique within a resource
|
24
|
+
# group. This name can be used to access the resource
|
26
25
|
attr_accessor :name
|
27
26
|
|
28
27
|
# @return [String] A unique read-only string that changes whenever the
|
@@ -6,17 +6,17 @@
|
|
6
6
|
module Azure::ARM::Network
|
7
7
|
module Models
|
8
8
|
#
|
9
|
-
# Response for
|
9
|
+
# Response for ListApplicationGateways Api service call
|
10
10
|
#
|
11
11
|
class ApplicationGatewayListResult
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Array<ApplicationGateway>]
|
16
|
-
#
|
15
|
+
# @return [Array<ApplicationGateway>] List of ApplicationGateways in a
|
16
|
+
# resource group
|
17
17
|
attr_accessor :value
|
18
18
|
|
19
|
-
# @return [String]
|
19
|
+
# @return [String] URL to get the next set of results.
|
20
20
|
attr_accessor :next_link
|
21
21
|
|
22
22
|
# return [Proc] with next page method call.
|
@@ -12,23 +12,21 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [Array<String>]
|
15
|
+
# @return [Array<String>] Path rules of URL path map
|
16
16
|
attr_accessor :paths
|
17
17
|
|
18
|
-
# @return [SubResource]
|
19
|
-
# URL path map
|
18
|
+
# @return [SubResource] Backend address pool resource of URL path map
|
20
19
|
attr_accessor :backend_address_pool
|
21
20
|
|
22
|
-
# @return [SubResource]
|
23
|
-
# URL path map
|
21
|
+
# @return [SubResource] Backend http settings resource of URL path map
|
24
22
|
attr_accessor :backend_http_settings
|
25
23
|
|
26
|
-
# @return [String]
|
24
|
+
# @return [String] Path rule of URL path map resource
|
27
25
|
# Updating/Deleting/Failed
|
28
26
|
attr_accessor :provisioning_state
|
29
27
|
|
30
|
-
# @return [String]
|
31
|
-
#
|
28
|
+
# @return [String] Name of the resource that is unique within a resource
|
29
|
+
# group. This name can be used to access the resource
|
32
30
|
attr_accessor :name
|
33
31
|
|
34
32
|
# @return [String] A unique read-only string that changes whenever the
|
@@ -12,31 +12,31 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [ApplicationGatewayProtocol]
|
16
|
-
#
|
15
|
+
# @return [ApplicationGatewayProtocol] Protocol. Possible values
|
16
|
+
# include: 'Http', 'Https'
|
17
17
|
attr_accessor :protocol
|
18
18
|
|
19
|
-
# @return [String]
|
19
|
+
# @return [String] Host to send probe to
|
20
20
|
attr_accessor :host
|
21
21
|
|
22
|
-
# @return [String]
|
22
|
+
# @return [String] Relative path of probe
|
23
23
|
attr_accessor :path
|
24
24
|
|
25
|
-
# @return [Integer]
|
25
|
+
# @return [Integer] Probing interval in seconds
|
26
26
|
attr_accessor :interval
|
27
27
|
|
28
|
-
# @return [Integer]
|
28
|
+
# @return [Integer] Probing timeout in seconds
|
29
29
|
attr_accessor :timeout
|
30
30
|
|
31
|
-
# @return [Integer]
|
31
|
+
# @return [Integer] Probing unhealthy threshold
|
32
32
|
attr_accessor :unhealthy_threshold
|
33
33
|
|
34
|
-
# @return [String]
|
35
|
-
#
|
34
|
+
# @return [String] Provisioning state of the backend http settings
|
35
|
+
# resource Updating/Deleting/Failed
|
36
36
|
attr_accessor :provisioning_state
|
37
37
|
|
38
|
-
# @return [String]
|
39
|
-
#
|
38
|
+
# @return [String] Name of the resource that is unique within a resource
|
39
|
+
# group. This name can be used to access the resource
|
40
40
|
attr_accessor :name
|
41
41
|
|
42
42
|
# @return [String] A unique read-only string that changes whenever the
|
@@ -12,32 +12,29 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [ApplicationGatewayRequestRoutingRuleType]
|
16
|
-
#
|
15
|
+
# @return [ApplicationGatewayRequestRoutingRuleType] Rule type. Possible
|
16
|
+
# values include: 'Basic', 'PathBasedRouting'
|
17
17
|
attr_accessor :rule_type
|
18
18
|
|
19
|
-
# @return [SubResource]
|
20
|
-
#
|
19
|
+
# @return [SubResource] Backend address pool resource of application
|
20
|
+
# gateway
|
21
21
|
attr_accessor :backend_address_pool
|
22
22
|
|
23
|
-
# @return [SubResource]
|
24
|
-
# application gateway
|
23
|
+
# @return [SubResource] Frontend port resource of application gateway
|
25
24
|
attr_accessor :backend_http_settings
|
26
25
|
|
27
|
-
# @return [SubResource]
|
28
|
-
# application gateway
|
26
|
+
# @return [SubResource] Http listener resource of application gateway
|
29
27
|
attr_accessor :http_listener
|
30
28
|
|
31
|
-
# @return [SubResource]
|
32
|
-
# application gateway
|
29
|
+
# @return [SubResource] Url path map resource of application gateway
|
33
30
|
attr_accessor :url_path_map
|
34
31
|
|
35
|
-
# @return [String]
|
32
|
+
# @return [String] Provisioning state of the request routing rule
|
36
33
|
# resource Updating/Deleting/Failed
|
37
34
|
attr_accessor :provisioning_state
|
38
35
|
|
39
|
-
# @return [String]
|
40
|
-
#
|
36
|
+
# @return [String] Name of the resource that is unique within a resource
|
37
|
+
# group. This name can be used to access the resource
|
41
38
|
attr_accessor :name
|
42
39
|
|
43
40
|
# @return [String] A unique read-only string that changes whenever the
|
@@ -12,17 +12,16 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [ApplicationGatewaySkuName]
|
16
|
-
#
|
17
|
-
# '
|
15
|
+
# @return [ApplicationGatewaySkuName] Name of application gateway SKU.
|
16
|
+
# Possible values include: 'Standard_Small', 'Standard_Medium',
|
17
|
+
# 'Standard_Large'
|
18
18
|
attr_accessor :name
|
19
19
|
|
20
|
-
# @return [ApplicationGatewayTier]
|
21
|
-
#
|
20
|
+
# @return [ApplicationGatewayTier] Tier of application gateway. Possible
|
21
|
+
# values include: 'Standard'
|
22
22
|
attr_accessor :tier
|
23
23
|
|
24
|
-
# @return [Integer]
|
25
|
-
# application gateway
|
24
|
+
# @return [Integer] Capacity (instance count) of application gateway
|
26
25
|
attr_accessor :capacity
|
27
26
|
|
28
27
|
|
@@ -12,21 +12,21 @@ module Azure::ARM::Network
|
|
12
12
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
|
-
# @return [String]
|
15
|
+
# @return [String] SSL Certificate data
|
16
16
|
attr_accessor :data
|
17
17
|
|
18
|
-
# @return [String]
|
18
|
+
# @return [String] SSL Certificate password
|
19
19
|
attr_accessor :password
|
20
20
|
|
21
|
-
# @return [String]
|
21
|
+
# @return [String] SSL Certificate public data
|
22
22
|
attr_accessor :public_cert_data
|
23
23
|
|
24
|
-
# @return [String]
|
25
|
-
#
|
24
|
+
# @return [String] Provisioning state of the ssl certificate resource
|
25
|
+
# Updating/Deleting/Failed
|
26
26
|
attr_accessor :provisioning_state
|
27
27
|
|
28
|
-
# @return [String]
|
29
|
-
#
|
28
|
+
# @return [String] Name of the resource that is unique within a resource
|
29
|
+
# group. This name can be used to access the resource
|
30
30
|
attr_accessor :name
|
31
31
|
|
32
32
|
# @return [String] A unique read-only string that changes whenever the
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Code generated by Microsoft (R) AutoRest Code Generator 0.17.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
|
+
# Application gateway SSL policy
|
10
|
+
#
|
11
|
+
class ApplicationGatewaySslPolicy
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [Array<ApplicationGatewaySslProtocol>] SSL protocols to be
|
16
|
+
# disabled on Application Gateway
|
17
|
+
attr_accessor :disabled_ssl_protocols
|
18
|
+
|
19
|
+
|
20
|
+
#
|
21
|
+
# Mapper for ApplicationGatewaySslPolicy class as Ruby Hash.
|
22
|
+
# This will be used for serialization/deserialization.
|
23
|
+
#
|
24
|
+
def self.mapper()
|
25
|
+
{
|
26
|
+
required: false,
|
27
|
+
serialized_name: 'ApplicationGatewaySslPolicy',
|
28
|
+
type: {
|
29
|
+
name: 'Composite',
|
30
|
+
class_name: 'ApplicationGatewaySslPolicy',
|
31
|
+
model_properties: {
|
32
|
+
disabled_ssl_protocols: {
|
33
|
+
required: false,
|
34
|
+
serialized_name: 'disabledSslProtocols',
|
35
|
+
type: {
|
36
|
+
name: 'Sequence',
|
37
|
+
element: {
|
38
|
+
required: false,
|
39
|
+
serialized_name: 'ApplicationGatewaySslProtocolElementType',
|
40
|
+
type: {
|
41
|
+
name: 'String'
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|