azure_mgmt_network 0.5.0 → 0.6.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/lib/generated/azure_mgmt_network/application_gateways.rb +45 -45
- data/lib/generated/azure_mgmt_network/express_route_circuit_authorizations.rb +13 -13
- data/lib/generated/azure_mgmt_network/express_route_circuit_peerings.rb +9 -9
- data/lib/generated/azure_mgmt_network/express_route_circuits.rb +10 -10
- data/lib/generated/azure_mgmt_network/express_route_service_providers.rb +1 -1
- data/lib/generated/azure_mgmt_network/load_balancers.rb +25 -25
- data/lib/generated/azure_mgmt_network/local_network_gateways.rb +5 -5
- data/lib/generated/azure_mgmt_network/models/application_gateway_ipconfiguration.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/azure_async_operation_result.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/backend_address_pool.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/connection_shared_key.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/connection_shared_key_result.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/dns_name_availability_result.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/effective_network_security_group_list_result.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/effective_route_list_result.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/express_route_circuit_peering_config.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/inbound_nat_pool.rb +10 -10
- data/lib/generated/azure_mgmt_network/models/inbound_nat_rule.rb +9 -9
- data/lib/generated/azure_mgmt_network/models/load_balancer.rb +2 -2
- data/lib/generated/azure_mgmt_network/models/load_balancing_rule.rb +3 -3
- data/lib/generated/azure_mgmt_network/models/network_security_group_list_result.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/outbound_nat_rule.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/probe.rb +2 -2
- data/lib/generated/azure_mgmt_network/models/public_ipaddress_dns_settings.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/route_list_result.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/route_table_list_result.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/virtual_network_gateway.rb +10 -0
- data/lib/generated/azure_mgmt_network/models/virtual_network_gateway_sku.rb +4 -4
- data/lib/generated/azure_mgmt_network/models/virtual_network_gateway_sku_name.rb +1 -0
- data/lib/generated/azure_mgmt_network/models/virtual_network_gateway_sku_tier.rb +1 -0
- data/lib/generated/azure_mgmt_network/models/virtual_network_list_result.rb +1 -1
- data/lib/generated/azure_mgmt_network/models/virtual_network_peering.rb +1 -1
- data/lib/generated/azure_mgmt_network/network_interfaces.rb +7 -7
- data/lib/generated/azure_mgmt_network/network_security_groups.rb +9 -9
- data/lib/generated/azure_mgmt_network/public_ipaddresses.rb +4 -4
- data/lib/generated/azure_mgmt_network/route_tables.rb +9 -9
- data/lib/generated/azure_mgmt_network/routes.rb +9 -9
- data/lib/generated/azure_mgmt_network/security_rules.rb +4 -4
- data/lib/generated/azure_mgmt_network/subnets.rb +8 -8
- data/lib/generated/azure_mgmt_network/usages.rb +1 -1
- data/lib/generated/azure_mgmt_network/version.rb +1 -1
- data/lib/generated/azure_mgmt_network/virtual_network_gateway_connections.rb +15 -15
- data/lib/generated/azure_mgmt_network/virtual_network_gateways.rb +5 -5
- data/lib/generated/azure_mgmt_network/virtual_network_peerings.rb +4 -4
- data/lib/generated/azure_mgmt_network/virtual_networks.rb +5 -5
- metadata +5 -9
- data/.rspec +0 -3
- data/README.md +0 -102
- data/Rakefile +0 -5
- data/azure_mgmt_network.gemspec +0 -34
@@ -21,22 +21,22 @@ module Azure::ARM::Network
|
|
21
21
|
# forwarded to the backed IP
|
22
22
|
attr_accessor :backend_ipconfiguration
|
23
23
|
|
24
|
-
# @return [TransportProtocol] Gets or sets the transport
|
25
|
-
# endpoint. Possible values are Udp or Tcp. Possible values
|
26
|
-
# 'Udp', 'Tcp'
|
24
|
+
# @return [TransportProtocol] Gets or sets the transport protocol for
|
25
|
+
# the endpoint. Possible values are Udp or Tcp. Possible values
|
26
|
+
# include: 'Udp', 'Tcp'
|
27
27
|
attr_accessor :protocol
|
28
28
|
|
29
29
|
# @return [Integer] Gets or sets the port for the external endpoint. You
|
30
|
-
# can
|
31
|
-
# for each role in the service must be unique. Possible
|
32
|
-
# between 1 and 65535, inclusive
|
30
|
+
# can specify any port number you choose, but the port numbers
|
31
|
+
# specified for each role in the service must be unique. Possible
|
32
|
+
# values range between 1 and 65535, inclusive
|
33
33
|
attr_accessor :frontend_port
|
34
34
|
|
35
35
|
# @return [Integer] Gets or sets a port used for internal connections on
|
36
36
|
# the endpoint. The localPort attribute maps the eternal port of the
|
37
37
|
# endpoint to an internal port on a role. This is useful in scenarios
|
38
|
-
# where a role must communicate to an internal
|
39
|
-
#
|
38
|
+
# where a role must communicate to an internal component on a port that
|
39
|
+
# is different from the one that is exposed externally. If not
|
40
40
|
# specified, the value of localPort is the same as the port attribute.
|
41
41
|
# Set the value of localPort to '*' to automatically assign an
|
42
42
|
# unallocated port that is discoverable using the runtime API
|
@@ -44,7 +44,7 @@ module Azure::ARM::Network
|
|
44
44
|
|
45
45
|
# @return [Integer] Gets or sets the timeout for the Tcp idle
|
46
46
|
# connection. The value can be set between 4 and 30 minutes. The
|
47
|
-
# default value is 4 minutes. This
|
47
|
+
# default value is 4 minutes. This element is only used when the
|
48
48
|
# protocol is set to Tcp
|
49
49
|
attr_accessor :idle_timeout_in_minutes
|
50
50
|
|
@@ -17,10 +17,10 @@ module Azure::ARM::Network
|
|
17
17
|
attr_accessor :frontend_ipconfigurations
|
18
18
|
|
19
19
|
# @return [Array<BackendAddressPool>] Gets or sets Pools of backend IP
|
20
|
-
#
|
20
|
+
# addresses
|
21
21
|
attr_accessor :backend_address_pools
|
22
22
|
|
23
|
-
# @return [Array<LoadBalancingRule>] Gets or sets
|
23
|
+
# @return [Array<LoadBalancingRule>] Gets or sets load balancing rules
|
24
24
|
attr_accessor :load_balancing_rules
|
25
25
|
|
26
26
|
# @return [Array<Probe>] Gets or sets list of Load balancer probes
|
@@ -43,8 +43,8 @@ module Azure::ARM::Network
|
|
43
43
|
# @return [Integer] Gets or sets a port used for internal connections on
|
44
44
|
# the endpoint. The localPort attribute maps the eternal port of the
|
45
45
|
# endpoint to an internal port on a role. This is useful in scenarios
|
46
|
-
# where a role must communicate to an internal
|
47
|
-
#
|
46
|
+
# where a role must communicate to an internal component on a port that
|
47
|
+
# is different from the one that is exposed externally. If not
|
48
48
|
# specified, the value of localPort is the same as the port attribute.
|
49
49
|
# Set the value of localPort to '*' to automatically assign an
|
50
50
|
# unallocated port that is discoverable using the runtime API
|
@@ -52,7 +52,7 @@ module Azure::ARM::Network
|
|
52
52
|
|
53
53
|
# @return [Integer] Gets or sets the timeout for the Tcp idle
|
54
54
|
# connection. The value can be set between 4 and 30 minutes. The
|
55
|
-
# default value is 4 minutes. This
|
55
|
+
# default value is 4 minutes. This element is only used when the
|
56
56
|
# protocol is set to Tcp
|
57
57
|
attr_accessor :idle_timeout_in_minutes
|
58
58
|
|
@@ -17,7 +17,7 @@ module Azure::ARM::Network
|
|
17
17
|
attr_accessor :load_balancing_rules
|
18
18
|
|
19
19
|
# @return [ProbeProtocol] Gets or sets the protocol of the end point.
|
20
|
-
# Possible values are http
|
20
|
+
# Possible values are http or Tcp. If Tcp is specified, a received ACK
|
21
21
|
# is required for the probe to be successful. If http is specified,a
|
22
22
|
# 200 OK response from the specifies URI is required for the probe to
|
23
23
|
# be successful. Possible values include: 'Http', 'Tcp'
|
@@ -36,7 +36,7 @@ module Azure::ARM::Network
|
|
36
36
|
|
37
37
|
# @return [Integer] Gets or sets the number of probes where if no
|
38
38
|
# response, will result in stopping further traffic from being
|
39
|
-
# delivered to the endpoint. This values allows
|
39
|
+
# delivered to the endpoint. This values allows endpoints to be taken
|
40
40
|
# out of rotation faster or slower than the typical times used in
|
41
41
|
# Azure.
|
42
42
|
attr_accessor :number_of_probes
|
@@ -24,7 +24,7 @@ module Azure::ARM::Network
|
|
24
24
|
# of the domainNameLabel and the regionalized DNS zone.
|
25
25
|
attr_accessor :fqdn
|
26
26
|
|
27
|
-
# @return [String] Gets or
|
27
|
+
# @return [String] Gets or Sets the Reverse FQDN. A user-visible, fully
|
28
28
|
# qualified domain name that resolves to this public IP address. If the
|
29
29
|
# reverseFqdn is specified, then a PTR DNS record is created pointing
|
30
30
|
# from the IP address in the in-addr.arpa domain to the reverse FQDN.
|
@@ -27,6 +27,9 @@ module Azure::ARM::Network
|
|
27
27
|
# @return [Boolean] EnableBgp Flag
|
28
28
|
attr_accessor :enable_bgp
|
29
29
|
|
30
|
+
# @return [Boolean] ActiveActive flag
|
31
|
+
attr_accessor :active_active
|
32
|
+
|
30
33
|
# @return [SubResource] Gets or sets the reference of the
|
31
34
|
# LocalNetworkGateway resource which represents Local network site
|
32
35
|
# having default routes. Assign Null value in case of removing existing
|
@@ -151,6 +154,13 @@ module Azure::ARM::Network
|
|
151
154
|
name: 'Boolean'
|
152
155
|
}
|
153
156
|
},
|
157
|
+
active_active: {
|
158
|
+
required: false,
|
159
|
+
serialized_name: 'properties.activeActive',
|
160
|
+
type: {
|
161
|
+
name: 'Boolean'
|
162
|
+
}
|
163
|
+
},
|
154
164
|
gateway_default_site: {
|
155
165
|
required: false,
|
156
166
|
serialized_name: 'properties.gatewayDefaultSite',
|
@@ -13,13 +13,13 @@ module Azure::ARM::Network
|
|
13
13
|
include MsRestAzure
|
14
14
|
|
15
15
|
# @return [VirtualNetworkGatewaySkuName] Gateway sku name
|
16
|
-
# -Basic/HighPerformance/Standard. Possible values
|
17
|
-
# 'HighPerformance', 'Standard'
|
16
|
+
# -Basic/HighPerformance/Standard/UltraPerformance. Possible values
|
17
|
+
# include: 'Basic', 'HighPerformance', 'Standard', 'UltraPerformance'
|
18
18
|
attr_accessor :name
|
19
19
|
|
20
20
|
# @return [VirtualNetworkGatewaySkuTier] Gateway sku tier
|
21
|
-
# -Basic/HighPerformance/Standard. Possible values
|
22
|
-
# 'HighPerformance', 'Standard'
|
21
|
+
# -Basic/HighPerformance/Standard/UltraPerformance. Possible values
|
22
|
+
# include: 'Basic', 'HighPerformance', 'Standard', 'UltraPerformance'
|
23
23
|
attr_accessor :tier
|
24
24
|
|
25
25
|
# @return [Integer] The capacity
|
@@ -27,7 +27,7 @@ module Azure::ARM::Network
|
|
27
27
|
|
28
28
|
# @return [Boolean] Gets or sets if remote gateways can be used on this
|
29
29
|
# virtual network. If the flag is set to true, and allowGatewayTransit
|
30
|
-
# on
|
30
|
+
# on remote peering is also true, virtual network will use gateways of
|
31
31
|
# remote virtual network for transit. Only 1 peering can have this flag
|
32
32
|
# set to true. This flag cannot be set if virtual network already has a
|
33
33
|
# gateway.
|
@@ -7,7 +7,7 @@ module Azure::ARM::Network
|
|
7
7
|
#
|
8
8
|
# The Microsoft Azure Network management API provides a RESTful set of web
|
9
9
|
# services that interact with Microsoft Azure Networks service to manage
|
10
|
-
# your network
|
10
|
+
# your network resources. The API has entities that capture the
|
11
11
|
# relationship between an end user and the Microsoft Azure Networks service.
|
12
12
|
#
|
13
13
|
class NetworkInterfaces
|
@@ -147,7 +147,7 @@ module Azure::ARM::Network
|
|
147
147
|
end
|
148
148
|
|
149
149
|
#
|
150
|
-
# The Get
|
150
|
+
# The Get network interface operation retrieves information about the
|
151
151
|
# specified network interface.
|
152
152
|
#
|
153
153
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -164,7 +164,7 @@ module Azure::ARM::Network
|
|
164
164
|
end
|
165
165
|
|
166
166
|
#
|
167
|
-
# The Get
|
167
|
+
# The Get network interface operation retrieves information about the
|
168
168
|
# specified network interface.
|
169
169
|
#
|
170
170
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -180,7 +180,7 @@ module Azure::ARM::Network
|
|
180
180
|
end
|
181
181
|
|
182
182
|
#
|
183
|
-
# The Get
|
183
|
+
# The Get network interface operation retrieves information about the
|
184
184
|
# specified network interface.
|
185
185
|
#
|
186
186
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -666,7 +666,7 @@ module Azure::ARM::Network
|
|
666
666
|
end
|
667
667
|
|
668
668
|
#
|
669
|
-
# The Get
|
669
|
+
# The Get network interface operation retrieves information about the
|
670
670
|
# specified network interface in a virtual machine scale set.
|
671
671
|
#
|
672
672
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -686,7 +686,7 @@ module Azure::ARM::Network
|
|
686
686
|
end
|
687
687
|
|
688
688
|
#
|
689
|
-
# The Get
|
689
|
+
# The Get network interface operation retrieves information about the
|
690
690
|
# specified network interface in a virtual machine scale set.
|
691
691
|
#
|
692
692
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -705,7 +705,7 @@ module Azure::ARM::Network
|
|
705
705
|
end
|
706
706
|
|
707
707
|
#
|
708
|
-
# The Get
|
708
|
+
# The Get network interface operation retrieves information about the
|
709
709
|
# specified network interface in a virtual machine scale set.
|
710
710
|
#
|
711
711
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -7,7 +7,7 @@ module Azure::ARM::Network
|
|
7
7
|
#
|
8
8
|
# The Microsoft Azure Network management API provides a RESTful set of web
|
9
9
|
# services that interact with Microsoft Azure Networks service to manage
|
10
|
-
# your network
|
10
|
+
# your network resources. The API has entities that capture the
|
11
11
|
# relationship between an end user and the Microsoft Azure Networks service.
|
12
12
|
#
|
13
13
|
class NetworkSecurityGroups
|
@@ -26,7 +26,7 @@ module Azure::ARM::Network
|
|
26
26
|
attr_reader :client
|
27
27
|
|
28
28
|
#
|
29
|
-
# The Delete NetworkSecurityGroup operation deletes the
|
29
|
+
# The Delete NetworkSecurityGroup operation deletes the specified network
|
30
30
|
# security group
|
31
31
|
#
|
32
32
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -67,7 +67,7 @@ module Azure::ARM::Network
|
|
67
67
|
end
|
68
68
|
|
69
69
|
#
|
70
|
-
# The Delete NetworkSecurityGroup operation deletes the
|
70
|
+
# The Delete NetworkSecurityGroup operation deletes the specified network
|
71
71
|
# security group
|
72
72
|
#
|
73
73
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -83,7 +83,7 @@ module Azure::ARM::Network
|
|
83
83
|
end
|
84
84
|
|
85
85
|
#
|
86
|
-
# The Delete NetworkSecurityGroup operation deletes the
|
86
|
+
# The Delete NetworkSecurityGroup operation deletes the specified network
|
87
87
|
# security group
|
88
88
|
#
|
89
89
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -99,7 +99,7 @@ module Azure::ARM::Network
|
|
99
99
|
end
|
100
100
|
|
101
101
|
#
|
102
|
-
# The Delete NetworkSecurityGroup operation deletes the
|
102
|
+
# The Delete NetworkSecurityGroup operation deletes the specified network
|
103
103
|
# security group
|
104
104
|
#
|
105
105
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -260,7 +260,7 @@ module Azure::ARM::Network
|
|
260
260
|
|
261
261
|
#
|
262
262
|
# The Put NetworkSecurityGroup operation creates/updates a network security
|
263
|
-
#
|
263
|
+
# group in the specified resource group.
|
264
264
|
#
|
265
265
|
# @param resource_group_name [String] The name of the resource group.
|
266
266
|
# @param network_security_group_name [String] The name of the network security
|
@@ -309,7 +309,7 @@ module Azure::ARM::Network
|
|
309
309
|
|
310
310
|
#
|
311
311
|
# The Put NetworkSecurityGroup operation creates/updates a network security
|
312
|
-
#
|
312
|
+
# group in the specified resource group.
|
313
313
|
#
|
314
314
|
# @param resource_group_name [String] The name of the resource group.
|
315
315
|
# @param network_security_group_name [String] The name of the network security
|
@@ -328,7 +328,7 @@ module Azure::ARM::Network
|
|
328
328
|
|
329
329
|
#
|
330
330
|
# The Put NetworkSecurityGroup operation creates/updates a network security
|
331
|
-
#
|
331
|
+
# group in the specified resource group.
|
332
332
|
#
|
333
333
|
# @param resource_group_name [String] The name of the resource group.
|
334
334
|
# @param network_security_group_name [String] The name of the network security
|
@@ -346,7 +346,7 @@ module Azure::ARM::Network
|
|
346
346
|
|
347
347
|
#
|
348
348
|
# The Put NetworkSecurityGroup operation creates/updates a network security
|
349
|
-
#
|
349
|
+
# group in the specified resource group.
|
350
350
|
#
|
351
351
|
# @param resource_group_name [String] The name of the resource group.
|
352
352
|
# @param network_security_group_name [String] The name of the network security
|
@@ -7,7 +7,7 @@ module Azure::ARM::Network
|
|
7
7
|
#
|
8
8
|
# The Microsoft Azure Network management API provides a RESTful set of web
|
9
9
|
# services that interact with Microsoft Azure Networks service to manage
|
10
|
-
# your network
|
10
|
+
# your network resources. The API has entities that capture the
|
11
11
|
# relationship between an end user and the Microsoft Azure Networks service.
|
12
12
|
#
|
13
13
|
class PublicIPAddresses
|
@@ -147,7 +147,7 @@ module Azure::ARM::Network
|
|
147
147
|
end
|
148
148
|
|
149
149
|
#
|
150
|
-
# The Get publicIpAddress operation
|
150
|
+
# The Get publicIpAddress operation retrieves information about the specified
|
151
151
|
# pubicIpAddress
|
152
152
|
#
|
153
153
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -164,7 +164,7 @@ module Azure::ARM::Network
|
|
164
164
|
end
|
165
165
|
|
166
166
|
#
|
167
|
-
# The Get publicIpAddress operation
|
167
|
+
# The Get publicIpAddress operation retrieves information about the specified
|
168
168
|
# pubicIpAddress
|
169
169
|
#
|
170
170
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -180,7 +180,7 @@ module Azure::ARM::Network
|
|
180
180
|
end
|
181
181
|
|
182
182
|
#
|
183
|
-
# The Get publicIpAddress operation
|
183
|
+
# The Get publicIpAddress operation retrieves information about the specified
|
184
184
|
# pubicIpAddress
|
185
185
|
#
|
186
186
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -7,7 +7,7 @@ module Azure::ARM::Network
|
|
7
7
|
#
|
8
8
|
# The Microsoft Azure Network management API provides a RESTful set of web
|
9
9
|
# services that interact with Microsoft Azure Networks service to manage
|
10
|
-
# your network
|
10
|
+
# your network resources. The API has entities that capture the
|
11
11
|
# relationship between an end user and the Microsoft Azure Networks service.
|
12
12
|
#
|
13
13
|
class RouteTables
|
@@ -26,7 +26,7 @@ module Azure::ARM::Network
|
|
26
26
|
attr_reader :client
|
27
27
|
|
28
28
|
#
|
29
|
-
# The Delete RouteTable operation deletes the
|
29
|
+
# The Delete RouteTable operation deletes the specified Route Table
|
30
30
|
#
|
31
31
|
# @param resource_group_name [String] The name of the resource group.
|
32
32
|
# @param route_table_name [String] The name of the route table.
|
@@ -64,7 +64,7 @@ module Azure::ARM::Network
|
|
64
64
|
end
|
65
65
|
|
66
66
|
#
|
67
|
-
# The Delete RouteTable operation deletes the
|
67
|
+
# The Delete RouteTable operation deletes the specified Route Table
|
68
68
|
#
|
69
69
|
# @param resource_group_name [String] The name of the resource group.
|
70
70
|
# @param route_table_name [String] The name of the route table.
|
@@ -78,7 +78,7 @@ module Azure::ARM::Network
|
|
78
78
|
end
|
79
79
|
|
80
80
|
#
|
81
|
-
# The Delete RouteTable operation deletes the
|
81
|
+
# The Delete RouteTable operation deletes the specified Route Table
|
82
82
|
#
|
83
83
|
# @param resource_group_name [String] The name of the resource group.
|
84
84
|
# @param route_table_name [String] The name of the route table.
|
@@ -92,7 +92,7 @@ module Azure::ARM::Network
|
|
92
92
|
end
|
93
93
|
|
94
94
|
#
|
95
|
-
# The Delete RouteTable operation deletes the
|
95
|
+
# The Delete RouteTable operation deletes the specified Route Table
|
96
96
|
#
|
97
97
|
# @param resource_group_name [String] The name of the resource group.
|
98
98
|
# @param route_table_name [String] The name of the route table.
|
@@ -247,7 +247,7 @@ module Azure::ARM::Network
|
|
247
247
|
end
|
248
248
|
|
249
249
|
#
|
250
|
-
# The Put RouteTable operation creates/updates a route
|
250
|
+
# The Put RouteTable operation creates/updates a route table in the specified
|
251
251
|
# resource group.
|
252
252
|
#
|
253
253
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -294,7 +294,7 @@ module Azure::ARM::Network
|
|
294
294
|
end
|
295
295
|
|
296
296
|
#
|
297
|
-
# The Put RouteTable operation creates/updates a route
|
297
|
+
# The Put RouteTable operation creates/updates a route table in the specified
|
298
298
|
# resource group.
|
299
299
|
#
|
300
300
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -312,7 +312,7 @@ module Azure::ARM::Network
|
|
312
312
|
end
|
313
313
|
|
314
314
|
#
|
315
|
-
# The Put RouteTable operation creates/updates a route
|
315
|
+
# The Put RouteTable operation creates/updates a route table in the specified
|
316
316
|
# resource group.
|
317
317
|
#
|
318
318
|
# @param resource_group_name [String] The name of the resource group.
|
@@ -329,7 +329,7 @@ module Azure::ARM::Network
|
|
329
329
|
end
|
330
330
|
|
331
331
|
#
|
332
|
-
# The Put RouteTable operation creates/updates a route
|
332
|
+
# The Put RouteTable operation creates/updates a route table in the specified
|
333
333
|
# resource group.
|
334
334
|
#
|
335
335
|
# @param resource_group_name [String] The name of the resource group.
|