azure_sdk 0.22.1 → 0.22.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/azure_sdk/version.rb +1 -1
- data/lib/latest/latest_profile_client.rb +19 -1
- data/lib/latest/modules/luisauthoring_profile_module.rb +485 -0
- data/lib/latest/modules/luisruntime_profile_module.rb +83 -0
- data/lib/latest/modules/network_profile_module.rb +1113 -1105
- metadata +7 -5
@@ -0,0 +1,83 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
|
+
|
5
|
+
require 'azure_cognitiveservices_luisruntime'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module LuisRuntime
|
9
|
+
Prediction = Azure::CognitiveServices::LuisRuntime::V2_0::Prediction
|
10
|
+
|
11
|
+
module Models
|
12
|
+
Sentiment = Azure::CognitiveServices::LuisRuntime::V2_0::Models::Sentiment
|
13
|
+
LuisResult = Azure::CognitiveServices::LuisRuntime::V2_0::Models::LuisResult
|
14
|
+
EntityModel = Azure::CognitiveServices::LuisRuntime::V2_0::Models::EntityModel
|
15
|
+
CompositeChildModel = Azure::CognitiveServices::LuisRuntime::V2_0::Models::CompositeChildModel
|
16
|
+
CompositeEntityModel = Azure::CognitiveServices::LuisRuntime::V2_0::Models::CompositeEntityModel
|
17
|
+
IntentModel = Azure::CognitiveServices::LuisRuntime::V2_0::Models::IntentModel
|
18
|
+
APIError = Azure::CognitiveServices::LuisRuntime::V2_0::Models::APIError
|
19
|
+
EntityWithScore = Azure::CognitiveServices::LuisRuntime::V2_0::Models::EntityWithScore
|
20
|
+
EntityWithResolution = Azure::CognitiveServices::LuisRuntime::V2_0::Models::EntityWithResolution
|
21
|
+
end
|
22
|
+
|
23
|
+
class LuisRuntimeDataClass
|
24
|
+
attr_reader :prediction, :configurable, :base_url, :options, :model_classes
|
25
|
+
|
26
|
+
def initialize(configurable, base_url=nil, options=nil)
|
27
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
28
|
+
|
29
|
+
@client_0 = Azure::CognitiveServices::LuisRuntime::V2_0::LuisRuntimeClient.new(configurable.credentials, options)
|
30
|
+
if(@client_0.respond_to?(:subscription_id))
|
31
|
+
@client_0.subscription_id = configurable.subscription_id
|
32
|
+
end
|
33
|
+
add_telemetry(@client_0)
|
34
|
+
@prediction = @client_0.prediction
|
35
|
+
|
36
|
+
@model_classes = ModelClasses.new
|
37
|
+
end
|
38
|
+
|
39
|
+
def add_telemetry(client)
|
40
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/LuisRuntime"
|
41
|
+
client.add_user_agent_information(profile_information)
|
42
|
+
end
|
43
|
+
|
44
|
+
def method_missing(method, *args)
|
45
|
+
if @client_0.respond_to?method
|
46
|
+
@client_0.send(method, *args)
|
47
|
+
else
|
48
|
+
super
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
class ModelClasses
|
53
|
+
def sentiment
|
54
|
+
Azure::CognitiveServices::LuisRuntime::V2_0::Models::Sentiment
|
55
|
+
end
|
56
|
+
def luis_result
|
57
|
+
Azure::CognitiveServices::LuisRuntime::V2_0::Models::LuisResult
|
58
|
+
end
|
59
|
+
def entity_model
|
60
|
+
Azure::CognitiveServices::LuisRuntime::V2_0::Models::EntityModel
|
61
|
+
end
|
62
|
+
def composite_child_model
|
63
|
+
Azure::CognitiveServices::LuisRuntime::V2_0::Models::CompositeChildModel
|
64
|
+
end
|
65
|
+
def composite_entity_model
|
66
|
+
Azure::CognitiveServices::LuisRuntime::V2_0::Models::CompositeEntityModel
|
67
|
+
end
|
68
|
+
def intent_model
|
69
|
+
Azure::CognitiveServices::LuisRuntime::V2_0::Models::IntentModel
|
70
|
+
end
|
71
|
+
def apierror
|
72
|
+
Azure::CognitiveServices::LuisRuntime::V2_0::Models::APIError
|
73
|
+
end
|
74
|
+
def entity_with_score
|
75
|
+
Azure::CognitiveServices::LuisRuntime::V2_0::Models::EntityWithScore
|
76
|
+
end
|
77
|
+
def entity_with_resolution
|
78
|
+
Azure::CognitiveServices::LuisRuntime::V2_0::Models::EntityWithResolution
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -7,518 +7,520 @@ require 'azure_mgmt_network'
|
|
7
7
|
module Azure::Profiles::Latest
|
8
8
|
module Network
|
9
9
|
module Mgmt
|
10
|
-
ApplicationGateways = Azure::Network::Mgmt::
|
11
|
-
ApplicationSecurityGroups = Azure::Network::Mgmt::
|
12
|
-
AvailableDelegations = Azure::Network::Mgmt::
|
13
|
-
AvailableResourceGroupDelegations = Azure::Network::Mgmt::
|
14
|
-
AzureFirewalls = Azure::Network::Mgmt::
|
15
|
-
AzureFirewallFqdnTags = Azure::Network::Mgmt::
|
16
|
-
DdosCustomPolicies = Azure::Network::Mgmt::
|
17
|
-
DdosProtectionPlans = Azure::Network::Mgmt::
|
18
|
-
AvailableEndpointServices = Azure::Network::Mgmt::
|
19
|
-
ExpressRouteCircuitAuthorizations = Azure::Network::Mgmt::
|
20
|
-
ExpressRouteCircuitPeerings = Azure::Network::Mgmt::
|
21
|
-
ExpressRouteCircuitConnections = Azure::Network::Mgmt::
|
22
|
-
ExpressRouteCircuits = Azure::Network::Mgmt::
|
23
|
-
ExpressRouteServiceProviders = Azure::Network::Mgmt::
|
24
|
-
ExpressRouteCrossConnections = Azure::Network::Mgmt::
|
25
|
-
ExpressRouteCrossConnectionPeerings = Azure::Network::Mgmt::
|
26
|
-
ExpressRouteGateways = Azure::Network::Mgmt::
|
27
|
-
ExpressRouteConnections = Azure::Network::Mgmt::
|
28
|
-
ExpressRoutePortsLocations = Azure::Network::Mgmt::
|
29
|
-
ExpressRoutePorts = Azure::Network::Mgmt::
|
30
|
-
ExpressRouteLinks = Azure::Network::Mgmt::
|
31
|
-
InterfaceEndpoints = Azure::Network::Mgmt::
|
32
|
-
LoadBalancers = Azure::Network::Mgmt::
|
33
|
-
LoadBalancerBackendAddressPools = Azure::Network::Mgmt::
|
34
|
-
LoadBalancerFrontendIPConfigurations = Azure::Network::Mgmt::
|
35
|
-
InboundNatRules = Azure::Network::Mgmt::
|
36
|
-
LoadBalancerLoadBalancingRules = Azure::Network::Mgmt::
|
37
|
-
LoadBalancerOutboundRules = Azure::Network::Mgmt::
|
38
|
-
LoadBalancerNetworkInterfaces = Azure::Network::Mgmt::
|
39
|
-
LoadBalancerProbes = Azure::Network::Mgmt::
|
40
|
-
NetworkInterfaces = Azure::Network::Mgmt::
|
41
|
-
NetworkInterfaceIPConfigurations = Azure::Network::Mgmt::
|
42
|
-
NetworkInterfaceLoadBalancers = Azure::Network::Mgmt::
|
43
|
-
NetworkInterfaceTapConfigurations = Azure::Network::Mgmt::
|
44
|
-
NetworkProfiles = Azure::Network::Mgmt::
|
45
|
-
NetworkSecurityGroups = Azure::Network::Mgmt::
|
46
|
-
SecurityRules = Azure::Network::Mgmt::
|
47
|
-
DefaultSecurityRules = Azure::Network::Mgmt::
|
48
|
-
NetworkWatchers = Azure::Network::Mgmt::
|
49
|
-
PacketCaptures = Azure::Network::Mgmt::
|
50
|
-
ConnectionMonitors = Azure::Network::Mgmt::
|
51
|
-
Operations = Azure::Network::Mgmt::
|
52
|
-
PublicIPAddresses = Azure::Network::Mgmt::
|
53
|
-
PublicIPPrefixes = Azure::Network::Mgmt::
|
54
|
-
RouteFilters = Azure::Network::Mgmt::
|
55
|
-
RouteFilterRules = Azure::Network::Mgmt::
|
56
|
-
RouteTables = Azure::Network::Mgmt::
|
57
|
-
Routes = Azure::Network::Mgmt::
|
58
|
-
BgpServiceCommunities = Azure::Network::Mgmt::
|
59
|
-
ServiceEndpointPolicies = Azure::Network::Mgmt::
|
60
|
-
ServiceEndpointPolicyDefinitions = Azure::Network::Mgmt::
|
61
|
-
Usages = Azure::Network::Mgmt::
|
62
|
-
VirtualNetworks = Azure::Network::Mgmt::
|
63
|
-
Subnets = Azure::Network::Mgmt::
|
64
|
-
VirtualNetworkPeerings = Azure::Network::Mgmt::
|
65
|
-
VirtualNetworkGateways = Azure::Network::Mgmt::
|
66
|
-
VirtualNetworkGatewayConnections = Azure::Network::Mgmt::
|
67
|
-
LocalNetworkGateways = Azure::Network::Mgmt::
|
68
|
-
VirtualNetworkTaps = Azure::Network::Mgmt::
|
69
|
-
VirtualWans = Azure::Network::Mgmt::
|
70
|
-
VpnSites = Azure::Network::Mgmt::
|
71
|
-
VpnSitesConfiguration = Azure::Network::Mgmt::
|
72
|
-
VirtualHubs = Azure::Network::Mgmt::
|
73
|
-
HubVirtualNetworkConnections = Azure::Network::Mgmt::
|
74
|
-
VpnGateways = Azure::Network::Mgmt::
|
75
|
-
VpnConnections = Azure::Network::Mgmt::
|
76
|
-
P2sVpnServerConfigurations = Azure::Network::Mgmt::
|
77
|
-
P2sVpnGateways = Azure::Network::Mgmt::
|
10
|
+
ApplicationGateways = Azure::Network::Mgmt::V2018_12_01::ApplicationGateways
|
11
|
+
ApplicationSecurityGroups = Azure::Network::Mgmt::V2018_12_01::ApplicationSecurityGroups
|
12
|
+
AvailableDelegations = Azure::Network::Mgmt::V2018_12_01::AvailableDelegations
|
13
|
+
AvailableResourceGroupDelegations = Azure::Network::Mgmt::V2018_12_01::AvailableResourceGroupDelegations
|
14
|
+
AzureFirewalls = Azure::Network::Mgmt::V2018_12_01::AzureFirewalls
|
15
|
+
AzureFirewallFqdnTags = Azure::Network::Mgmt::V2018_12_01::AzureFirewallFqdnTags
|
16
|
+
DdosCustomPolicies = Azure::Network::Mgmt::V2018_12_01::DdosCustomPolicies
|
17
|
+
DdosProtectionPlans = Azure::Network::Mgmt::V2018_12_01::DdosProtectionPlans
|
18
|
+
AvailableEndpointServices = Azure::Network::Mgmt::V2018_12_01::AvailableEndpointServices
|
19
|
+
ExpressRouteCircuitAuthorizations = Azure::Network::Mgmt::V2018_12_01::ExpressRouteCircuitAuthorizations
|
20
|
+
ExpressRouteCircuitPeerings = Azure::Network::Mgmt::V2018_12_01::ExpressRouteCircuitPeerings
|
21
|
+
ExpressRouteCircuitConnections = Azure::Network::Mgmt::V2018_12_01::ExpressRouteCircuitConnections
|
22
|
+
ExpressRouteCircuits = Azure::Network::Mgmt::V2018_12_01::ExpressRouteCircuits
|
23
|
+
ExpressRouteServiceProviders = Azure::Network::Mgmt::V2018_12_01::ExpressRouteServiceProviders
|
24
|
+
ExpressRouteCrossConnections = Azure::Network::Mgmt::V2018_12_01::ExpressRouteCrossConnections
|
25
|
+
ExpressRouteCrossConnectionPeerings = Azure::Network::Mgmt::V2018_12_01::ExpressRouteCrossConnectionPeerings
|
26
|
+
ExpressRouteGateways = Azure::Network::Mgmt::V2018_12_01::ExpressRouteGateways
|
27
|
+
ExpressRouteConnections = Azure::Network::Mgmt::V2018_12_01::ExpressRouteConnections
|
28
|
+
ExpressRoutePortsLocations = Azure::Network::Mgmt::V2018_12_01::ExpressRoutePortsLocations
|
29
|
+
ExpressRoutePorts = Azure::Network::Mgmt::V2018_12_01::ExpressRoutePorts
|
30
|
+
ExpressRouteLinks = Azure::Network::Mgmt::V2018_12_01::ExpressRouteLinks
|
31
|
+
InterfaceEndpoints = Azure::Network::Mgmt::V2018_12_01::InterfaceEndpoints
|
32
|
+
LoadBalancers = Azure::Network::Mgmt::V2018_12_01::LoadBalancers
|
33
|
+
LoadBalancerBackendAddressPools = Azure::Network::Mgmt::V2018_12_01::LoadBalancerBackendAddressPools
|
34
|
+
LoadBalancerFrontendIPConfigurations = Azure::Network::Mgmt::V2018_12_01::LoadBalancerFrontendIPConfigurations
|
35
|
+
InboundNatRules = Azure::Network::Mgmt::V2018_12_01::InboundNatRules
|
36
|
+
LoadBalancerLoadBalancingRules = Azure::Network::Mgmt::V2018_12_01::LoadBalancerLoadBalancingRules
|
37
|
+
LoadBalancerOutboundRules = Azure::Network::Mgmt::V2018_12_01::LoadBalancerOutboundRules
|
38
|
+
LoadBalancerNetworkInterfaces = Azure::Network::Mgmt::V2018_12_01::LoadBalancerNetworkInterfaces
|
39
|
+
LoadBalancerProbes = Azure::Network::Mgmt::V2018_12_01::LoadBalancerProbes
|
40
|
+
NetworkInterfaces = Azure::Network::Mgmt::V2018_12_01::NetworkInterfaces
|
41
|
+
NetworkInterfaceIPConfigurations = Azure::Network::Mgmt::V2018_12_01::NetworkInterfaceIPConfigurations
|
42
|
+
NetworkInterfaceLoadBalancers = Azure::Network::Mgmt::V2018_12_01::NetworkInterfaceLoadBalancers
|
43
|
+
NetworkInterfaceTapConfigurations = Azure::Network::Mgmt::V2018_12_01::NetworkInterfaceTapConfigurations
|
44
|
+
NetworkProfiles = Azure::Network::Mgmt::V2018_12_01::NetworkProfiles
|
45
|
+
NetworkSecurityGroups = Azure::Network::Mgmt::V2018_12_01::NetworkSecurityGroups
|
46
|
+
SecurityRules = Azure::Network::Mgmt::V2018_12_01::SecurityRules
|
47
|
+
DefaultSecurityRules = Azure::Network::Mgmt::V2018_12_01::DefaultSecurityRules
|
48
|
+
NetworkWatchers = Azure::Network::Mgmt::V2018_12_01::NetworkWatchers
|
49
|
+
PacketCaptures = Azure::Network::Mgmt::V2018_12_01::PacketCaptures
|
50
|
+
ConnectionMonitors = Azure::Network::Mgmt::V2018_12_01::ConnectionMonitors
|
51
|
+
Operations = Azure::Network::Mgmt::V2018_12_01::Operations
|
52
|
+
PublicIPAddresses = Azure::Network::Mgmt::V2018_12_01::PublicIPAddresses
|
53
|
+
PublicIPPrefixes = Azure::Network::Mgmt::V2018_12_01::PublicIPPrefixes
|
54
|
+
RouteFilters = Azure::Network::Mgmt::V2018_12_01::RouteFilters
|
55
|
+
RouteFilterRules = Azure::Network::Mgmt::V2018_12_01::RouteFilterRules
|
56
|
+
RouteTables = Azure::Network::Mgmt::V2018_12_01::RouteTables
|
57
|
+
Routes = Azure::Network::Mgmt::V2018_12_01::Routes
|
58
|
+
BgpServiceCommunities = Azure::Network::Mgmt::V2018_12_01::BgpServiceCommunities
|
59
|
+
ServiceEndpointPolicies = Azure::Network::Mgmt::V2018_12_01::ServiceEndpointPolicies
|
60
|
+
ServiceEndpointPolicyDefinitions = Azure::Network::Mgmt::V2018_12_01::ServiceEndpointPolicyDefinitions
|
61
|
+
Usages = Azure::Network::Mgmt::V2018_12_01::Usages
|
62
|
+
VirtualNetworks = Azure::Network::Mgmt::V2018_12_01::VirtualNetworks
|
63
|
+
Subnets = Azure::Network::Mgmt::V2018_12_01::Subnets
|
64
|
+
VirtualNetworkPeerings = Azure::Network::Mgmt::V2018_12_01::VirtualNetworkPeerings
|
65
|
+
VirtualNetworkGateways = Azure::Network::Mgmt::V2018_12_01::VirtualNetworkGateways
|
66
|
+
VirtualNetworkGatewayConnections = Azure::Network::Mgmt::V2018_12_01::VirtualNetworkGatewayConnections
|
67
|
+
LocalNetworkGateways = Azure::Network::Mgmt::V2018_12_01::LocalNetworkGateways
|
68
|
+
VirtualNetworkTaps = Azure::Network::Mgmt::V2018_12_01::VirtualNetworkTaps
|
69
|
+
VirtualWans = Azure::Network::Mgmt::V2018_12_01::VirtualWans
|
70
|
+
VpnSites = Azure::Network::Mgmt::V2018_12_01::VpnSites
|
71
|
+
VpnSitesConfiguration = Azure::Network::Mgmt::V2018_12_01::VpnSitesConfiguration
|
72
|
+
VirtualHubs = Azure::Network::Mgmt::V2018_12_01::VirtualHubs
|
73
|
+
HubVirtualNetworkConnections = Azure::Network::Mgmt::V2018_12_01::HubVirtualNetworkConnections
|
74
|
+
VpnGateways = Azure::Network::Mgmt::V2018_12_01::VpnGateways
|
75
|
+
VpnConnections = Azure::Network::Mgmt::V2018_12_01::VpnConnections
|
76
|
+
P2sVpnServerConfigurations = Azure::Network::Mgmt::V2018_12_01::P2sVpnServerConfigurations
|
77
|
+
P2sVpnGateways = Azure::Network::Mgmt::V2018_12_01::P2sVpnGateways
|
78
78
|
|
79
79
|
module Models
|
80
|
-
|
81
|
-
|
82
|
-
SubResource = Azure::Network::Mgmt::
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
ServiceEndpointPropertiesFormat = Azure::Network::Mgmt::
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
PublicIPAddressDnsSettings = Azure::Network::Mgmt::
|
97
|
-
|
98
|
-
IpTag = Azure::Network::Mgmt::
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
ApplicationGatewayBackendHealthHttpSettings = Azure::Network::Mgmt::
|
117
|
-
|
118
|
-
ApplicationGatewayBackendHealth = Azure::Network::Mgmt::
|
119
|
-
|
120
|
-
ApplicationGatewaySslPolicy = Azure::Network::Mgmt::
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
ApplicationGatewayProbeHealthResponseMatch = Azure::Network::Mgmt::
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
NetworkInterfaceTapConfiguration = Azure::Network::Mgmt::
|
331
|
-
ApplicationSecurityGroup = Azure::Network::Mgmt::
|
332
|
-
SecurityRule = Azure::Network::Mgmt::
|
333
|
-
InterfaceEndpoint = Azure::Network::Mgmt::
|
334
|
-
NetworkInterface = Azure::Network::Mgmt::
|
335
|
-
NetworkSecurityGroup = Azure::Network::Mgmt::
|
336
|
-
Route = Azure::Network::Mgmt::
|
337
|
-
RouteTable = Azure::Network::Mgmt::
|
338
|
-
ServiceEndpointPolicyDefinition = Azure::Network::Mgmt::
|
339
|
-
ServiceEndpointPolicy = Azure::Network::Mgmt::
|
340
|
-
PublicIPAddress = Azure::Network::Mgmt::
|
341
|
-
IPConfiguration = Azure::Network::Mgmt::
|
342
|
-
IPConfigurationProfile = Azure::Network::Mgmt::
|
343
|
-
ResourceNavigationLink = Azure::Network::Mgmt::
|
344
|
-
ServiceAssociationLink = Azure::Network::Mgmt::
|
345
|
-
Delegation = Azure::Network::Mgmt::
|
346
|
-
Subnet = Azure::Network::Mgmt::
|
347
|
-
FrontendIPConfiguration = Azure::Network::Mgmt::
|
348
|
-
VirtualNetworkTap = Azure::Network::Mgmt::
|
349
|
-
BackendAddressPool = Azure::Network::Mgmt::
|
350
|
-
InboundNatRule = Azure::Network::Mgmt::
|
351
|
-
NetworkInterfaceIPConfiguration = Azure::Network::Mgmt::
|
352
|
-
ApplicationGatewayBackendAddressPool = Azure::Network::Mgmt::
|
353
|
-
ApplicationGatewayBackendHttpSettings = Azure::Network::Mgmt::
|
354
|
-
ApplicationGatewayIPConfiguration = Azure::Network::Mgmt::
|
355
|
-
ApplicationGatewayAuthenticationCertificate = Azure::Network::Mgmt::
|
356
|
-
ApplicationGatewayTrustedRootCertificate = Azure::Network::Mgmt::
|
357
|
-
ApplicationGatewaySslCertificate = Azure::Network::Mgmt::
|
358
|
-
ApplicationGatewayFrontendIPConfiguration = Azure::Network::Mgmt::
|
359
|
-
ApplicationGatewayFrontendPort = Azure::Network::Mgmt::
|
360
|
-
ApplicationGatewayHttpListener = Azure::Network::Mgmt::
|
361
|
-
ApplicationGatewayPathRule = Azure::Network::Mgmt::
|
362
|
-
ApplicationGatewayProbe = Azure::Network::Mgmt::
|
363
|
-
ApplicationGatewayRequestRoutingRule = Azure::Network::Mgmt::
|
364
|
-
ApplicationGatewayRewriteRuleSet = Azure::Network::Mgmt::
|
365
|
-
ApplicationGatewayRedirectConfiguration = Azure::Network::Mgmt::
|
366
|
-
ApplicationGatewayUrlPathMap = Azure::Network::Mgmt::
|
367
|
-
ApplicationGateway = Azure::Network::Mgmt::
|
368
|
-
ApplicationGatewayFirewallRuleSet = Azure::Network::Mgmt::
|
369
|
-
ApplicationGatewayAvailableSslOptions = Azure::Network::Mgmt::
|
370
|
-
ApplicationGatewaySslPredefinedPolicy = Azure::Network::Mgmt::
|
371
|
-
AzureFirewallIPConfiguration = Azure::Network::Mgmt::
|
372
|
-
AzureFirewallApplicationRuleCollection = Azure::Network::Mgmt::
|
373
|
-
AzureFirewallNatRuleCollection = Azure::Network::Mgmt::
|
374
|
-
AzureFirewallNetworkRuleCollection = Azure::Network::Mgmt::
|
375
|
-
AzureFirewall = Azure::Network::Mgmt::
|
376
|
-
AzureFirewallFqdnTag = Azure::Network::Mgmt::
|
377
|
-
DdosCustomPolicy = Azure::Network::Mgmt::
|
378
|
-
EndpointServiceResult = Azure::Network::Mgmt::
|
379
|
-
ExpressRouteCircuitAuthorization = Azure::Network::Mgmt::
|
380
|
-
RouteFilterRule = Azure::Network::Mgmt::
|
381
|
-
ExpressRouteCircuitConnection = Azure::Network::Mgmt::
|
382
|
-
ExpressRouteCircuitPeering = Azure::Network::Mgmt::
|
383
|
-
RouteFilter = Azure::Network::Mgmt::
|
384
|
-
ExpressRouteCircuit = Azure::Network::Mgmt::
|
385
|
-
ExpressRouteServiceProvider = Azure::Network::Mgmt::
|
386
|
-
ExpressRouteCrossConnectionPeering = Azure::Network::Mgmt::
|
387
|
-
ExpressRouteCrossConnection = Azure::Network::Mgmt::
|
388
|
-
ExpressRouteConnection = Azure::Network::Mgmt::
|
389
|
-
ExpressRouteGateway = Azure::Network::Mgmt::
|
390
|
-
ExpressRoutePortsLocation = Azure::Network::Mgmt::
|
391
|
-
ExpressRouteLink = Azure::Network::Mgmt::
|
392
|
-
ExpressRoutePort = Azure::Network::Mgmt::
|
393
|
-
LoadBalancingRule = Azure::Network::Mgmt::
|
394
|
-
Probe = Azure::Network::Mgmt::
|
395
|
-
InboundNatPool = Azure::Network::Mgmt::
|
396
|
-
OutboundRule = Azure::Network::Mgmt::
|
397
|
-
LoadBalancer = Azure::Network::Mgmt::
|
398
|
-
ContainerNetworkInterfaceConfiguration = Azure::Network::Mgmt::
|
399
|
-
Container = Azure::Network::Mgmt::
|
400
|
-
ContainerNetworkInterface = Azure::Network::Mgmt::
|
401
|
-
NetworkProfile = Azure::Network::Mgmt::
|
402
|
-
NetworkWatcher = Azure::Network::Mgmt::
|
403
|
-
PublicIPPrefix = Azure::Network::Mgmt::
|
404
|
-
PatchRouteFilterRule = Azure::Network::Mgmt::
|
405
|
-
PatchRouteFilter = Azure::Network::Mgmt::
|
406
|
-
BgpServiceCommunity = Azure::Network::Mgmt::
|
407
|
-
VirtualNetworkPeering = Azure::Network::Mgmt::
|
408
|
-
VirtualNetwork = Azure::Network::Mgmt::
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
80
|
+
EffectiveRouteListResult = Azure::Network::Mgmt::V2018_12_01::Models::EffectiveRouteListResult
|
81
|
+
LoadBalancerBackendAddressPoolListResult = Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerBackendAddressPoolListResult
|
82
|
+
SubResource = Azure::Network::Mgmt::V2018_12_01::Models::SubResource
|
83
|
+
LoadBalancerFrontendIPConfigurationListResult = Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerFrontendIPConfigurationListResult
|
84
|
+
ExpressRouteServiceProviderListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteServiceProviderListResult
|
85
|
+
ExpressRouteCrossConnectionRoutesTableSummary = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnectionRoutesTableSummary
|
86
|
+
VirtualNetworkGatewayListConnectionsResult = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayListConnectionsResult
|
87
|
+
ExpressRouteCrossConnectionsRoutesTableSummaryListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnectionsRoutesTableSummaryListResult
|
88
|
+
VpnDeviceScriptParameters = Azure::Network::Mgmt::V2018_12_01::Models::VpnDeviceScriptParameters
|
89
|
+
ExpressRouteCircuitReference = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitReference
|
90
|
+
LocalNetworkGatewayListResult = Azure::Network::Mgmt::V2018_12_01::Models::LocalNetworkGatewayListResult
|
91
|
+
PublicIPPrefixListResult = Azure::Network::Mgmt::V2018_12_01::Models::PublicIPPrefixListResult
|
92
|
+
ServiceEndpointPropertiesFormat = Azure::Network::Mgmt::V2018_12_01::Models::ServiceEndpointPropertiesFormat
|
93
|
+
VirtualWanSecurityProviders = Azure::Network::Mgmt::V2018_12_01::Models::VirtualWanSecurityProviders
|
94
|
+
ConnectionResetSharedKey = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionResetSharedKey
|
95
|
+
ExpressRouteCrossConnectionListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnectionListResult
|
96
|
+
PublicIPAddressDnsSettings = Azure::Network::Mgmt::V2018_12_01::Models::PublicIPAddressDnsSettings
|
97
|
+
ExpressRouteCrossConnectionPeeringList = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnectionPeeringList
|
98
|
+
IpTag = Azure::Network::Mgmt::V2018_12_01::Models::IpTag
|
99
|
+
VirtualHubId = Azure::Network::Mgmt::V2018_12_01::Models::VirtualHubId
|
100
|
+
ListVirtualWANsResult = Azure::Network::Mgmt::V2018_12_01::Models::ListVirtualWANsResult
|
101
|
+
ExpressRouteCircuitPeeringId = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeeringId
|
102
|
+
TunnelConnectionHealth = Azure::Network::Mgmt::V2018_12_01::Models::TunnelConnectionHealth
|
103
|
+
ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds
|
104
|
+
BgpPeerStatusListResult = Azure::Network::Mgmt::V2018_12_01::Models::BgpPeerStatusListResult
|
105
|
+
ExpressRouteGatewayPropertiesAutoScaleConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteGatewayPropertiesAutoScaleConfiguration
|
106
|
+
VpnClientParameters = Azure::Network::Mgmt::V2018_12_01::Models::VpnClientParameters
|
107
|
+
ReferencedPublicIpAddress = Azure::Network::Mgmt::V2018_12_01::Models::ReferencedPublicIpAddress
|
108
|
+
GatewayRoute = Azure::Network::Mgmt::V2018_12_01::Models::GatewayRoute
|
109
|
+
PublicIPPrefixSku = Azure::Network::Mgmt::V2018_12_01::Models::PublicIPPrefixSku
|
110
|
+
BgpSettings = Azure::Network::Mgmt::V2018_12_01::Models::BgpSettings
|
111
|
+
ExpressRouteGatewayList = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteGatewayList
|
112
|
+
VpnClientConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::VpnClientConfiguration
|
113
|
+
ExpressRouteConnectionList = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteConnectionList
|
114
|
+
IpsecPolicy = Azure::Network::Mgmt::V2018_12_01::Models::IpsecPolicy
|
115
|
+
ExpressRoutePortsLocationBandwidths = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePortsLocationBandwidths
|
116
|
+
ApplicationGatewayBackendHealthHttpSettings = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHealthHttpSettings
|
117
|
+
PublicIPAddressListResult = Azure::Network::Mgmt::V2018_12_01::Models::PublicIPAddressListResult
|
118
|
+
ApplicationGatewayBackendHealth = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHealth
|
119
|
+
ExpressRoutePortsLocationListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePortsLocationListResult
|
120
|
+
ApplicationGatewaySslPolicy = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslPolicy
|
121
|
+
OperationListResult = Azure::Network::Mgmt::V2018_12_01::Models::OperationListResult
|
122
|
+
VirtualHubRoute = Azure::Network::Mgmt::V2018_12_01::Models::VirtualHubRoute
|
123
|
+
ExpressRouteLinkListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteLinkListResult
|
124
|
+
VirtualHubRouteTable = Azure::Network::Mgmt::V2018_12_01::Models::VirtualHubRouteTable
|
125
|
+
Operation = Azure::Network::Mgmt::V2018_12_01::Models::Operation
|
126
|
+
NetworkIntentPolicyConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::NetworkIntentPolicyConfiguration
|
127
|
+
ExpressRoutePortListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePortListResult
|
128
|
+
ListVirtualHubsResult = Azure::Network::Mgmt::V2018_12_01::Models::ListVirtualHubsResult
|
129
|
+
InterfaceEndpointListResult = Azure::Network::Mgmt::V2018_12_01::Models::InterfaceEndpointListResult
|
130
|
+
ApplicationGatewayProbeHealthResponseMatch = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayProbeHealthResponseMatch
|
131
|
+
LoadBalancerSku = Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerSku
|
132
|
+
VirtualNetworkUsageName = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkUsageName
|
133
|
+
OperationPropertiesFormatServiceSpecification = Azure::Network::Mgmt::V2018_12_01::Models::OperationPropertiesFormatServiceSpecification
|
134
|
+
ApplicationGatewayHeaderConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayHeaderConfiguration
|
135
|
+
LogSpecification = Azure::Network::Mgmt::V2018_12_01::Models::LogSpecification
|
136
|
+
ApplicationGatewayRewriteRule = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRewriteRule
|
137
|
+
MetricSpecification = Azure::Network::Mgmt::V2018_12_01::Models::MetricSpecification
|
138
|
+
VirtualNetworkListResult = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkListResult
|
139
|
+
Dimension = Azure::Network::Mgmt::V2018_12_01::Models::Dimension
|
140
|
+
ApplicationGatewayFirewallDisabledRuleGroup = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallDisabledRuleGroup
|
141
|
+
Availability = Azure::Network::Mgmt::V2018_12_01::Models::Availability
|
142
|
+
ApplicationGatewayWebApplicationFirewallConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayWebApplicationFirewallConfiguration
|
143
|
+
LoadBalancerListResult = Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerListResult
|
144
|
+
ManagedServiceIdentityUserAssignedIdentitiesValue = Azure::Network::Mgmt::V2018_12_01::Models::ManagedServiceIdentityUserAssignedIdentitiesValue
|
145
|
+
InboundNatRuleListResult = Azure::Network::Mgmt::V2018_12_01::Models::InboundNatRuleListResult
|
146
|
+
DhcpOptions = Azure::Network::Mgmt::V2018_12_01::Models::DhcpOptions
|
147
|
+
ApplicationGatewayListResult = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayListResult
|
148
|
+
NetworkConfigurationDiagnosticResponse = Azure::Network::Mgmt::V2018_12_01::Models::NetworkConfigurationDiagnosticResponse
|
149
|
+
ApplicationGatewayFirewallRuleGroup = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallRuleGroup
|
150
|
+
OperationDisplay = Azure::Network::Mgmt::V2018_12_01::Models::OperationDisplay
|
151
|
+
ApplicationGatewayAvailableWafRuleSetsResult = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayAvailableWafRuleSetsResult
|
152
|
+
LoadBalancerLoadBalancingRuleListResult = Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerLoadBalancingRuleListResult
|
153
|
+
ListVpnConnectionsResult = Azure::Network::Mgmt::V2018_12_01::Models::ListVpnConnectionsResult
|
154
|
+
LoadBalancerOutboundRuleListResult = Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerOutboundRuleListResult
|
155
|
+
Resource = Azure::Network::Mgmt::V2018_12_01::Models::Resource
|
156
|
+
LoadBalancerProbeListResult = Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerProbeListResult
|
157
|
+
Error = Azure::Network::Mgmt::V2018_12_01::Models::Error
|
158
|
+
NetworkInterfaceListResult = Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceListResult
|
159
|
+
ApplicationSecurityGroupListResult = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationSecurityGroupListResult
|
160
|
+
AzureAsyncOperationResult = Azure::Network::Mgmt::V2018_12_01::Models::AzureAsyncOperationResult
|
161
|
+
AvailableDelegationsResult = Azure::Network::Mgmt::V2018_12_01::Models::AvailableDelegationsResult
|
162
|
+
NetworkInterfaceTapConfigurationListResult = Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceTapConfigurationListResult
|
163
|
+
AzureFirewallRCAction = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallRCAction
|
164
|
+
NetworkInterfaceIPConfigurationListResult = Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceIPConfigurationListResult
|
165
|
+
AzureFirewallApplicationRule = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallApplicationRule
|
166
|
+
NetworkInterfaceLoadBalancerListResult = Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceLoadBalancerListResult
|
167
|
+
AzureFirewallNatRCAction = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNatRCAction
|
168
|
+
EffectiveNetworkSecurityGroupAssociation = Azure::Network::Mgmt::V2018_12_01::Models::EffectiveNetworkSecurityGroupAssociation
|
169
|
+
Usage = Azure::Network::Mgmt::V2018_12_01::Models::Usage
|
170
|
+
EffectiveNetworkSecurityRule = Azure::Network::Mgmt::V2018_12_01::Models::EffectiveNetworkSecurityRule
|
171
|
+
UsageName = Azure::Network::Mgmt::V2018_12_01::Models::UsageName
|
172
|
+
EffectiveNetworkSecurityGroup = Azure::Network::Mgmt::V2018_12_01::Models::EffectiveNetworkSecurityGroup
|
173
|
+
AzureFirewallListResult = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallListResult
|
174
|
+
EffectiveNetworkSecurityGroupListResult = Azure::Network::Mgmt::V2018_12_01::Models::EffectiveNetworkSecurityGroupListResult
|
175
|
+
AzureFirewallFqdnTagListResult = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallFqdnTagListResult
|
176
|
+
EffectiveRoute = Azure::Network::Mgmt::V2018_12_01::Models::EffectiveRoute
|
177
|
+
ProtocolCustomSettingsFormat = Azure::Network::Mgmt::V2018_12_01::Models::ProtocolCustomSettingsFormat
|
178
|
+
BgpServiceCommunityListResult = Azure::Network::Mgmt::V2018_12_01::Models::BgpServiceCommunityListResult
|
179
|
+
NetworkConfigurationDiagnosticResult = Azure::Network::Mgmt::V2018_12_01::Models::NetworkConfigurationDiagnosticResult
|
180
|
+
VpnProfileResponse = Azure::Network::Mgmt::V2018_12_01::Models::VpnProfileResponse
|
181
|
+
DdosProtectionPlanListResult = Azure::Network::Mgmt::V2018_12_01::Models::DdosProtectionPlanListResult
|
182
|
+
P2SVpnProfileParameters = Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnProfileParameters
|
183
|
+
EndpointServicesListResult = Azure::Network::Mgmt::V2018_12_01::Models::EndpointServicesListResult
|
184
|
+
ContainerNetworkInterfaceIpConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::ContainerNetworkInterfaceIpConfiguration
|
185
|
+
AuthorizationListResult = Azure::Network::Mgmt::V2018_12_01::Models::AuthorizationListResult
|
186
|
+
ListP2SVpnGatewaysResult = Azure::Network::Mgmt::V2018_12_01::Models::ListP2SVpnGatewaysResult
|
187
|
+
RouteListResult = Azure::Network::Mgmt::V2018_12_01::Models::RouteListResult
|
188
|
+
VpnClientConnectionHealth = Azure::Network::Mgmt::V2018_12_01::Models::VpnClientConnectionHealth
|
189
|
+
ExpressRouteConnectionId = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteConnectionId
|
190
|
+
NetworkProfileListResult = Azure::Network::Mgmt::V2018_12_01::Models::NetworkProfileListResult
|
191
|
+
RouteFilterRuleListResult = Azure::Network::Mgmt::V2018_12_01::Models::RouteFilterRuleListResult
|
192
|
+
SecurityRuleListResult = Azure::Network::Mgmt::V2018_12_01::Models::SecurityRuleListResult
|
193
|
+
Ipv6ExpressRouteCircuitPeeringConfig = Azure::Network::Mgmt::V2018_12_01::Models::Ipv6ExpressRouteCircuitPeeringConfig
|
194
|
+
NetworkSecurityGroupListResult = Azure::Network::Mgmt::V2018_12_01::Models::NetworkSecurityGroupListResult
|
195
|
+
ExpressRouteCircuitConnectionListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitConnectionListResult
|
196
|
+
ErrorResponse = Azure::Network::Mgmt::V2018_12_01::Models::ErrorResponse
|
197
|
+
ExpressRouteCircuitServiceProviderProperties = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitServiceProviderProperties
|
198
|
+
ListP2SVpnServerConfigurationsResult = Azure::Network::Mgmt::V2018_12_01::Models::ListP2SVpnServerConfigurationsResult
|
199
|
+
ExpressRouteCircuitArpTable = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitArpTable
|
200
|
+
NetworkWatcherListResult = Azure::Network::Mgmt::V2018_12_01::Models::NetworkWatcherListResult
|
201
|
+
ExpressRouteCircuitRoutesTable = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitRoutesTable
|
202
|
+
TopologyParameters = Azure::Network::Mgmt::V2018_12_01::Models::TopologyParameters
|
203
|
+
ExpressRouteCircuitRoutesTableSummary = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitRoutesTableSummary
|
204
|
+
TopologyAssociation = Azure::Network::Mgmt::V2018_12_01::Models::TopologyAssociation
|
205
|
+
ExpressRouteCircuitListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitListResult
|
206
|
+
TopologyResource = Azure::Network::Mgmt::V2018_12_01::Models::TopologyResource
|
207
|
+
VirtualWanSecurityProvider = Azure::Network::Mgmt::V2018_12_01::Models::VirtualWanSecurityProvider
|
208
|
+
Topology = Azure::Network::Mgmt::V2018_12_01::Models::Topology
|
209
|
+
NetworkInterfaceDnsSettings = Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceDnsSettings
|
210
|
+
VerificationIPFlowParameters = Azure::Network::Mgmt::V2018_12_01::Models::VerificationIPFlowParameters
|
211
|
+
VpnClientIPsecParameters = Azure::Network::Mgmt::V2018_12_01::Models::VpnClientIPsecParameters
|
212
|
+
VerificationIPFlowResult = Azure::Network::Mgmt::V2018_12_01::Models::VerificationIPFlowResult
|
213
|
+
PublicIPAddressSku = Azure::Network::Mgmt::V2018_12_01::Models::PublicIPAddressSku
|
214
|
+
NextHopParameters = Azure::Network::Mgmt::V2018_12_01::Models::NextHopParameters
|
215
|
+
VirtualNetworkGatewayConnectionListResult = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnectionListResult
|
216
|
+
NextHopResult = Azure::Network::Mgmt::V2018_12_01::Models::NextHopResult
|
217
|
+
GatewayRouteListResult = Azure::Network::Mgmt::V2018_12_01::Models::GatewayRouteListResult
|
218
|
+
SecurityGroupViewParameters = Azure::Network::Mgmt::V2018_12_01::Models::SecurityGroupViewParameters
|
219
|
+
ListVpnSitesResult = Azure::Network::Mgmt::V2018_12_01::Models::ListVpnSitesResult
|
220
|
+
NetworkInterfaceAssociation = Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceAssociation
|
221
|
+
ApplicationGatewayBackendAddress = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendAddress
|
222
|
+
SubnetAssociation = Azure::Network::Mgmt::V2018_12_01::Models::SubnetAssociation
|
223
|
+
ApplicationGatewayBackendHealthServer = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHealthServer
|
224
|
+
SecurityRuleAssociations = Azure::Network::Mgmt::V2018_12_01::Models::SecurityRuleAssociations
|
225
|
+
ApplicationGatewaySku = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySku
|
226
|
+
SecurityGroupNetworkInterface = Azure::Network::Mgmt::V2018_12_01::Models::SecurityGroupNetworkInterface
|
227
|
+
VirtualNetworkGatewaySku = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewaySku
|
228
|
+
SecurityGroupViewResult = Azure::Network::Mgmt::V2018_12_01::Models::SecurityGroupViewResult
|
229
|
+
ApplicationGatewayCustomError = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayCustomError
|
230
|
+
PacketCaptureStorageLocation = Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureStorageLocation
|
231
|
+
VirtualNetworkUsage = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkUsage
|
232
|
+
PacketCaptureFilter = Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureFilter
|
233
|
+
ApplicationGatewayRewriteRuleActionSet = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRewriteRuleActionSet
|
234
|
+
PacketCaptureParameters = Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureParameters
|
235
|
+
ListVpnGatewaysResult = Azure::Network::Mgmt::V2018_12_01::Models::ListVpnGatewaysResult
|
236
|
+
PacketCapture = Azure::Network::Mgmt::V2018_12_01::Models::PacketCapture
|
237
|
+
ApplicationGatewayAutoscaleConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayAutoscaleConfiguration
|
238
|
+
PacketCaptureResult = Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureResult
|
239
|
+
ApplicationGatewayFirewallRule = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallRule
|
240
|
+
PacketCaptureListResult = Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureListResult
|
241
|
+
SubnetListResult = Azure::Network::Mgmt::V2018_12_01::Models::SubnetListResult
|
242
|
+
PacketCaptureQueryStatusResult = Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureQueryStatusResult
|
243
|
+
ErrorDetails = Azure::Network::Mgmt::V2018_12_01::Models::ErrorDetails
|
244
|
+
TroubleshootingParameters = Azure::Network::Mgmt::V2018_12_01::Models::TroubleshootingParameters
|
245
|
+
AvailableDelegation = Azure::Network::Mgmt::V2018_12_01::Models::AvailableDelegation
|
246
|
+
QueryTroubleshootingParameters = Azure::Network::Mgmt::V2018_12_01::Models::QueryTroubleshootingParameters
|
247
|
+
AzureFirewallApplicationRuleProtocol = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallApplicationRuleProtocol
|
248
|
+
TroubleshootingRecommendedActions = Azure::Network::Mgmt::V2018_12_01::Models::TroubleshootingRecommendedActions
|
249
|
+
AzureFirewallNatRule = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNatRule
|
250
|
+
TroubleshootingDetails = Azure::Network::Mgmt::V2018_12_01::Models::TroubleshootingDetails
|
251
|
+
ServiceEndpointPolicyListResult = Azure::Network::Mgmt::V2018_12_01::Models::ServiceEndpointPolicyListResult
|
252
|
+
TroubleshootingResult = Azure::Network::Mgmt::V2018_12_01::Models::TroubleshootingResult
|
253
|
+
DnsNameAvailabilityResult = Azure::Network::Mgmt::V2018_12_01::Models::DnsNameAvailabilityResult
|
254
|
+
RetentionPolicyParameters = Azure::Network::Mgmt::V2018_12_01::Models::RetentionPolicyParameters
|
255
|
+
DdosProtectionPlan = Azure::Network::Mgmt::V2018_12_01::Models::DdosProtectionPlan
|
256
|
+
FlowLogFormatParameters = Azure::Network::Mgmt::V2018_12_01::Models::FlowLogFormatParameters
|
257
|
+
BGPCommunity = Azure::Network::Mgmt::V2018_12_01::Models::BGPCommunity
|
258
|
+
FlowLogStatusParameters = Azure::Network::Mgmt::V2018_12_01::Models::FlowLogStatusParameters
|
259
|
+
ExpressRouteCircuitStats = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitStats
|
260
|
+
TrafficAnalyticsConfigurationProperties = Azure::Network::Mgmt::V2018_12_01::Models::TrafficAnalyticsConfigurationProperties
|
261
|
+
RouteFilterListResult = Azure::Network::Mgmt::V2018_12_01::Models::RouteFilterListResult
|
262
|
+
TrafficAnalyticsProperties = Azure::Network::Mgmt::V2018_12_01::Models::TrafficAnalyticsProperties
|
263
|
+
ExpressRouteCircuitSku = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitSku
|
264
|
+
FlowLogInformation = Azure::Network::Mgmt::V2018_12_01::Models::FlowLogInformation
|
265
|
+
ExpressRouteCircuitsArpTableListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitsArpTableListResult
|
266
|
+
ConnectivitySource = Azure::Network::Mgmt::V2018_12_01::Models::ConnectivitySource
|
267
|
+
ExpressRouteCircuitsRoutesTableSummaryListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitsRoutesTableSummaryListResult
|
268
|
+
ConnectivityDestination = Azure::Network::Mgmt::V2018_12_01::Models::ConnectivityDestination
|
269
|
+
EndpointService = Azure::Network::Mgmt::V2018_12_01::Models::EndpointService
|
270
|
+
HTTPHeader = Azure::Network::Mgmt::V2018_12_01::Models::HTTPHeader
|
271
|
+
VirtualNetworkTapListResult = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkTapListResult
|
272
|
+
HTTPConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::HTTPConfiguration
|
273
|
+
DeviceProperties = Azure::Network::Mgmt::V2018_12_01::Models::DeviceProperties
|
274
|
+
ProtocolConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::ProtocolConfiguration
|
275
|
+
BgpPeerStatus = Azure::Network::Mgmt::V2018_12_01::Models::BgpPeerStatus
|
276
|
+
ConnectivityParameters = Azure::Network::Mgmt::V2018_12_01::Models::ConnectivityParameters
|
277
|
+
ApplicationGatewayBackendHealthPool = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHealthPool
|
278
|
+
ConnectivityIssue = Azure::Network::Mgmt::V2018_12_01::Models::ConnectivityIssue
|
279
|
+
PrepareNetworkPoliciesRequest = Azure::Network::Mgmt::V2018_12_01::Models::PrepareNetworkPoliciesRequest
|
280
|
+
ConnectivityHop = Azure::Network::Mgmt::V2018_12_01::Models::ConnectivityHop
|
281
|
+
ApplicationGatewayRewriteRuleCondition = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRewriteRuleCondition
|
282
|
+
ConnectivityInformation = Azure::Network::Mgmt::V2018_12_01::Models::ConnectivityInformation
|
283
|
+
ApplicationGatewayFirewallExclusion = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallExclusion
|
284
|
+
AzureReachabilityReportLocation = Azure::Network::Mgmt::V2018_12_01::Models::AzureReachabilityReportLocation
|
285
|
+
VirtualNetworkPeeringListResult = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkPeeringListResult
|
286
|
+
AzureReachabilityReportParameters = Azure::Network::Mgmt::V2018_12_01::Models::AzureReachabilityReportParameters
|
287
|
+
TagsObject = Azure::Network::Mgmt::V2018_12_01::Models::TagsObject
|
288
|
+
AzureReachabilityReportLatencyInfo = Azure::Network::Mgmt::V2018_12_01::Models::AzureReachabilityReportLatencyInfo
|
289
|
+
UsagesListResult = Azure::Network::Mgmt::V2018_12_01::Models::UsagesListResult
|
290
|
+
AzureReachabilityReportItem = Azure::Network::Mgmt::V2018_12_01::Models::AzureReachabilityReportItem
|
291
|
+
ServiceEndpointPolicyDefinitionListResult = Azure::Network::Mgmt::V2018_12_01::Models::ServiceEndpointPolicyDefinitionListResult
|
292
|
+
AzureReachabilityReport = Azure::Network::Mgmt::V2018_12_01::Models::AzureReachabilityReport
|
293
|
+
ListHubVirtualNetworkConnectionsResult = Azure::Network::Mgmt::V2018_12_01::Models::ListHubVirtualNetworkConnectionsResult
|
294
|
+
AvailableProvidersListParameters = Azure::Network::Mgmt::V2018_12_01::Models::AvailableProvidersListParameters
|
295
|
+
RouteTableListResult = Azure::Network::Mgmt::V2018_12_01::Models::RouteTableListResult
|
296
|
+
AvailableProvidersListCity = Azure::Network::Mgmt::V2018_12_01::Models::AvailableProvidersListCity
|
297
|
+
VpnSiteId = Azure::Network::Mgmt::V2018_12_01::Models::VpnSiteId
|
298
|
+
AvailableProvidersListState = Azure::Network::Mgmt::V2018_12_01::Models::AvailableProvidersListState
|
299
|
+
ExpressRouteServiceProviderBandwidthsOffered = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteServiceProviderBandwidthsOffered
|
300
|
+
AvailableProvidersListCountry = Azure::Network::Mgmt::V2018_12_01::Models::AvailableProvidersListCountry
|
301
|
+
DdosSettings = Azure::Network::Mgmt::V2018_12_01::Models::DdosSettings
|
302
|
+
AvailableProvidersList = Azure::Network::Mgmt::V2018_12_01::Models::AvailableProvidersList
|
303
|
+
ApplicationGatewayConnectionDraining = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayConnectionDraining
|
304
|
+
ConnectionMonitorSource = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorSource
|
305
|
+
VirtualNetworkListUsageResult = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkListUsageResult
|
306
|
+
ConnectionMonitorDestination = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorDestination
|
307
|
+
ManagedServiceIdentity = Azure::Network::Mgmt::V2018_12_01::Models::ManagedServiceIdentity
|
308
|
+
ConnectionMonitorParameters = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorParameters
|
309
|
+
AddressSpace = Azure::Network::Mgmt::V2018_12_01::Models::AddressSpace
|
310
|
+
ConnectionMonitor = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitor
|
311
|
+
ConnectionMonitorResult = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorResult
|
312
|
+
ExpressRouteCircuitPeeringListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeeringListResult
|
313
|
+
ConnectionMonitorListResult = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorListResult
|
314
|
+
VirtualNetworkConnectionGatewayReference = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkConnectionGatewayReference
|
315
|
+
ConnectionStateSnapshot = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionStateSnapshot
|
316
|
+
GetVpnSitesConfigurationRequest = Azure::Network::Mgmt::V2018_12_01::Models::GetVpnSitesConfigurationRequest
|
317
|
+
ConnectionMonitorQueryResult = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorQueryResult
|
318
|
+
ApplicationGatewayAvailableSslPredefinedPolicies = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayAvailableSslPredefinedPolicies
|
319
|
+
NetworkConfigurationDiagnosticProfile = Azure::Network::Mgmt::V2018_12_01::Models::NetworkConfigurationDiagnosticProfile
|
320
|
+
ExpressRouteCircuitPeeringConfig = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeeringConfig
|
321
|
+
NetworkConfigurationDiagnosticParameters = Azure::Network::Mgmt::V2018_12_01::Models::NetworkConfigurationDiagnosticParameters
|
322
|
+
VirtualNetworkGatewayListResult = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayListResult
|
323
|
+
MatchedRule = Azure::Network::Mgmt::V2018_12_01::Models::MatchedRule
|
324
|
+
AzureFirewallNetworkRule = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNetworkRule
|
325
|
+
NetworkSecurityRulesEvaluationResult = Azure::Network::Mgmt::V2018_12_01::Models::NetworkSecurityRulesEvaluationResult
|
326
|
+
IPAddressAvailabilityResult = Azure::Network::Mgmt::V2018_12_01::Models::IPAddressAvailabilityResult
|
327
|
+
EvaluatedNetworkSecurityGroup = Azure::Network::Mgmt::V2018_12_01::Models::EvaluatedNetworkSecurityGroup
|
328
|
+
ExpressRouteCircuitsRoutesTableListResult = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitsRoutesTableListResult
|
329
|
+
NetworkSecurityGroupResult = Azure::Network::Mgmt::V2018_12_01::Models::NetworkSecurityGroupResult
|
330
|
+
NetworkInterfaceTapConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceTapConfiguration
|
331
|
+
ApplicationSecurityGroup = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationSecurityGroup
|
332
|
+
SecurityRule = Azure::Network::Mgmt::V2018_12_01::Models::SecurityRule
|
333
|
+
InterfaceEndpoint = Azure::Network::Mgmt::V2018_12_01::Models::InterfaceEndpoint
|
334
|
+
NetworkInterface = Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterface
|
335
|
+
NetworkSecurityGroup = Azure::Network::Mgmt::V2018_12_01::Models::NetworkSecurityGroup
|
336
|
+
Route = Azure::Network::Mgmt::V2018_12_01::Models::Route
|
337
|
+
RouteTable = Azure::Network::Mgmt::V2018_12_01::Models::RouteTable
|
338
|
+
ServiceEndpointPolicyDefinition = Azure::Network::Mgmt::V2018_12_01::Models::ServiceEndpointPolicyDefinition
|
339
|
+
ServiceEndpointPolicy = Azure::Network::Mgmt::V2018_12_01::Models::ServiceEndpointPolicy
|
340
|
+
PublicIPAddress = Azure::Network::Mgmt::V2018_12_01::Models::PublicIPAddress
|
341
|
+
IPConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::IPConfiguration
|
342
|
+
IPConfigurationProfile = Azure::Network::Mgmt::V2018_12_01::Models::IPConfigurationProfile
|
343
|
+
ResourceNavigationLink = Azure::Network::Mgmt::V2018_12_01::Models::ResourceNavigationLink
|
344
|
+
ServiceAssociationLink = Azure::Network::Mgmt::V2018_12_01::Models::ServiceAssociationLink
|
345
|
+
Delegation = Azure::Network::Mgmt::V2018_12_01::Models::Delegation
|
346
|
+
Subnet = Azure::Network::Mgmt::V2018_12_01::Models::Subnet
|
347
|
+
FrontendIPConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::FrontendIPConfiguration
|
348
|
+
VirtualNetworkTap = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkTap
|
349
|
+
BackendAddressPool = Azure::Network::Mgmt::V2018_12_01::Models::BackendAddressPool
|
350
|
+
InboundNatRule = Azure::Network::Mgmt::V2018_12_01::Models::InboundNatRule
|
351
|
+
NetworkInterfaceIPConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceIPConfiguration
|
352
|
+
ApplicationGatewayBackendAddressPool = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendAddressPool
|
353
|
+
ApplicationGatewayBackendHttpSettings = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHttpSettings
|
354
|
+
ApplicationGatewayIPConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayIPConfiguration
|
355
|
+
ApplicationGatewayAuthenticationCertificate = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayAuthenticationCertificate
|
356
|
+
ApplicationGatewayTrustedRootCertificate = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayTrustedRootCertificate
|
357
|
+
ApplicationGatewaySslCertificate = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslCertificate
|
358
|
+
ApplicationGatewayFrontendIPConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFrontendIPConfiguration
|
359
|
+
ApplicationGatewayFrontendPort = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFrontendPort
|
360
|
+
ApplicationGatewayHttpListener = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayHttpListener
|
361
|
+
ApplicationGatewayPathRule = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayPathRule
|
362
|
+
ApplicationGatewayProbe = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayProbe
|
363
|
+
ApplicationGatewayRequestRoutingRule = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRequestRoutingRule
|
364
|
+
ApplicationGatewayRewriteRuleSet = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRewriteRuleSet
|
365
|
+
ApplicationGatewayRedirectConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRedirectConfiguration
|
366
|
+
ApplicationGatewayUrlPathMap = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayUrlPathMap
|
367
|
+
ApplicationGateway = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGateway
|
368
|
+
ApplicationGatewayFirewallRuleSet = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallRuleSet
|
369
|
+
ApplicationGatewayAvailableSslOptions = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayAvailableSslOptions
|
370
|
+
ApplicationGatewaySslPredefinedPolicy = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslPredefinedPolicy
|
371
|
+
AzureFirewallIPConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallIPConfiguration
|
372
|
+
AzureFirewallApplicationRuleCollection = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallApplicationRuleCollection
|
373
|
+
AzureFirewallNatRuleCollection = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNatRuleCollection
|
374
|
+
AzureFirewallNetworkRuleCollection = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNetworkRuleCollection
|
375
|
+
AzureFirewall = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewall
|
376
|
+
AzureFirewallFqdnTag = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallFqdnTag
|
377
|
+
DdosCustomPolicy = Azure::Network::Mgmt::V2018_12_01::Models::DdosCustomPolicy
|
378
|
+
EndpointServiceResult = Azure::Network::Mgmt::V2018_12_01::Models::EndpointServiceResult
|
379
|
+
ExpressRouteCircuitAuthorization = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitAuthorization
|
380
|
+
RouteFilterRule = Azure::Network::Mgmt::V2018_12_01::Models::RouteFilterRule
|
381
|
+
ExpressRouteCircuitConnection = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitConnection
|
382
|
+
ExpressRouteCircuitPeering = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeering
|
383
|
+
RouteFilter = Azure::Network::Mgmt::V2018_12_01::Models::RouteFilter
|
384
|
+
ExpressRouteCircuit = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuit
|
385
|
+
ExpressRouteServiceProvider = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteServiceProvider
|
386
|
+
ExpressRouteCrossConnectionPeering = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnectionPeering
|
387
|
+
ExpressRouteCrossConnection = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnection
|
388
|
+
ExpressRouteConnection = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteConnection
|
389
|
+
ExpressRouteGateway = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteGateway
|
390
|
+
ExpressRoutePortsLocation = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePortsLocation
|
391
|
+
ExpressRouteLink = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteLink
|
392
|
+
ExpressRoutePort = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePort
|
393
|
+
LoadBalancingRule = Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancingRule
|
394
|
+
Probe = Azure::Network::Mgmt::V2018_12_01::Models::Probe
|
395
|
+
InboundNatPool = Azure::Network::Mgmt::V2018_12_01::Models::InboundNatPool
|
396
|
+
OutboundRule = Azure::Network::Mgmt::V2018_12_01::Models::OutboundRule
|
397
|
+
LoadBalancer = Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancer
|
398
|
+
ContainerNetworkInterfaceConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::ContainerNetworkInterfaceConfiguration
|
399
|
+
Container = Azure::Network::Mgmt::V2018_12_01::Models::Container
|
400
|
+
ContainerNetworkInterface = Azure::Network::Mgmt::V2018_12_01::Models::ContainerNetworkInterface
|
401
|
+
NetworkProfile = Azure::Network::Mgmt::V2018_12_01::Models::NetworkProfile
|
402
|
+
NetworkWatcher = Azure::Network::Mgmt::V2018_12_01::Models::NetworkWatcher
|
403
|
+
PublicIPPrefix = Azure::Network::Mgmt::V2018_12_01::Models::PublicIPPrefix
|
404
|
+
PatchRouteFilterRule = Azure::Network::Mgmt::V2018_12_01::Models::PatchRouteFilterRule
|
405
|
+
PatchRouteFilter = Azure::Network::Mgmt::V2018_12_01::Models::PatchRouteFilter
|
406
|
+
BgpServiceCommunity = Azure::Network::Mgmt::V2018_12_01::Models::BgpServiceCommunity
|
407
|
+
VirtualNetworkPeering = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkPeering
|
408
|
+
VirtualNetwork = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetwork
|
409
|
+
NetworkIntentPolicy = Azure::Network::Mgmt::V2018_12_01::Models::NetworkIntentPolicy
|
410
|
+
VirtualNetworkGatewayIPConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayIPConfiguration
|
411
|
+
VpnClientRootCertificate = Azure::Network::Mgmt::V2018_12_01::Models::VpnClientRootCertificate
|
412
|
+
VpnClientRevokedCertificate = Azure::Network::Mgmt::V2018_12_01::Models::VpnClientRevokedCertificate
|
413
|
+
VirtualNetworkGateway = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGateway
|
414
|
+
LocalNetworkGateway = Azure::Network::Mgmt::V2018_12_01::Models::LocalNetworkGateway
|
415
|
+
VirtualNetworkGatewayConnection = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnection
|
416
|
+
ConnectionSharedKey = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionSharedKey
|
417
|
+
VirtualNetworkGatewayConnectionListEntity = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnectionListEntity
|
418
|
+
P2SVpnServerConfigVpnClientRootCertificate = Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnServerConfigVpnClientRootCertificate
|
419
|
+
P2SVpnServerConfigVpnClientRevokedCertificate = Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnServerConfigVpnClientRevokedCertificate
|
420
|
+
P2SVpnServerConfigRadiusServerRootCertificate = Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnServerConfigRadiusServerRootCertificate
|
421
|
+
P2SVpnServerConfigRadiusClientRootCertificate = Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnServerConfigRadiusClientRootCertificate
|
422
|
+
P2SVpnServerConfiguration = Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnServerConfiguration
|
423
|
+
VirtualWAN = Azure::Network::Mgmt::V2018_12_01::Models::VirtualWAN
|
424
|
+
VpnSite = Azure::Network::Mgmt::V2018_12_01::Models::VpnSite
|
425
|
+
HubVirtualNetworkConnection = Azure::Network::Mgmt::V2018_12_01::Models::HubVirtualNetworkConnection
|
426
|
+
VirtualHub = Azure::Network::Mgmt::V2018_12_01::Models::VirtualHub
|
427
|
+
VpnConnection = Azure::Network::Mgmt::V2018_12_01::Models::VpnConnection
|
428
|
+
VpnGateway = Azure::Network::Mgmt::V2018_12_01::Models::VpnGateway
|
429
|
+
P2SVpnGateway = Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnGateway
|
430
|
+
IPAllocationMethod = Azure::Network::Mgmt::V2018_12_01::Models::IPAllocationMethod
|
431
|
+
SecurityRuleProtocol = Azure::Network::Mgmt::V2018_12_01::Models::SecurityRuleProtocol
|
432
|
+
SecurityRuleAccess = Azure::Network::Mgmt::V2018_12_01::Models::SecurityRuleAccess
|
433
|
+
SecurityRuleDirection = Azure::Network::Mgmt::V2018_12_01::Models::SecurityRuleDirection
|
434
|
+
RouteNextHopType = Azure::Network::Mgmt::V2018_12_01::Models::RouteNextHopType
|
435
|
+
PublicIPAddressSkuName = Azure::Network::Mgmt::V2018_12_01::Models::PublicIPAddressSkuName
|
436
|
+
IPVersion = Azure::Network::Mgmt::V2018_12_01::Models::IPVersion
|
437
|
+
TransportProtocol = Azure::Network::Mgmt::V2018_12_01::Models::TransportProtocol
|
438
|
+
ApplicationGatewayProtocol = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayProtocol
|
439
|
+
ApplicationGatewayCookieBasedAffinity = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayCookieBasedAffinity
|
440
|
+
ApplicationGatewayBackendHealthServerHealth = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHealthServerHealth
|
441
|
+
ApplicationGatewaySkuName = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySkuName
|
442
|
+
ApplicationGatewayTier = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayTier
|
443
|
+
ApplicationGatewaySslProtocol = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslProtocol
|
444
|
+
ApplicationGatewaySslPolicyType = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslPolicyType
|
445
|
+
ApplicationGatewaySslPolicyName = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslPolicyName
|
446
|
+
ApplicationGatewaySslCipherSuite = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslCipherSuite
|
447
|
+
ApplicationGatewayCustomErrorStatusCode = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayCustomErrorStatusCode
|
448
|
+
ApplicationGatewayRequestRoutingRuleType = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRequestRoutingRuleType
|
449
|
+
ApplicationGatewayRedirectType = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRedirectType
|
450
|
+
ApplicationGatewayOperationalState = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayOperationalState
|
451
|
+
ApplicationGatewayFirewallMode = Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallMode
|
452
|
+
ResourceIdentityType = Azure::Network::Mgmt::V2018_12_01::Models::ResourceIdentityType
|
453
|
+
ProvisioningState = Azure::Network::Mgmt::V2018_12_01::Models::ProvisioningState
|
454
|
+
AzureFirewallRCActionType = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallRCActionType
|
455
|
+
AzureFirewallApplicationRuleProtocolType = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallApplicationRuleProtocolType
|
456
|
+
AzureFirewallNatRCActionType = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNatRCActionType
|
457
|
+
AzureFirewallNetworkRuleProtocol = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNetworkRuleProtocol
|
458
|
+
AzureFirewallThreatIntelMode = Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallThreatIntelMode
|
459
|
+
DdosCustomPolicyProtocol = Azure::Network::Mgmt::V2018_12_01::Models::DdosCustomPolicyProtocol
|
460
|
+
DdosCustomPolicyTriggerSensitivityOverride = Azure::Network::Mgmt::V2018_12_01::Models::DdosCustomPolicyTriggerSensitivityOverride
|
461
|
+
AuthorizationUseStatus = Azure::Network::Mgmt::V2018_12_01::Models::AuthorizationUseStatus
|
462
|
+
ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeeringAdvertisedPublicPrefixState
|
463
|
+
Access = Azure::Network::Mgmt::V2018_12_01::Models::Access
|
464
|
+
ExpressRoutePeeringType = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePeeringType
|
465
|
+
ExpressRoutePeeringState = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePeeringState
|
466
|
+
CircuitConnectionStatus = Azure::Network::Mgmt::V2018_12_01::Models::CircuitConnectionStatus
|
467
|
+
ExpressRouteCircuitPeeringState = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeeringState
|
468
|
+
ExpressRouteCircuitSkuTier = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitSkuTier
|
469
|
+
ExpressRouteCircuitSkuFamily = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitSkuFamily
|
470
|
+
ServiceProviderProvisioningState = Azure::Network::Mgmt::V2018_12_01::Models::ServiceProviderProvisioningState
|
471
|
+
ExpressRouteLinkConnectorType = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteLinkConnectorType
|
472
|
+
ExpressRouteLinkAdminState = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteLinkAdminState
|
473
|
+
ExpressRoutePortsEncapsulation = Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePortsEncapsulation
|
474
|
+
LoadBalancerSkuName = Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerSkuName
|
475
|
+
LoadDistribution = Azure::Network::Mgmt::V2018_12_01::Models::LoadDistribution
|
476
|
+
ProbeProtocol = Azure::Network::Mgmt::V2018_12_01::Models::ProbeProtocol
|
477
|
+
NetworkOperationStatus = Azure::Network::Mgmt::V2018_12_01::Models::NetworkOperationStatus
|
478
|
+
EffectiveSecurityRuleProtocol = Azure::Network::Mgmt::V2018_12_01::Models::EffectiveSecurityRuleProtocol
|
479
|
+
EffectiveRouteSource = Azure::Network::Mgmt::V2018_12_01::Models::EffectiveRouteSource
|
480
|
+
EffectiveRouteState = Azure::Network::Mgmt::V2018_12_01::Models::EffectiveRouteState
|
481
|
+
AssociationType = Azure::Network::Mgmt::V2018_12_01::Models::AssociationType
|
482
|
+
Direction = Azure::Network::Mgmt::V2018_12_01::Models::Direction
|
483
|
+
IpFlowProtocol = Azure::Network::Mgmt::V2018_12_01::Models::IpFlowProtocol
|
484
|
+
NextHopType = Azure::Network::Mgmt::V2018_12_01::Models::NextHopType
|
485
|
+
PcProtocol = Azure::Network::Mgmt::V2018_12_01::Models::PcProtocol
|
486
|
+
PcStatus = Azure::Network::Mgmt::V2018_12_01::Models::PcStatus
|
487
|
+
PcError = Azure::Network::Mgmt::V2018_12_01::Models::PcError
|
488
|
+
FlowLogFormatType = Azure::Network::Mgmt::V2018_12_01::Models::FlowLogFormatType
|
489
|
+
Protocol = Azure::Network::Mgmt::V2018_12_01::Models::Protocol
|
490
|
+
HTTPMethod = Azure::Network::Mgmt::V2018_12_01::Models::HTTPMethod
|
491
|
+
Origin = Azure::Network::Mgmt::V2018_12_01::Models::Origin
|
492
|
+
Severity = Azure::Network::Mgmt::V2018_12_01::Models::Severity
|
493
|
+
IssueType = Azure::Network::Mgmt::V2018_12_01::Models::IssueType
|
494
|
+
ConnectionStatus = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionStatus
|
495
|
+
ConnectionMonitorSourceStatus = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorSourceStatus
|
496
|
+
ConnectionState = Azure::Network::Mgmt::V2018_12_01::Models::ConnectionState
|
497
|
+
EvaluationState = Azure::Network::Mgmt::V2018_12_01::Models::EvaluationState
|
498
|
+
VerbosityLevel = Azure::Network::Mgmt::V2018_12_01::Models::VerbosityLevel
|
499
|
+
PublicIPPrefixSkuName = Azure::Network::Mgmt::V2018_12_01::Models::PublicIPPrefixSkuName
|
500
|
+
VirtualNetworkPeeringState = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkPeeringState
|
501
|
+
VirtualNetworkGatewayType = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayType
|
502
|
+
VpnType = Azure::Network::Mgmt::V2018_12_01::Models::VpnType
|
503
|
+
VirtualNetworkGatewaySkuName = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewaySkuName
|
504
|
+
VirtualNetworkGatewaySkuTier = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewaySkuTier
|
505
|
+
VpnClientProtocol = Azure::Network::Mgmt::V2018_12_01::Models::VpnClientProtocol
|
506
|
+
IpsecEncryption = Azure::Network::Mgmt::V2018_12_01::Models::IpsecEncryption
|
507
|
+
IpsecIntegrity = Azure::Network::Mgmt::V2018_12_01::Models::IpsecIntegrity
|
508
|
+
IkeEncryption = Azure::Network::Mgmt::V2018_12_01::Models::IkeEncryption
|
509
|
+
IkeIntegrity = Azure::Network::Mgmt::V2018_12_01::Models::IkeIntegrity
|
510
|
+
DhGroup = Azure::Network::Mgmt::V2018_12_01::Models::DhGroup
|
511
|
+
PfsGroup = Azure::Network::Mgmt::V2018_12_01::Models::PfsGroup
|
512
|
+
BgpPeerState = Azure::Network::Mgmt::V2018_12_01::Models::BgpPeerState
|
513
|
+
ProcessorArchitecture = Azure::Network::Mgmt::V2018_12_01::Models::ProcessorArchitecture
|
514
|
+
AuthenticationMethod = Azure::Network::Mgmt::V2018_12_01::Models::AuthenticationMethod
|
515
|
+
VirtualNetworkGatewayConnectionStatus = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnectionStatus
|
516
|
+
VirtualNetworkGatewayConnectionType = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnectionType
|
517
|
+
VirtualNetworkGatewayConnectionProtocol = Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnectionProtocol
|
518
|
+
OfficeTrafficCategory = Azure::Network::Mgmt::V2018_12_01::Models::OfficeTrafficCategory
|
519
|
+
VpnGatewayTunnelingProtocol = Azure::Network::Mgmt::V2018_12_01::Models::VpnGatewayTunnelingProtocol
|
520
|
+
VpnConnectionStatus = Azure::Network::Mgmt::V2018_12_01::Models::VpnConnectionStatus
|
521
|
+
VirtualWanSecurityProviderType = Azure::Network::Mgmt::V2018_12_01::Models::VirtualWanSecurityProviderType
|
522
|
+
TunnelConnectionStatus = Azure::Network::Mgmt::V2018_12_01::Models::TunnelConnectionStatus
|
523
|
+
HubVirtualNetworkConnectionStatus = Azure::Network::Mgmt::V2018_12_01::Models::HubVirtualNetworkConnectionStatus
|
522
524
|
end
|
523
525
|
|
524
526
|
class NetworkManagementClass
|
@@ -533,7 +535,7 @@ module Azure::Profiles::Latest
|
|
533
535
|
end
|
534
536
|
add_telemetry(@client_0)
|
535
537
|
|
536
|
-
@client_1 = Azure::Network::Mgmt::
|
538
|
+
@client_1 = Azure::Network::Mgmt::V2018_12_01::NetworkManagementClient.new(configurable.credentials, base_url, options)
|
537
539
|
if(@client_1.respond_to?(:subscription_id))
|
538
540
|
@client_1.subscription_id = configurable.subscription_id
|
539
541
|
end
|
@@ -626,1331 +628,1337 @@ module Azure::Profiles::Latest
|
|
626
628
|
end
|
627
629
|
|
628
630
|
class ModelClasses
|
629
|
-
def
|
630
|
-
Azure::Network::Mgmt::
|
631
|
+
def effective_route_list_result
|
632
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EffectiveRouteListResult
|
631
633
|
end
|
632
|
-
def
|
633
|
-
Azure::Network::Mgmt::
|
634
|
+
def load_balancer_backend_address_pool_list_result
|
635
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerBackendAddressPoolListResult
|
634
636
|
end
|
635
637
|
def sub_resource
|
636
|
-
Azure::Network::Mgmt::
|
637
|
-
end
|
638
|
-
def express_route_circuit_list_result
|
639
|
-
Azure::Network::Mgmt::V2018_11_01::Models::ExpressRouteCircuitListResult
|
640
|
-
end
|
641
|
-
def p2_svpn_profile_parameters
|
642
|
-
Azure::Network::Mgmt::V2018_11_01::Models::P2SVpnProfileParameters
|
643
|
-
end
|
644
|
-
def express_route_service_provider_bandwidths_offered
|
645
|
-
Azure::Network::Mgmt::V2018_11_01::Models::ExpressRouteServiceProviderBandwidthsOffered
|
638
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SubResource
|
646
639
|
end
|
647
|
-
def
|
648
|
-
Azure::Network::Mgmt::
|
649
|
-
end
|
650
|
-
def route_table_list_result
|
651
|
-
Azure::Network::Mgmt::V2018_11_01::Models::RouteTableListResult
|
652
|
-
end
|
653
|
-
def vpn_client_connection_health
|
654
|
-
Azure::Network::Mgmt::V2018_11_01::Models::VpnClientConnectionHealth
|
640
|
+
def load_balancer_frontend_ipconfiguration_list_result
|
641
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerFrontendIPConfigurationListResult
|
655
642
|
end
|
656
643
|
def express_route_service_provider_list_result
|
657
|
-
Azure::Network::Mgmt::
|
658
|
-
end
|
659
|
-
def virtual_wan_security_providers
|
660
|
-
Azure::Network::Mgmt::V2018_11_01::Models::VirtualWanSecurityProviders
|
644
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteServiceProviderListResult
|
661
645
|
end
|
662
646
|
def express_route_cross_connection_routes_table_summary
|
663
|
-
Azure::Network::Mgmt::
|
647
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnectionRoutesTableSummary
|
664
648
|
end
|
665
|
-
def
|
666
|
-
Azure::Network::Mgmt::
|
649
|
+
def virtual_network_gateway_list_connections_result
|
650
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayListConnectionsResult
|
667
651
|
end
|
668
652
|
def express_route_cross_connections_routes_table_summary_list_result
|
669
|
-
Azure::Network::Mgmt::
|
653
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnectionsRoutesTableSummaryListResult
|
670
654
|
end
|
671
|
-
def
|
672
|
-
Azure::Network::Mgmt::
|
655
|
+
def vpn_device_script_parameters
|
656
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnDeviceScriptParameters
|
673
657
|
end
|
674
658
|
def express_route_circuit_reference
|
675
|
-
Azure::Network::Mgmt::
|
659
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitReference
|
676
660
|
end
|
677
|
-
def
|
678
|
-
Azure::Network::Mgmt::
|
661
|
+
def local_network_gateway_list_result
|
662
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LocalNetworkGatewayListResult
|
679
663
|
end
|
680
|
-
def
|
681
|
-
Azure::Network::Mgmt::
|
664
|
+
def public_ipprefix_list_result
|
665
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PublicIPPrefixListResult
|
682
666
|
end
|
683
|
-
def
|
684
|
-
Azure::Network::Mgmt::
|
667
|
+
def service_endpoint_properties_format
|
668
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ServiceEndpointPropertiesFormat
|
685
669
|
end
|
686
|
-
def
|
687
|
-
Azure::Network::Mgmt::
|
670
|
+
def virtual_wan_security_providers
|
671
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualWanSecurityProviders
|
688
672
|
end
|
689
|
-
def
|
690
|
-
Azure::Network::Mgmt::
|
673
|
+
def connection_reset_shared_key
|
674
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionResetSharedKey
|
691
675
|
end
|
692
676
|
def express_route_cross_connection_list_result
|
693
|
-
Azure::Network::Mgmt::
|
677
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnectionListResult
|
694
678
|
end
|
695
|
-
def
|
696
|
-
Azure::Network::Mgmt::
|
679
|
+
def public_ipaddress_dns_settings
|
680
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PublicIPAddressDnsSettings
|
697
681
|
end
|
698
682
|
def express_route_cross_connection_peering_list
|
699
|
-
Azure::Network::Mgmt::
|
683
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnectionPeeringList
|
700
684
|
end
|
701
|
-
def
|
702
|
-
Azure::Network::Mgmt::
|
685
|
+
def ip_tag
|
686
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IpTag
|
703
687
|
end
|
704
688
|
def virtual_hub_id
|
705
|
-
Azure::Network::Mgmt::
|
689
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualHubId
|
706
690
|
end
|
707
|
-
def
|
708
|
-
Azure::Network::Mgmt::
|
691
|
+
def list_virtual_wans_result
|
692
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ListVirtualWANsResult
|
709
693
|
end
|
710
694
|
def express_route_circuit_peering_id
|
711
|
-
Azure::Network::Mgmt::
|
695
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeeringId
|
712
696
|
end
|
713
|
-
def
|
714
|
-
Azure::Network::Mgmt::
|
697
|
+
def tunnel_connection_health
|
698
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TunnelConnectionHealth
|
715
699
|
end
|
716
700
|
def express_route_gateway_properties_auto_scale_configuration_bounds
|
717
|
-
Azure::Network::Mgmt::
|
701
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds
|
718
702
|
end
|
719
|
-
def
|
720
|
-
Azure::Network::Mgmt::
|
703
|
+
def bgp_peer_status_list_result
|
704
|
+
Azure::Network::Mgmt::V2018_12_01::Models::BgpPeerStatusListResult
|
721
705
|
end
|
722
706
|
def express_route_gateway_properties_auto_scale_configuration
|
723
|
-
Azure::Network::Mgmt::
|
707
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteGatewayPropertiesAutoScaleConfiguration
|
724
708
|
end
|
725
|
-
def
|
726
|
-
Azure::Network::Mgmt::
|
709
|
+
def vpn_client_parameters
|
710
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnClientParameters
|
727
711
|
end
|
728
|
-
def
|
729
|
-
Azure::Network::Mgmt::
|
712
|
+
def referenced_public_ip_address
|
713
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ReferencedPublicIpAddress
|
730
714
|
end
|
731
|
-
def
|
732
|
-
Azure::Network::Mgmt::
|
715
|
+
def gateway_route
|
716
|
+
Azure::Network::Mgmt::V2018_12_01::Models::GatewayRoute
|
733
717
|
end
|
734
|
-
def
|
735
|
-
Azure::Network::Mgmt::
|
718
|
+
def public_ipprefix_sku
|
719
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PublicIPPrefixSku
|
736
720
|
end
|
737
|
-
def
|
738
|
-
Azure::Network::Mgmt::
|
721
|
+
def bgp_settings
|
722
|
+
Azure::Network::Mgmt::V2018_12_01::Models::BgpSettings
|
739
723
|
end
|
740
724
|
def express_route_gateway_list
|
741
|
-
Azure::Network::Mgmt::
|
725
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteGatewayList
|
742
726
|
end
|
743
|
-
def
|
744
|
-
Azure::Network::Mgmt::
|
727
|
+
def vpn_client_configuration
|
728
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnClientConfiguration
|
745
729
|
end
|
746
730
|
def express_route_connection_list
|
747
|
-
Azure::Network::Mgmt::
|
731
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteConnectionList
|
748
732
|
end
|
749
|
-
def
|
750
|
-
Azure::Network::Mgmt::
|
733
|
+
def ipsec_policy
|
734
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IpsecPolicy
|
751
735
|
end
|
752
736
|
def express_route_ports_location_bandwidths
|
753
|
-
Azure::Network::Mgmt::
|
737
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePortsLocationBandwidths
|
754
738
|
end
|
755
|
-
def
|
756
|
-
Azure::Network::Mgmt::
|
739
|
+
def application_gateway_backend_health_http_settings
|
740
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHealthHttpSettings
|
757
741
|
end
|
758
|
-
def
|
759
|
-
Azure::Network::Mgmt::
|
742
|
+
def public_ipaddress_list_result
|
743
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PublicIPAddressListResult
|
760
744
|
end
|
761
|
-
def
|
762
|
-
Azure::Network::Mgmt::
|
745
|
+
def application_gateway_backend_health
|
746
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHealth
|
763
747
|
end
|
764
748
|
def express_route_ports_location_list_result
|
765
|
-
Azure::Network::Mgmt::
|
749
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePortsLocationListResult
|
766
750
|
end
|
767
|
-
def
|
768
|
-
Azure::Network::Mgmt::
|
751
|
+
def application_gateway_ssl_policy
|
752
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslPolicy
|
769
753
|
end
|
770
|
-
def
|
771
|
-
Azure::Network::Mgmt::
|
754
|
+
def operation_list_result
|
755
|
+
Azure::Network::Mgmt::V2018_12_01::Models::OperationListResult
|
772
756
|
end
|
773
|
-
def
|
774
|
-
Azure::Network::Mgmt::
|
757
|
+
def virtual_hub_route
|
758
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualHubRoute
|
775
759
|
end
|
776
760
|
def express_route_link_list_result
|
777
|
-
Azure::Network::Mgmt::
|
761
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteLinkListResult
|
778
762
|
end
|
779
|
-
def
|
780
|
-
Azure::Network::Mgmt::
|
763
|
+
def virtual_hub_route_table
|
764
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualHubRouteTable
|
781
765
|
end
|
782
|
-
def
|
783
|
-
Azure::Network::Mgmt::
|
766
|
+
def operation
|
767
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Operation
|
784
768
|
end
|
785
|
-
def
|
786
|
-
Azure::Network::Mgmt::
|
769
|
+
def network_intent_policy_configuration
|
770
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkIntentPolicyConfiguration
|
787
771
|
end
|
788
772
|
def express_route_port_list_result
|
789
|
-
Azure::Network::Mgmt::
|
773
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePortListResult
|
790
774
|
end
|
791
|
-
def
|
792
|
-
Azure::Network::Mgmt::
|
775
|
+
def list_virtual_hubs_result
|
776
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ListVirtualHubsResult
|
793
777
|
end
|
794
778
|
def interface_endpoint_list_result
|
795
|
-
Azure::Network::Mgmt::
|
779
|
+
Azure::Network::Mgmt::V2018_12_01::Models::InterfaceEndpointListResult
|
796
780
|
end
|
797
|
-
def
|
798
|
-
Azure::Network::Mgmt::
|
781
|
+
def application_gateway_probe_health_response_match
|
782
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayProbeHealthResponseMatch
|
799
783
|
end
|
800
784
|
def load_balancer_sku
|
801
|
-
Azure::Network::Mgmt::
|
802
|
-
end
|
803
|
-
def ipsec_policy
|
804
|
-
Azure::Network::Mgmt::V2018_11_01::Models::IpsecPolicy
|
805
|
-
end
|
806
|
-
def operation
|
807
|
-
Azure::Network::Mgmt::V2018_11_01::Models::Operation
|
785
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerSku
|
808
786
|
end
|
809
|
-
def
|
810
|
-
Azure::Network::Mgmt::
|
787
|
+
def virtual_network_usage_name
|
788
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkUsageName
|
811
789
|
end
|
812
790
|
def operation_properties_format_service_specification
|
813
|
-
Azure::Network::Mgmt::
|
791
|
+
Azure::Network::Mgmt::V2018_12_01::Models::OperationPropertiesFormatServiceSpecification
|
814
792
|
end
|
815
|
-
def
|
816
|
-
Azure::Network::Mgmt::
|
793
|
+
def application_gateway_header_configuration
|
794
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayHeaderConfiguration
|
817
795
|
end
|
818
796
|
def log_specification
|
819
|
-
Azure::Network::Mgmt::
|
797
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LogSpecification
|
820
798
|
end
|
821
|
-
def
|
822
|
-
Azure::Network::Mgmt::
|
799
|
+
def application_gateway_rewrite_rule
|
800
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRewriteRule
|
823
801
|
end
|
824
802
|
def metric_specification
|
825
|
-
Azure::Network::Mgmt::
|
803
|
+
Azure::Network::Mgmt::V2018_12_01::Models::MetricSpecification
|
826
804
|
end
|
827
|
-
def
|
828
|
-
Azure::Network::Mgmt::
|
805
|
+
def virtual_network_list_result
|
806
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkListResult
|
829
807
|
end
|
830
808
|
def dimension
|
831
|
-
Azure::Network::Mgmt::
|
809
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Dimension
|
832
810
|
end
|
833
|
-
def
|
834
|
-
Azure::Network::Mgmt::
|
811
|
+
def application_gateway_firewall_disabled_rule_group
|
812
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallDisabledRuleGroup
|
813
|
+
end
|
814
|
+
def availability
|
815
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Availability
|
816
|
+
end
|
817
|
+
def application_gateway_web_application_firewall_configuration
|
818
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayWebApplicationFirewallConfiguration
|
835
819
|
end
|
836
820
|
def load_balancer_list_result
|
837
|
-
Azure::Network::Mgmt::
|
821
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerListResult
|
838
822
|
end
|
839
|
-
def
|
840
|
-
Azure::Network::Mgmt::
|
823
|
+
def managed_service_identity_user_assigned_identities_value
|
824
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ManagedServiceIdentityUserAssignedIdentitiesValue
|
841
825
|
end
|
842
826
|
def inbound_nat_rule_list_result
|
843
|
-
Azure::Network::Mgmt::
|
827
|
+
Azure::Network::Mgmt::V2018_12_01::Models::InboundNatRuleListResult
|
844
828
|
end
|
845
|
-
def
|
846
|
-
Azure::Network::Mgmt::
|
829
|
+
def dhcp_options
|
830
|
+
Azure::Network::Mgmt::V2018_12_01::Models::DhcpOptions
|
847
831
|
end
|
848
|
-
def
|
849
|
-
Azure::Network::Mgmt::
|
832
|
+
def application_gateway_list_result
|
833
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayListResult
|
850
834
|
end
|
851
|
-
def
|
852
|
-
Azure::Network::Mgmt::
|
835
|
+
def network_configuration_diagnostic_response
|
836
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkConfigurationDiagnosticResponse
|
853
837
|
end
|
854
|
-
def
|
855
|
-
Azure::Network::Mgmt::
|
838
|
+
def application_gateway_firewall_rule_group
|
839
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallRuleGroup
|
856
840
|
end
|
857
|
-
def
|
858
|
-
Azure::Network::Mgmt::
|
841
|
+
def operation_display
|
842
|
+
Azure::Network::Mgmt::V2018_12_01::Models::OperationDisplay
|
843
|
+
end
|
844
|
+
def application_gateway_available_waf_rule_sets_result
|
845
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayAvailableWafRuleSetsResult
|
859
846
|
end
|
860
847
|
def load_balancer_load_balancing_rule_list_result
|
861
|
-
Azure::Network::Mgmt::
|
848
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerLoadBalancingRuleListResult
|
862
849
|
end
|
863
|
-
def
|
864
|
-
Azure::Network::Mgmt::
|
850
|
+
def list_vpn_connections_result
|
851
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ListVpnConnectionsResult
|
865
852
|
end
|
866
853
|
def load_balancer_outbound_rule_list_result
|
867
|
-
Azure::Network::Mgmt::
|
854
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerOutboundRuleListResult
|
868
855
|
end
|
869
|
-
def
|
870
|
-
Azure::Network::Mgmt::
|
856
|
+
def resource
|
857
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Resource
|
871
858
|
end
|
872
859
|
def load_balancer_probe_list_result
|
873
|
-
Azure::Network::Mgmt::
|
860
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerProbeListResult
|
874
861
|
end
|
875
|
-
def
|
876
|
-
Azure::Network::Mgmt::
|
862
|
+
def error
|
863
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Error
|
877
864
|
end
|
878
865
|
def network_interface_list_result
|
879
|
-
Azure::Network::Mgmt::
|
866
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceListResult
|
880
867
|
end
|
881
|
-
def
|
882
|
-
Azure::Network::Mgmt::
|
868
|
+
def application_security_group_list_result
|
869
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationSecurityGroupListResult
|
883
870
|
end
|
884
871
|
def azure_async_operation_result
|
885
|
-
Azure::Network::Mgmt::
|
872
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureAsyncOperationResult
|
886
873
|
end
|
887
|
-
def
|
888
|
-
Azure::Network::Mgmt::
|
874
|
+
def available_delegations_result
|
875
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AvailableDelegationsResult
|
889
876
|
end
|
890
877
|
def network_interface_tap_configuration_list_result
|
891
|
-
Azure::Network::Mgmt::
|
878
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceTapConfigurationListResult
|
892
879
|
end
|
893
|
-
def
|
894
|
-
Azure::Network::Mgmt::
|
880
|
+
def azure_firewall_rcaction
|
881
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallRCAction
|
895
882
|
end
|
896
883
|
def network_interface_ipconfiguration_list_result
|
897
|
-
Azure::Network::Mgmt::
|
884
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceIPConfigurationListResult
|
898
885
|
end
|
899
|
-
def
|
900
|
-
Azure::Network::Mgmt::
|
886
|
+
def azure_firewall_application_rule
|
887
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallApplicationRule
|
901
888
|
end
|
902
889
|
def network_interface_load_balancer_list_result
|
903
|
-
Azure::Network::Mgmt::
|
890
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceLoadBalancerListResult
|
904
891
|
end
|
905
|
-
def
|
906
|
-
Azure::Network::Mgmt::
|
892
|
+
def azure_firewall_nat_rcaction
|
893
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNatRCAction
|
907
894
|
end
|
908
895
|
def effective_network_security_group_association
|
909
|
-
Azure::Network::Mgmt::
|
896
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EffectiveNetworkSecurityGroupAssociation
|
910
897
|
end
|
911
|
-
def
|
912
|
-
Azure::Network::Mgmt::
|
898
|
+
def usage
|
899
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Usage
|
913
900
|
end
|
914
901
|
def effective_network_security_rule
|
915
|
-
Azure::Network::Mgmt::
|
902
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EffectiveNetworkSecurityRule
|
916
903
|
end
|
917
|
-
def
|
918
|
-
Azure::Network::Mgmt::
|
904
|
+
def usage_name
|
905
|
+
Azure::Network::Mgmt::V2018_12_01::Models::UsageName
|
919
906
|
end
|
920
907
|
def effective_network_security_group
|
921
|
-
Azure::Network::Mgmt::
|
908
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EffectiveNetworkSecurityGroup
|
922
909
|
end
|
923
|
-
def
|
924
|
-
Azure::Network::Mgmt::
|
910
|
+
def azure_firewall_list_result
|
911
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallListResult
|
925
912
|
end
|
926
|
-
def
|
927
|
-
Azure::Network::Mgmt::
|
913
|
+
def effective_network_security_group_list_result
|
914
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EffectiveNetworkSecurityGroupListResult
|
928
915
|
end
|
929
|
-
def
|
930
|
-
Azure::Network::Mgmt::
|
916
|
+
def azure_firewall_fqdn_tag_list_result
|
917
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallFqdnTagListResult
|
931
918
|
end
|
932
919
|
def effective_route
|
933
|
-
Azure::Network::Mgmt::
|
920
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EffectiveRoute
|
934
921
|
end
|
935
|
-
def
|
936
|
-
Azure::Network::Mgmt::
|
922
|
+
def protocol_custom_settings_format
|
923
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ProtocolCustomSettingsFormat
|
924
|
+
end
|
925
|
+
def bgp_service_community_list_result
|
926
|
+
Azure::Network::Mgmt::V2018_12_01::Models::BgpServiceCommunityListResult
|
927
|
+
end
|
928
|
+
def network_configuration_diagnostic_result
|
929
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkConfigurationDiagnosticResult
|
930
|
+
end
|
931
|
+
def vpn_profile_response
|
932
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnProfileResponse
|
937
933
|
end
|
938
934
|
def ddos_protection_plan_list_result
|
939
|
-
Azure::Network::Mgmt::
|
935
|
+
Azure::Network::Mgmt::V2018_12_01::Models::DdosProtectionPlanListResult
|
940
936
|
end
|
941
|
-
def
|
942
|
-
Azure::Network::Mgmt::
|
937
|
+
def p2_svpn_profile_parameters
|
938
|
+
Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnProfileParameters
|
943
939
|
end
|
944
940
|
def endpoint_services_list_result
|
945
|
-
Azure::Network::Mgmt::
|
941
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EndpointServicesListResult
|
946
942
|
end
|
947
|
-
def
|
948
|
-
Azure::Network::Mgmt::
|
943
|
+
def container_network_interface_ip_configuration
|
944
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ContainerNetworkInterfaceIpConfiguration
|
949
945
|
end
|
950
946
|
def authorization_list_result
|
951
|
-
Azure::Network::Mgmt::
|
947
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AuthorizationListResult
|
952
948
|
end
|
953
|
-
def
|
954
|
-
Azure::Network::Mgmt::
|
949
|
+
def list_p2_svpn_gateways_result
|
950
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ListP2SVpnGatewaysResult
|
955
951
|
end
|
956
|
-
def
|
957
|
-
Azure::Network::Mgmt::
|
952
|
+
def route_list_result
|
953
|
+
Azure::Network::Mgmt::V2018_12_01::Models::RouteListResult
|
958
954
|
end
|
959
|
-
def
|
960
|
-
Azure::Network::Mgmt::
|
955
|
+
def vpn_client_connection_health
|
956
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnClientConnectionHealth
|
961
957
|
end
|
962
958
|
def express_route_connection_id
|
963
|
-
Azure::Network::Mgmt::
|
964
|
-
end
|
965
|
-
def network_security_group_result
|
966
|
-
Azure::Network::Mgmt::V2018_11_01::Models::NetworkSecurityGroupResult
|
967
|
-
end
|
968
|
-
def bgp_service_community_list_result
|
969
|
-
Azure::Network::Mgmt::V2018_11_01::Models::BgpServiceCommunityListResult
|
959
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteConnectionId
|
970
960
|
end
|
971
961
|
def network_profile_list_result
|
972
|
-
Azure::Network::Mgmt::
|
962
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkProfileListResult
|
973
963
|
end
|
974
|
-
def
|
975
|
-
Azure::Network::Mgmt::
|
964
|
+
def route_filter_rule_list_result
|
965
|
+
Azure::Network::Mgmt::V2018_12_01::Models::RouteFilterRuleListResult
|
976
966
|
end
|
977
967
|
def security_rule_list_result
|
978
|
-
Azure::Network::Mgmt::
|
968
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SecurityRuleListResult
|
979
969
|
end
|
980
|
-
def
|
981
|
-
Azure::Network::Mgmt::
|
970
|
+
def ipv6_express_route_circuit_peering_config
|
971
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Ipv6ExpressRouteCircuitPeeringConfig
|
982
972
|
end
|
983
973
|
def network_security_group_list_result
|
984
|
-
Azure::Network::Mgmt::
|
974
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkSecurityGroupListResult
|
985
975
|
end
|
986
|
-
def
|
987
|
-
Azure::Network::Mgmt::
|
976
|
+
def express_route_circuit_connection_list_result
|
977
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitConnectionListResult
|
988
978
|
end
|
989
979
|
def error_response
|
990
|
-
Azure::Network::Mgmt::
|
980
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ErrorResponse
|
991
981
|
end
|
992
|
-
def
|
993
|
-
Azure::Network::Mgmt::
|
982
|
+
def express_route_circuit_service_provider_properties
|
983
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitServiceProviderProperties
|
994
984
|
end
|
995
|
-
def
|
996
|
-
Azure::Network::Mgmt::
|
985
|
+
def list_p2_svpn_server_configurations_result
|
986
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ListP2SVpnServerConfigurationsResult
|
997
987
|
end
|
998
|
-
def
|
999
|
-
Azure::Network::Mgmt::
|
988
|
+
def express_route_circuit_arp_table
|
989
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitArpTable
|
1000
990
|
end
|
1001
991
|
def network_watcher_list_result
|
1002
|
-
Azure::Network::Mgmt::
|
992
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkWatcherListResult
|
1003
993
|
end
|
1004
|
-
def
|
1005
|
-
Azure::Network::Mgmt::
|
994
|
+
def express_route_circuit_routes_table
|
995
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitRoutesTable
|
1006
996
|
end
|
1007
997
|
def topology_parameters
|
1008
|
-
Azure::Network::Mgmt::
|
998
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TopologyParameters
|
1009
999
|
end
|
1010
|
-
def
|
1011
|
-
Azure::Network::Mgmt::
|
1000
|
+
def express_route_circuit_routes_table_summary
|
1001
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitRoutesTableSummary
|
1012
1002
|
end
|
1013
1003
|
def topology_association
|
1014
|
-
Azure::Network::Mgmt::
|
1004
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TopologyAssociation
|
1015
1005
|
end
|
1016
|
-
def
|
1017
|
-
Azure::Network::Mgmt::
|
1006
|
+
def express_route_circuit_list_result
|
1007
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitListResult
|
1018
1008
|
end
|
1019
1009
|
def topology_resource
|
1020
|
-
Azure::Network::Mgmt::
|
1010
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TopologyResource
|
1021
1011
|
end
|
1022
|
-
def
|
1023
|
-
Azure::Network::Mgmt::
|
1012
|
+
def virtual_wan_security_provider
|
1013
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualWanSecurityProvider
|
1024
1014
|
end
|
1025
1015
|
def topology
|
1026
|
-
Azure::Network::Mgmt::
|
1016
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Topology
|
1027
1017
|
end
|
1028
|
-
def
|
1029
|
-
Azure::Network::Mgmt::
|
1018
|
+
def network_interface_dns_settings
|
1019
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceDnsSettings
|
1030
1020
|
end
|
1031
1021
|
def verification_ipflow_parameters
|
1032
|
-
Azure::Network::Mgmt::
|
1022
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VerificationIPFlowParameters
|
1033
1023
|
end
|
1034
|
-
def
|
1035
|
-
Azure::Network::Mgmt::
|
1024
|
+
def vpn_client_ipsec_parameters
|
1025
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnClientIPsecParameters
|
1036
1026
|
end
|
1037
1027
|
def verification_ipflow_result
|
1038
|
-
Azure::Network::Mgmt::
|
1028
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VerificationIPFlowResult
|
1039
1029
|
end
|
1040
|
-
def
|
1041
|
-
Azure::Network::Mgmt::
|
1030
|
+
def public_ipaddress_sku
|
1031
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PublicIPAddressSku
|
1042
1032
|
end
|
1043
1033
|
def next_hop_parameters
|
1044
|
-
Azure::Network::Mgmt::
|
1034
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NextHopParameters
|
1045
1035
|
end
|
1046
|
-
def
|
1047
|
-
Azure::Network::Mgmt::
|
1036
|
+
def virtual_network_gateway_connection_list_result
|
1037
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnectionListResult
|
1048
1038
|
end
|
1049
1039
|
def next_hop_result
|
1050
|
-
Azure::Network::Mgmt::
|
1040
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NextHopResult
|
1051
1041
|
end
|
1052
|
-
def
|
1053
|
-
Azure::Network::Mgmt::
|
1042
|
+
def gateway_route_list_result
|
1043
|
+
Azure::Network::Mgmt::V2018_12_01::Models::GatewayRouteListResult
|
1054
1044
|
end
|
1055
1045
|
def security_group_view_parameters
|
1056
|
-
Azure::Network::Mgmt::
|
1046
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SecurityGroupViewParameters
|
1057
1047
|
end
|
1058
|
-
def
|
1059
|
-
Azure::Network::Mgmt::
|
1048
|
+
def list_vpn_sites_result
|
1049
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ListVpnSitesResult
|
1060
1050
|
end
|
1061
1051
|
def network_interface_association
|
1062
|
-
Azure::Network::Mgmt::
|
1052
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceAssociation
|
1063
1053
|
end
|
1064
|
-
def
|
1065
|
-
Azure::Network::Mgmt::
|
1054
|
+
def application_gateway_backend_address
|
1055
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendAddress
|
1066
1056
|
end
|
1067
1057
|
def subnet_association
|
1068
|
-
Azure::Network::Mgmt::
|
1058
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SubnetAssociation
|
1069
1059
|
end
|
1070
|
-
def
|
1071
|
-
Azure::Network::Mgmt::
|
1060
|
+
def application_gateway_backend_health_server
|
1061
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHealthServer
|
1072
1062
|
end
|
1073
1063
|
def security_rule_associations
|
1074
|
-
Azure::Network::Mgmt::
|
1064
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SecurityRuleAssociations
|
1075
1065
|
end
|
1076
|
-
def
|
1077
|
-
Azure::Network::Mgmt::
|
1066
|
+
def application_gateway_sku
|
1067
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySku
|
1078
1068
|
end
|
1079
1069
|
def security_group_network_interface
|
1080
|
-
Azure::Network::Mgmt::
|
1070
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SecurityGroupNetworkInterface
|
1081
1071
|
end
|
1082
|
-
def
|
1083
|
-
Azure::Network::Mgmt::
|
1072
|
+
def virtual_network_gateway_sku
|
1073
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewaySku
|
1084
1074
|
end
|
1085
1075
|
def security_group_view_result
|
1086
|
-
Azure::Network::Mgmt::
|
1076
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SecurityGroupViewResult
|
1087
1077
|
end
|
1088
|
-
def
|
1089
|
-
Azure::Network::Mgmt::
|
1078
|
+
def application_gateway_custom_error
|
1079
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayCustomError
|
1090
1080
|
end
|
1091
1081
|
def packet_capture_storage_location
|
1092
|
-
Azure::Network::Mgmt::
|
1082
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureStorageLocation
|
1093
1083
|
end
|
1094
|
-
def
|
1095
|
-
Azure::Network::Mgmt::
|
1084
|
+
def virtual_network_usage
|
1085
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkUsage
|
1096
1086
|
end
|
1097
1087
|
def packet_capture_filter
|
1098
|
-
Azure::Network::Mgmt::
|
1088
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureFilter
|
1099
1089
|
end
|
1100
|
-
def
|
1101
|
-
Azure::Network::Mgmt::
|
1090
|
+
def application_gateway_rewrite_rule_action_set
|
1091
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRewriteRuleActionSet
|
1102
1092
|
end
|
1103
1093
|
def packet_capture_parameters
|
1104
|
-
Azure::Network::Mgmt::
|
1094
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureParameters
|
1105
1095
|
end
|
1106
|
-
def
|
1107
|
-
Azure::Network::Mgmt::
|
1096
|
+
def list_vpn_gateways_result
|
1097
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ListVpnGatewaysResult
|
1108
1098
|
end
|
1109
1099
|
def packet_capture
|
1110
|
-
Azure::Network::Mgmt::
|
1100
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PacketCapture
|
1111
1101
|
end
|
1112
|
-
def
|
1113
|
-
Azure::Network::Mgmt::
|
1102
|
+
def application_gateway_autoscale_configuration
|
1103
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayAutoscaleConfiguration
|
1114
1104
|
end
|
1115
1105
|
def packet_capture_result
|
1116
|
-
Azure::Network::Mgmt::
|
1106
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureResult
|
1117
1107
|
end
|
1118
|
-
def
|
1119
|
-
Azure::Network::Mgmt::
|
1108
|
+
def application_gateway_firewall_rule
|
1109
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallRule
|
1120
1110
|
end
|
1121
1111
|
def packet_capture_list_result
|
1122
|
-
Azure::Network::Mgmt::
|
1112
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureListResult
|
1123
1113
|
end
|
1124
|
-
def
|
1125
|
-
Azure::Network::Mgmt::
|
1114
|
+
def subnet_list_result
|
1115
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SubnetListResult
|
1126
1116
|
end
|
1127
1117
|
def packet_capture_query_status_result
|
1128
|
-
Azure::Network::Mgmt::
|
1118
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PacketCaptureQueryStatusResult
|
1129
1119
|
end
|
1130
|
-
def
|
1131
|
-
Azure::Network::Mgmt::
|
1120
|
+
def error_details
|
1121
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ErrorDetails
|
1132
1122
|
end
|
1133
1123
|
def troubleshooting_parameters
|
1134
|
-
Azure::Network::Mgmt::
|
1124
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TroubleshootingParameters
|
1135
1125
|
end
|
1136
|
-
def
|
1137
|
-
Azure::Network::Mgmt::
|
1126
|
+
def available_delegation
|
1127
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AvailableDelegation
|
1138
1128
|
end
|
1139
1129
|
def query_troubleshooting_parameters
|
1140
|
-
Azure::Network::Mgmt::
|
1130
|
+
Azure::Network::Mgmt::V2018_12_01::Models::QueryTroubleshootingParameters
|
1141
1131
|
end
|
1142
|
-
def
|
1143
|
-
Azure::Network::Mgmt::
|
1132
|
+
def azure_firewall_application_rule_protocol
|
1133
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallApplicationRuleProtocol
|
1144
1134
|
end
|
1145
1135
|
def troubleshooting_recommended_actions
|
1146
|
-
Azure::Network::Mgmt::
|
1136
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TroubleshootingRecommendedActions
|
1147
1137
|
end
|
1148
|
-
def
|
1149
|
-
Azure::Network::Mgmt::
|
1138
|
+
def azure_firewall_nat_rule
|
1139
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNatRule
|
1150
1140
|
end
|
1151
1141
|
def troubleshooting_details
|
1152
|
-
Azure::Network::Mgmt::
|
1142
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TroubleshootingDetails
|
1143
|
+
end
|
1144
|
+
def service_endpoint_policy_list_result
|
1145
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ServiceEndpointPolicyListResult
|
1153
1146
|
end
|
1154
1147
|
def troubleshooting_result
|
1155
|
-
Azure::Network::Mgmt::
|
1148
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TroubleshootingResult
|
1156
1149
|
end
|
1157
|
-
def
|
1158
|
-
Azure::Network::Mgmt::
|
1150
|
+
def dns_name_availability_result
|
1151
|
+
Azure::Network::Mgmt::V2018_12_01::Models::DnsNameAvailabilityResult
|
1159
1152
|
end
|
1160
1153
|
def retention_policy_parameters
|
1161
|
-
Azure::Network::Mgmt::
|
1154
|
+
Azure::Network::Mgmt::V2018_12_01::Models::RetentionPolicyParameters
|
1162
1155
|
end
|
1163
|
-
def
|
1164
|
-
Azure::Network::Mgmt::
|
1156
|
+
def ddos_protection_plan
|
1157
|
+
Azure::Network::Mgmt::V2018_12_01::Models::DdosProtectionPlan
|
1165
1158
|
end
|
1166
1159
|
def flow_log_format_parameters
|
1167
|
-
Azure::Network::Mgmt::
|
1160
|
+
Azure::Network::Mgmt::V2018_12_01::Models::FlowLogFormatParameters
|
1168
1161
|
end
|
1169
|
-
def
|
1170
|
-
Azure::Network::Mgmt::
|
1162
|
+
def bgpcommunity
|
1163
|
+
Azure::Network::Mgmt::V2018_12_01::Models::BGPCommunity
|
1171
1164
|
end
|
1172
1165
|
def flow_log_status_parameters
|
1173
|
-
Azure::Network::Mgmt::
|
1166
|
+
Azure::Network::Mgmt::V2018_12_01::Models::FlowLogStatusParameters
|
1174
1167
|
end
|
1175
|
-
def
|
1176
|
-
Azure::Network::Mgmt::
|
1168
|
+
def express_route_circuit_stats
|
1169
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitStats
|
1177
1170
|
end
|
1178
1171
|
def traffic_analytics_configuration_properties
|
1179
|
-
Azure::Network::Mgmt::
|
1172
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TrafficAnalyticsConfigurationProperties
|
1180
1173
|
end
|
1181
|
-
def
|
1182
|
-
Azure::Network::Mgmt::
|
1174
|
+
def route_filter_list_result
|
1175
|
+
Azure::Network::Mgmt::V2018_12_01::Models::RouteFilterListResult
|
1183
1176
|
end
|
1184
1177
|
def traffic_analytics_properties
|
1185
|
-
Azure::Network::Mgmt::
|
1178
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TrafficAnalyticsProperties
|
1186
1179
|
end
|
1187
|
-
def
|
1188
|
-
Azure::Network::Mgmt::
|
1180
|
+
def express_route_circuit_sku
|
1181
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitSku
|
1189
1182
|
end
|
1190
1183
|
def flow_log_information
|
1191
|
-
Azure::Network::Mgmt::
|
1184
|
+
Azure::Network::Mgmt::V2018_12_01::Models::FlowLogInformation
|
1192
1185
|
end
|
1193
|
-
def
|
1194
|
-
Azure::Network::Mgmt::
|
1186
|
+
def express_route_circuits_arp_table_list_result
|
1187
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitsArpTableListResult
|
1195
1188
|
end
|
1196
1189
|
def connectivity_source
|
1197
|
-
Azure::Network::Mgmt::
|
1190
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectivitySource
|
1198
1191
|
end
|
1199
|
-
def
|
1200
|
-
Azure::Network::Mgmt::
|
1192
|
+
def express_route_circuits_routes_table_summary_list_result
|
1193
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitsRoutesTableSummaryListResult
|
1201
1194
|
end
|
1202
1195
|
def connectivity_destination
|
1203
|
-
Azure::Network::Mgmt::
|
1196
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectivityDestination
|
1204
1197
|
end
|
1205
|
-
def
|
1206
|
-
Azure::Network::Mgmt::
|
1198
|
+
def endpoint_service
|
1199
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EndpointService
|
1207
1200
|
end
|
1208
1201
|
def httpheader
|
1209
|
-
Azure::Network::Mgmt::
|
1202
|
+
Azure::Network::Mgmt::V2018_12_01::Models::HTTPHeader
|
1210
1203
|
end
|
1211
|
-
def
|
1212
|
-
Azure::Network::Mgmt::
|
1204
|
+
def virtual_network_tap_list_result
|
1205
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkTapListResult
|
1213
1206
|
end
|
1214
1207
|
def httpconfiguration
|
1215
|
-
Azure::Network::Mgmt::
|
1208
|
+
Azure::Network::Mgmt::V2018_12_01::Models::HTTPConfiguration
|
1216
1209
|
end
|
1217
|
-
def
|
1218
|
-
Azure::Network::Mgmt::
|
1210
|
+
def device_properties
|
1211
|
+
Azure::Network::Mgmt::V2018_12_01::Models::DeviceProperties
|
1219
1212
|
end
|
1220
1213
|
def protocol_configuration
|
1221
|
-
Azure::Network::Mgmt::
|
1214
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ProtocolConfiguration
|
1222
1215
|
end
|
1223
|
-
def
|
1224
|
-
Azure::Network::Mgmt::
|
1216
|
+
def bgp_peer_status
|
1217
|
+
Azure::Network::Mgmt::V2018_12_01::Models::BgpPeerStatus
|
1225
1218
|
end
|
1226
1219
|
def connectivity_parameters
|
1227
|
-
Azure::Network::Mgmt::
|
1220
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectivityParameters
|
1228
1221
|
end
|
1229
|
-
def
|
1230
|
-
Azure::Network::Mgmt::
|
1222
|
+
def application_gateway_backend_health_pool
|
1223
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHealthPool
|
1231
1224
|
end
|
1232
1225
|
def connectivity_issue
|
1233
|
-
Azure::Network::Mgmt::
|
1226
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectivityIssue
|
1234
1227
|
end
|
1235
|
-
def
|
1236
|
-
Azure::Network::Mgmt::
|
1228
|
+
def prepare_network_policies_request
|
1229
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PrepareNetworkPoliciesRequest
|
1237
1230
|
end
|
1238
1231
|
def connectivity_hop
|
1239
|
-
Azure::Network::Mgmt::
|
1232
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectivityHop
|
1240
1233
|
end
|
1241
|
-
def
|
1242
|
-
Azure::Network::Mgmt::
|
1234
|
+
def application_gateway_rewrite_rule_condition
|
1235
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRewriteRuleCondition
|
1243
1236
|
end
|
1244
1237
|
def connectivity_information
|
1245
|
-
Azure::Network::Mgmt::
|
1238
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectivityInformation
|
1246
1239
|
end
|
1247
|
-
def
|
1248
|
-
Azure::Network::Mgmt::
|
1240
|
+
def application_gateway_firewall_exclusion
|
1241
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallExclusion
|
1249
1242
|
end
|
1250
1243
|
def azure_reachability_report_location
|
1251
|
-
Azure::Network::Mgmt::
|
1244
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureReachabilityReportLocation
|
1252
1245
|
end
|
1253
|
-
def
|
1254
|
-
Azure::Network::Mgmt::
|
1246
|
+
def virtual_network_peering_list_result
|
1247
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkPeeringListResult
|
1255
1248
|
end
|
1256
1249
|
def azure_reachability_report_parameters
|
1257
|
-
Azure::Network::Mgmt::
|
1250
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureReachabilityReportParameters
|
1258
1251
|
end
|
1259
|
-
def
|
1260
|
-
Azure::Network::Mgmt::
|
1252
|
+
def tags_object
|
1253
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TagsObject
|
1261
1254
|
end
|
1262
1255
|
def azure_reachability_report_latency_info
|
1263
|
-
Azure::Network::Mgmt::
|
1256
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureReachabilityReportLatencyInfo
|
1264
1257
|
end
|
1265
|
-
def
|
1266
|
-
Azure::Network::Mgmt::
|
1258
|
+
def usages_list_result
|
1259
|
+
Azure::Network::Mgmt::V2018_12_01::Models::UsagesListResult
|
1267
1260
|
end
|
1268
1261
|
def azure_reachability_report_item
|
1269
|
-
Azure::Network::Mgmt::
|
1262
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureReachabilityReportItem
|
1270
1263
|
end
|
1271
|
-
def
|
1272
|
-
Azure::Network::Mgmt::
|
1264
|
+
def service_endpoint_policy_definition_list_result
|
1265
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ServiceEndpointPolicyDefinitionListResult
|
1273
1266
|
end
|
1274
1267
|
def azure_reachability_report
|
1275
|
-
Azure::Network::Mgmt::
|
1268
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureReachabilityReport
|
1276
1269
|
end
|
1277
|
-
def
|
1278
|
-
Azure::Network::Mgmt::
|
1270
|
+
def list_hub_virtual_network_connections_result
|
1271
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ListHubVirtualNetworkConnectionsResult
|
1279
1272
|
end
|
1280
1273
|
def available_providers_list_parameters
|
1281
|
-
Azure::Network::Mgmt::
|
1274
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AvailableProvidersListParameters
|
1282
1275
|
end
|
1283
|
-
def
|
1284
|
-
Azure::Network::Mgmt::
|
1276
|
+
def route_table_list_result
|
1277
|
+
Azure::Network::Mgmt::V2018_12_01::Models::RouteTableListResult
|
1285
1278
|
end
|
1286
1279
|
def available_providers_list_city
|
1287
|
-
Azure::Network::Mgmt::
|
1280
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AvailableProvidersListCity
|
1288
1281
|
end
|
1289
|
-
def
|
1290
|
-
Azure::Network::Mgmt::
|
1282
|
+
def vpn_site_id
|
1283
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnSiteId
|
1291
1284
|
end
|
1292
1285
|
def available_providers_list_state
|
1293
|
-
Azure::Network::Mgmt::
|
1286
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AvailableProvidersListState
|
1294
1287
|
end
|
1295
|
-
def
|
1296
|
-
Azure::Network::Mgmt::
|
1288
|
+
def express_route_service_provider_bandwidths_offered
|
1289
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteServiceProviderBandwidthsOffered
|
1297
1290
|
end
|
1298
1291
|
def available_providers_list_country
|
1299
|
-
Azure::Network::Mgmt::
|
1292
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AvailableProvidersListCountry
|
1300
1293
|
end
|
1301
|
-
def
|
1302
|
-
Azure::Network::Mgmt::
|
1294
|
+
def ddos_settings
|
1295
|
+
Azure::Network::Mgmt::V2018_12_01::Models::DdosSettings
|
1303
1296
|
end
|
1304
1297
|
def available_providers_list
|
1305
|
-
Azure::Network::Mgmt::
|
1298
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AvailableProvidersList
|
1306
1299
|
end
|
1307
|
-
def
|
1308
|
-
Azure::Network::Mgmt::
|
1300
|
+
def application_gateway_connection_draining
|
1301
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayConnectionDraining
|
1309
1302
|
end
|
1310
1303
|
def connection_monitor_source
|
1311
|
-
Azure::Network::Mgmt::
|
1304
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorSource
|
1312
1305
|
end
|
1313
|
-
def
|
1314
|
-
Azure::Network::Mgmt::
|
1306
|
+
def virtual_network_list_usage_result
|
1307
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkListUsageResult
|
1315
1308
|
end
|
1316
1309
|
def connection_monitor_destination
|
1317
|
-
Azure::Network::Mgmt::
|
1310
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorDestination
|
1318
1311
|
end
|
1319
|
-
def
|
1320
|
-
Azure::Network::Mgmt::
|
1312
|
+
def managed_service_identity
|
1313
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ManagedServiceIdentity
|
1321
1314
|
end
|
1322
1315
|
def connection_monitor_parameters
|
1323
|
-
Azure::Network::Mgmt::
|
1316
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorParameters
|
1324
1317
|
end
|
1325
|
-
def
|
1326
|
-
Azure::Network::Mgmt::
|
1318
|
+
def address_space
|
1319
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AddressSpace
|
1327
1320
|
end
|
1328
1321
|
def connection_monitor
|
1329
|
-
Azure::Network::Mgmt::
|
1330
|
-
end
|
1331
|
-
def virtual_wan_security_provider
|
1332
|
-
Azure::Network::Mgmt::V2018_11_01::Models::VirtualWanSecurityProvider
|
1322
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitor
|
1333
1323
|
end
|
1334
1324
|
def connection_monitor_result
|
1335
|
-
Azure::Network::Mgmt::
|
1325
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorResult
|
1336
1326
|
end
|
1337
|
-
def
|
1338
|
-
Azure::Network::Mgmt::
|
1327
|
+
def express_route_circuit_peering_list_result
|
1328
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeeringListResult
|
1339
1329
|
end
|
1340
1330
|
def connection_monitor_list_result
|
1341
|
-
Azure::Network::Mgmt::
|
1331
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorListResult
|
1342
1332
|
end
|
1343
|
-
def
|
1344
|
-
Azure::Network::Mgmt::
|
1333
|
+
def virtual_network_connection_gateway_reference
|
1334
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkConnectionGatewayReference
|
1345
1335
|
end
|
1346
1336
|
def connection_state_snapshot
|
1347
|
-
Azure::Network::Mgmt::
|
1337
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionStateSnapshot
|
1348
1338
|
end
|
1349
|
-
def
|
1350
|
-
Azure::Network::Mgmt::
|
1339
|
+
def get_vpn_sites_configuration_request
|
1340
|
+
Azure::Network::Mgmt::V2018_12_01::Models::GetVpnSitesConfigurationRequest
|
1351
1341
|
end
|
1352
1342
|
def connection_monitor_query_result
|
1353
|
-
Azure::Network::Mgmt::
|
1343
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorQueryResult
|
1354
1344
|
end
|
1355
|
-
def
|
1356
|
-
Azure::Network::Mgmt::
|
1345
|
+
def application_gateway_available_ssl_predefined_policies
|
1346
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayAvailableSslPredefinedPolicies
|
1357
1347
|
end
|
1358
1348
|
def network_configuration_diagnostic_profile
|
1359
|
-
Azure::Network::Mgmt::
|
1349
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkConfigurationDiagnosticProfile
|
1360
1350
|
end
|
1361
|
-
def
|
1362
|
-
Azure::Network::Mgmt::
|
1351
|
+
def express_route_circuit_peering_config
|
1352
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeeringConfig
|
1363
1353
|
end
|
1364
1354
|
def network_configuration_diagnostic_parameters
|
1365
|
-
Azure::Network::Mgmt::
|
1355
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkConfigurationDiagnosticParameters
|
1366
1356
|
end
|
1367
|
-
def
|
1368
|
-
Azure::Network::Mgmt::
|
1357
|
+
def virtual_network_gateway_list_result
|
1358
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayListResult
|
1369
1359
|
end
|
1370
1360
|
def matched_rule
|
1371
|
-
Azure::Network::Mgmt::
|
1361
|
+
Azure::Network::Mgmt::V2018_12_01::Models::MatchedRule
|
1372
1362
|
end
|
1373
|
-
def
|
1374
|
-
Azure::Network::Mgmt::
|
1363
|
+
def azure_firewall_network_rule
|
1364
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNetworkRule
|
1375
1365
|
end
|
1376
1366
|
def network_security_rules_evaluation_result
|
1377
|
-
Azure::Network::Mgmt::
|
1367
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkSecurityRulesEvaluationResult
|
1368
|
+
end
|
1369
|
+
def ipaddress_availability_result
|
1370
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IPAddressAvailabilityResult
|
1371
|
+
end
|
1372
|
+
def evaluated_network_security_group
|
1373
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EvaluatedNetworkSecurityGroup
|
1374
|
+
end
|
1375
|
+
def express_route_circuits_routes_table_list_result
|
1376
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitsRoutesTableListResult
|
1377
|
+
end
|
1378
|
+
def network_security_group_result
|
1379
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkSecurityGroupResult
|
1378
1380
|
end
|
1379
1381
|
def network_interface_tap_configuration
|
1380
|
-
Azure::Network::Mgmt::
|
1382
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceTapConfiguration
|
1381
1383
|
end
|
1382
1384
|
def application_security_group
|
1383
|
-
Azure::Network::Mgmt::
|
1385
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationSecurityGroup
|
1384
1386
|
end
|
1385
1387
|
def security_rule
|
1386
|
-
Azure::Network::Mgmt::
|
1388
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SecurityRule
|
1387
1389
|
end
|
1388
1390
|
def interface_endpoint
|
1389
|
-
Azure::Network::Mgmt::
|
1391
|
+
Azure::Network::Mgmt::V2018_12_01::Models::InterfaceEndpoint
|
1390
1392
|
end
|
1391
1393
|
def network_interface
|
1392
|
-
Azure::Network::Mgmt::
|
1394
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterface
|
1393
1395
|
end
|
1394
1396
|
def network_security_group
|
1395
|
-
Azure::Network::Mgmt::
|
1397
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkSecurityGroup
|
1396
1398
|
end
|
1397
1399
|
def route
|
1398
|
-
Azure::Network::Mgmt::
|
1400
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Route
|
1399
1401
|
end
|
1400
1402
|
def route_table
|
1401
|
-
Azure::Network::Mgmt::
|
1403
|
+
Azure::Network::Mgmt::V2018_12_01::Models::RouteTable
|
1402
1404
|
end
|
1403
1405
|
def service_endpoint_policy_definition
|
1404
|
-
Azure::Network::Mgmt::
|
1406
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ServiceEndpointPolicyDefinition
|
1405
1407
|
end
|
1406
1408
|
def service_endpoint_policy
|
1407
|
-
Azure::Network::Mgmt::
|
1409
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ServiceEndpointPolicy
|
1408
1410
|
end
|
1409
1411
|
def public_ipaddress
|
1410
|
-
Azure::Network::Mgmt::
|
1412
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PublicIPAddress
|
1411
1413
|
end
|
1412
1414
|
def ipconfiguration
|
1413
|
-
Azure::Network::Mgmt::
|
1415
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IPConfiguration
|
1414
1416
|
end
|
1415
1417
|
def ipconfiguration_profile
|
1416
|
-
Azure::Network::Mgmt::
|
1418
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IPConfigurationProfile
|
1417
1419
|
end
|
1418
1420
|
def resource_navigation_link
|
1419
|
-
Azure::Network::Mgmt::
|
1421
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ResourceNavigationLink
|
1420
1422
|
end
|
1421
1423
|
def service_association_link
|
1422
|
-
Azure::Network::Mgmt::
|
1424
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ServiceAssociationLink
|
1423
1425
|
end
|
1424
1426
|
def delegation
|
1425
|
-
Azure::Network::Mgmt::
|
1427
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Delegation
|
1426
1428
|
end
|
1427
1429
|
def subnet
|
1428
|
-
Azure::Network::Mgmt::
|
1430
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Subnet
|
1429
1431
|
end
|
1430
1432
|
def frontend_ipconfiguration
|
1431
|
-
Azure::Network::Mgmt::
|
1433
|
+
Azure::Network::Mgmt::V2018_12_01::Models::FrontendIPConfiguration
|
1432
1434
|
end
|
1433
1435
|
def virtual_network_tap
|
1434
|
-
Azure::Network::Mgmt::
|
1436
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkTap
|
1435
1437
|
end
|
1436
1438
|
def backend_address_pool
|
1437
|
-
Azure::Network::Mgmt::
|
1439
|
+
Azure::Network::Mgmt::V2018_12_01::Models::BackendAddressPool
|
1438
1440
|
end
|
1439
1441
|
def inbound_nat_rule
|
1440
|
-
Azure::Network::Mgmt::
|
1442
|
+
Azure::Network::Mgmt::V2018_12_01::Models::InboundNatRule
|
1441
1443
|
end
|
1442
1444
|
def network_interface_ipconfiguration
|
1443
|
-
Azure::Network::Mgmt::
|
1445
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkInterfaceIPConfiguration
|
1444
1446
|
end
|
1445
1447
|
def application_gateway_backend_address_pool
|
1446
|
-
Azure::Network::Mgmt::
|
1448
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendAddressPool
|
1447
1449
|
end
|
1448
1450
|
def application_gateway_backend_http_settings
|
1449
|
-
Azure::Network::Mgmt::
|
1451
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHttpSettings
|
1450
1452
|
end
|
1451
1453
|
def application_gateway_ipconfiguration
|
1452
|
-
Azure::Network::Mgmt::
|
1454
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayIPConfiguration
|
1453
1455
|
end
|
1454
1456
|
def application_gateway_authentication_certificate
|
1455
|
-
Azure::Network::Mgmt::
|
1457
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayAuthenticationCertificate
|
1456
1458
|
end
|
1457
1459
|
def application_gateway_trusted_root_certificate
|
1458
|
-
Azure::Network::Mgmt::
|
1460
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayTrustedRootCertificate
|
1459
1461
|
end
|
1460
1462
|
def application_gateway_ssl_certificate
|
1461
|
-
Azure::Network::Mgmt::
|
1463
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslCertificate
|
1462
1464
|
end
|
1463
1465
|
def application_gateway_frontend_ipconfiguration
|
1464
|
-
Azure::Network::Mgmt::
|
1466
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFrontendIPConfiguration
|
1465
1467
|
end
|
1466
1468
|
def application_gateway_frontend_port
|
1467
|
-
Azure::Network::Mgmt::
|
1469
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFrontendPort
|
1468
1470
|
end
|
1469
1471
|
def application_gateway_http_listener
|
1470
|
-
Azure::Network::Mgmt::
|
1472
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayHttpListener
|
1471
1473
|
end
|
1472
1474
|
def application_gateway_path_rule
|
1473
|
-
Azure::Network::Mgmt::
|
1475
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayPathRule
|
1474
1476
|
end
|
1475
1477
|
def application_gateway_probe
|
1476
|
-
Azure::Network::Mgmt::
|
1478
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayProbe
|
1477
1479
|
end
|
1478
1480
|
def application_gateway_request_routing_rule
|
1479
|
-
Azure::Network::Mgmt::
|
1481
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRequestRoutingRule
|
1480
1482
|
end
|
1481
1483
|
def application_gateway_rewrite_rule_set
|
1482
|
-
Azure::Network::Mgmt::
|
1484
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRewriteRuleSet
|
1483
1485
|
end
|
1484
1486
|
def application_gateway_redirect_configuration
|
1485
|
-
Azure::Network::Mgmt::
|
1487
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRedirectConfiguration
|
1486
1488
|
end
|
1487
1489
|
def application_gateway_url_path_map
|
1488
|
-
Azure::Network::Mgmt::
|
1490
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayUrlPathMap
|
1489
1491
|
end
|
1490
1492
|
def application_gateway
|
1491
|
-
Azure::Network::Mgmt::
|
1493
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGateway
|
1492
1494
|
end
|
1493
1495
|
def application_gateway_firewall_rule_set
|
1494
|
-
Azure::Network::Mgmt::
|
1496
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallRuleSet
|
1495
1497
|
end
|
1496
1498
|
def application_gateway_available_ssl_options
|
1497
|
-
Azure::Network::Mgmt::
|
1499
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayAvailableSslOptions
|
1498
1500
|
end
|
1499
1501
|
def application_gateway_ssl_predefined_policy
|
1500
|
-
Azure::Network::Mgmt::
|
1502
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslPredefinedPolicy
|
1501
1503
|
end
|
1502
1504
|
def azure_firewall_ipconfiguration
|
1503
|
-
Azure::Network::Mgmt::
|
1505
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallIPConfiguration
|
1504
1506
|
end
|
1505
1507
|
def azure_firewall_application_rule_collection
|
1506
|
-
Azure::Network::Mgmt::
|
1508
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallApplicationRuleCollection
|
1507
1509
|
end
|
1508
1510
|
def azure_firewall_nat_rule_collection
|
1509
|
-
Azure::Network::Mgmt::
|
1511
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNatRuleCollection
|
1510
1512
|
end
|
1511
1513
|
def azure_firewall_network_rule_collection
|
1512
|
-
Azure::Network::Mgmt::
|
1514
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNetworkRuleCollection
|
1513
1515
|
end
|
1514
1516
|
def azure_firewall
|
1515
|
-
Azure::Network::Mgmt::
|
1517
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewall
|
1516
1518
|
end
|
1517
1519
|
def azure_firewall_fqdn_tag
|
1518
|
-
Azure::Network::Mgmt::
|
1520
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallFqdnTag
|
1519
1521
|
end
|
1520
1522
|
def ddos_custom_policy
|
1521
|
-
Azure::Network::Mgmt::
|
1523
|
+
Azure::Network::Mgmt::V2018_12_01::Models::DdosCustomPolicy
|
1522
1524
|
end
|
1523
1525
|
def endpoint_service_result
|
1524
|
-
Azure::Network::Mgmt::
|
1526
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EndpointServiceResult
|
1525
1527
|
end
|
1526
1528
|
def express_route_circuit_authorization
|
1527
|
-
Azure::Network::Mgmt::
|
1529
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitAuthorization
|
1528
1530
|
end
|
1529
1531
|
def route_filter_rule
|
1530
|
-
Azure::Network::Mgmt::
|
1532
|
+
Azure::Network::Mgmt::V2018_12_01::Models::RouteFilterRule
|
1531
1533
|
end
|
1532
1534
|
def express_route_circuit_connection
|
1533
|
-
Azure::Network::Mgmt::
|
1535
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitConnection
|
1534
1536
|
end
|
1535
1537
|
def express_route_circuit_peering
|
1536
|
-
Azure::Network::Mgmt::
|
1538
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeering
|
1537
1539
|
end
|
1538
1540
|
def route_filter
|
1539
|
-
Azure::Network::Mgmt::
|
1541
|
+
Azure::Network::Mgmt::V2018_12_01::Models::RouteFilter
|
1540
1542
|
end
|
1541
1543
|
def express_route_circuit
|
1542
|
-
Azure::Network::Mgmt::
|
1544
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuit
|
1543
1545
|
end
|
1544
1546
|
def express_route_service_provider
|
1545
|
-
Azure::Network::Mgmt::
|
1547
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteServiceProvider
|
1546
1548
|
end
|
1547
1549
|
def express_route_cross_connection_peering
|
1548
|
-
Azure::Network::Mgmt::
|
1550
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnectionPeering
|
1549
1551
|
end
|
1550
1552
|
def express_route_cross_connection
|
1551
|
-
Azure::Network::Mgmt::
|
1553
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCrossConnection
|
1552
1554
|
end
|
1553
1555
|
def express_route_connection
|
1554
|
-
Azure::Network::Mgmt::
|
1556
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteConnection
|
1555
1557
|
end
|
1556
1558
|
def express_route_gateway
|
1557
|
-
Azure::Network::Mgmt::
|
1559
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteGateway
|
1558
1560
|
end
|
1559
1561
|
def express_route_ports_location
|
1560
|
-
Azure::Network::Mgmt::
|
1562
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePortsLocation
|
1561
1563
|
end
|
1562
1564
|
def express_route_link
|
1563
|
-
Azure::Network::Mgmt::
|
1565
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteLink
|
1564
1566
|
end
|
1565
1567
|
def express_route_port
|
1566
|
-
Azure::Network::Mgmt::
|
1568
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePort
|
1567
1569
|
end
|
1568
1570
|
def load_balancing_rule
|
1569
|
-
Azure::Network::Mgmt::
|
1571
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancingRule
|
1570
1572
|
end
|
1571
1573
|
def probe
|
1572
|
-
Azure::Network::Mgmt::
|
1574
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Probe
|
1573
1575
|
end
|
1574
1576
|
def inbound_nat_pool
|
1575
|
-
Azure::Network::Mgmt::
|
1577
|
+
Azure::Network::Mgmt::V2018_12_01::Models::InboundNatPool
|
1576
1578
|
end
|
1577
1579
|
def outbound_rule
|
1578
|
-
Azure::Network::Mgmt::
|
1580
|
+
Azure::Network::Mgmt::V2018_12_01::Models::OutboundRule
|
1579
1581
|
end
|
1580
1582
|
def load_balancer
|
1581
|
-
Azure::Network::Mgmt::
|
1583
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancer
|
1582
1584
|
end
|
1583
1585
|
def container_network_interface_configuration
|
1584
|
-
Azure::Network::Mgmt::
|
1586
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ContainerNetworkInterfaceConfiguration
|
1585
1587
|
end
|
1586
1588
|
def container
|
1587
|
-
Azure::Network::Mgmt::
|
1589
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Container
|
1588
1590
|
end
|
1589
1591
|
def container_network_interface
|
1590
|
-
Azure::Network::Mgmt::
|
1592
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ContainerNetworkInterface
|
1591
1593
|
end
|
1592
1594
|
def network_profile
|
1593
|
-
Azure::Network::Mgmt::
|
1595
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkProfile
|
1594
1596
|
end
|
1595
1597
|
def network_watcher
|
1596
|
-
Azure::Network::Mgmt::
|
1598
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkWatcher
|
1597
1599
|
end
|
1598
1600
|
def public_ipprefix
|
1599
|
-
Azure::Network::Mgmt::
|
1601
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PublicIPPrefix
|
1600
1602
|
end
|
1601
1603
|
def patch_route_filter_rule
|
1602
|
-
Azure::Network::Mgmt::
|
1604
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PatchRouteFilterRule
|
1603
1605
|
end
|
1604
1606
|
def patch_route_filter
|
1605
|
-
Azure::Network::Mgmt::
|
1607
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PatchRouteFilter
|
1606
1608
|
end
|
1607
1609
|
def bgp_service_community
|
1608
|
-
Azure::Network::Mgmt::
|
1610
|
+
Azure::Network::Mgmt::V2018_12_01::Models::BgpServiceCommunity
|
1609
1611
|
end
|
1610
1612
|
def virtual_network_peering
|
1611
|
-
Azure::Network::Mgmt::
|
1613
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkPeering
|
1612
1614
|
end
|
1613
1615
|
def virtual_network
|
1614
|
-
Azure::Network::Mgmt::
|
1616
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetwork
|
1617
|
+
end
|
1618
|
+
def network_intent_policy
|
1619
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkIntentPolicy
|
1615
1620
|
end
|
1616
1621
|
def virtual_network_gateway_ipconfiguration
|
1617
|
-
Azure::Network::Mgmt::
|
1622
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayIPConfiguration
|
1618
1623
|
end
|
1619
1624
|
def vpn_client_root_certificate
|
1620
|
-
Azure::Network::Mgmt::
|
1625
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnClientRootCertificate
|
1621
1626
|
end
|
1622
1627
|
def vpn_client_revoked_certificate
|
1623
|
-
Azure::Network::Mgmt::
|
1628
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnClientRevokedCertificate
|
1624
1629
|
end
|
1625
1630
|
def virtual_network_gateway
|
1626
|
-
Azure::Network::Mgmt::
|
1631
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGateway
|
1627
1632
|
end
|
1628
1633
|
def local_network_gateway
|
1629
|
-
Azure::Network::Mgmt::
|
1634
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LocalNetworkGateway
|
1630
1635
|
end
|
1631
1636
|
def virtual_network_gateway_connection
|
1632
|
-
Azure::Network::Mgmt::
|
1637
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnection
|
1633
1638
|
end
|
1634
1639
|
def connection_shared_key
|
1635
|
-
Azure::Network::Mgmt::
|
1640
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionSharedKey
|
1636
1641
|
end
|
1637
1642
|
def virtual_network_gateway_connection_list_entity
|
1638
|
-
Azure::Network::Mgmt::
|
1643
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnectionListEntity
|
1639
1644
|
end
|
1640
1645
|
def p2_svpn_server_config_vpn_client_root_certificate
|
1641
|
-
Azure::Network::Mgmt::
|
1646
|
+
Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnServerConfigVpnClientRootCertificate
|
1642
1647
|
end
|
1643
1648
|
def p2_svpn_server_config_vpn_client_revoked_certificate
|
1644
|
-
Azure::Network::Mgmt::
|
1649
|
+
Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnServerConfigVpnClientRevokedCertificate
|
1645
1650
|
end
|
1646
1651
|
def p2_svpn_server_config_radius_server_root_certificate
|
1647
|
-
Azure::Network::Mgmt::
|
1652
|
+
Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnServerConfigRadiusServerRootCertificate
|
1648
1653
|
end
|
1649
1654
|
def p2_svpn_server_config_radius_client_root_certificate
|
1650
|
-
Azure::Network::Mgmt::
|
1655
|
+
Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnServerConfigRadiusClientRootCertificate
|
1651
1656
|
end
|
1652
1657
|
def p2_svpn_server_configuration
|
1653
|
-
Azure::Network::Mgmt::
|
1658
|
+
Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnServerConfiguration
|
1654
1659
|
end
|
1655
1660
|
def virtual_wan
|
1656
|
-
Azure::Network::Mgmt::
|
1661
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualWAN
|
1657
1662
|
end
|
1658
1663
|
def vpn_site
|
1659
|
-
Azure::Network::Mgmt::
|
1664
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnSite
|
1660
1665
|
end
|
1661
1666
|
def hub_virtual_network_connection
|
1662
|
-
Azure::Network::Mgmt::
|
1667
|
+
Azure::Network::Mgmt::V2018_12_01::Models::HubVirtualNetworkConnection
|
1663
1668
|
end
|
1664
1669
|
def virtual_hub
|
1665
|
-
Azure::Network::Mgmt::
|
1670
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualHub
|
1666
1671
|
end
|
1667
1672
|
def vpn_connection
|
1668
|
-
Azure::Network::Mgmt::
|
1673
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnConnection
|
1669
1674
|
end
|
1670
1675
|
def vpn_gateway
|
1671
|
-
Azure::Network::Mgmt::
|
1676
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnGateway
|
1672
1677
|
end
|
1673
1678
|
def p2_svpn_gateway
|
1674
|
-
Azure::Network::Mgmt::
|
1679
|
+
Azure::Network::Mgmt::V2018_12_01::Models::P2SVpnGateway
|
1675
1680
|
end
|
1676
1681
|
def ipallocation_method
|
1677
|
-
Azure::Network::Mgmt::
|
1682
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IPAllocationMethod
|
1678
1683
|
end
|
1679
1684
|
def security_rule_protocol
|
1680
|
-
Azure::Network::Mgmt::
|
1685
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SecurityRuleProtocol
|
1681
1686
|
end
|
1682
1687
|
def security_rule_access
|
1683
|
-
Azure::Network::Mgmt::
|
1688
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SecurityRuleAccess
|
1684
1689
|
end
|
1685
1690
|
def security_rule_direction
|
1686
|
-
Azure::Network::Mgmt::
|
1691
|
+
Azure::Network::Mgmt::V2018_12_01::Models::SecurityRuleDirection
|
1687
1692
|
end
|
1688
1693
|
def route_next_hop_type
|
1689
|
-
Azure::Network::Mgmt::
|
1694
|
+
Azure::Network::Mgmt::V2018_12_01::Models::RouteNextHopType
|
1690
1695
|
end
|
1691
1696
|
def public_ipaddress_sku_name
|
1692
|
-
Azure::Network::Mgmt::
|
1697
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PublicIPAddressSkuName
|
1693
1698
|
end
|
1694
1699
|
def ipversion
|
1695
|
-
Azure::Network::Mgmt::
|
1700
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IPVersion
|
1696
1701
|
end
|
1697
1702
|
def transport_protocol
|
1698
|
-
Azure::Network::Mgmt::
|
1703
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TransportProtocol
|
1699
1704
|
end
|
1700
1705
|
def application_gateway_protocol
|
1701
|
-
Azure::Network::Mgmt::
|
1706
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayProtocol
|
1702
1707
|
end
|
1703
1708
|
def application_gateway_cookie_based_affinity
|
1704
|
-
Azure::Network::Mgmt::
|
1709
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayCookieBasedAffinity
|
1705
1710
|
end
|
1706
1711
|
def application_gateway_backend_health_server_health
|
1707
|
-
Azure::Network::Mgmt::
|
1712
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayBackendHealthServerHealth
|
1708
1713
|
end
|
1709
1714
|
def application_gateway_sku_name
|
1710
|
-
Azure::Network::Mgmt::
|
1715
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySkuName
|
1711
1716
|
end
|
1712
1717
|
def application_gateway_tier
|
1713
|
-
Azure::Network::Mgmt::
|
1718
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayTier
|
1714
1719
|
end
|
1715
1720
|
def application_gateway_ssl_protocol
|
1716
|
-
Azure::Network::Mgmt::
|
1721
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslProtocol
|
1717
1722
|
end
|
1718
1723
|
def application_gateway_ssl_policy_type
|
1719
|
-
Azure::Network::Mgmt::
|
1724
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslPolicyType
|
1720
1725
|
end
|
1721
1726
|
def application_gateway_ssl_policy_name
|
1722
|
-
Azure::Network::Mgmt::
|
1727
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslPolicyName
|
1723
1728
|
end
|
1724
1729
|
def application_gateway_ssl_cipher_suite
|
1725
|
-
Azure::Network::Mgmt::
|
1730
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewaySslCipherSuite
|
1726
1731
|
end
|
1727
1732
|
def application_gateway_custom_error_status_code
|
1728
|
-
Azure::Network::Mgmt::
|
1733
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayCustomErrorStatusCode
|
1729
1734
|
end
|
1730
1735
|
def application_gateway_request_routing_rule_type
|
1731
|
-
Azure::Network::Mgmt::
|
1736
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRequestRoutingRuleType
|
1732
1737
|
end
|
1733
1738
|
def application_gateway_redirect_type
|
1734
|
-
Azure::Network::Mgmt::
|
1739
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayRedirectType
|
1735
1740
|
end
|
1736
1741
|
def application_gateway_operational_state
|
1737
|
-
Azure::Network::Mgmt::
|
1742
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayOperationalState
|
1738
1743
|
end
|
1739
1744
|
def application_gateway_firewall_mode
|
1740
|
-
Azure::Network::Mgmt::
|
1745
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ApplicationGatewayFirewallMode
|
1741
1746
|
end
|
1742
1747
|
def resource_identity_type
|
1743
|
-
Azure::Network::Mgmt::
|
1748
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ResourceIdentityType
|
1744
1749
|
end
|
1745
1750
|
def provisioning_state
|
1746
|
-
Azure::Network::Mgmt::
|
1751
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ProvisioningState
|
1747
1752
|
end
|
1748
1753
|
def azure_firewall_rcaction_type
|
1749
|
-
Azure::Network::Mgmt::
|
1754
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallRCActionType
|
1750
1755
|
end
|
1751
1756
|
def azure_firewall_application_rule_protocol_type
|
1752
|
-
Azure::Network::Mgmt::
|
1757
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallApplicationRuleProtocolType
|
1753
1758
|
end
|
1754
1759
|
def azure_firewall_nat_rcaction_type
|
1755
|
-
Azure::Network::Mgmt::
|
1760
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNatRCActionType
|
1756
1761
|
end
|
1757
1762
|
def azure_firewall_network_rule_protocol
|
1758
|
-
Azure::Network::Mgmt::
|
1763
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallNetworkRuleProtocol
|
1764
|
+
end
|
1765
|
+
def azure_firewall_threat_intel_mode
|
1766
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AzureFirewallThreatIntelMode
|
1759
1767
|
end
|
1760
1768
|
def ddos_custom_policy_protocol
|
1761
|
-
Azure::Network::Mgmt::
|
1769
|
+
Azure::Network::Mgmt::V2018_12_01::Models::DdosCustomPolicyProtocol
|
1762
1770
|
end
|
1763
1771
|
def ddos_custom_policy_trigger_sensitivity_override
|
1764
|
-
Azure::Network::Mgmt::
|
1772
|
+
Azure::Network::Mgmt::V2018_12_01::Models::DdosCustomPolicyTriggerSensitivityOverride
|
1765
1773
|
end
|
1766
1774
|
def authorization_use_status
|
1767
|
-
Azure::Network::Mgmt::
|
1775
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AuthorizationUseStatus
|
1768
1776
|
end
|
1769
1777
|
def express_route_circuit_peering_advertised_public_prefix_state
|
1770
|
-
Azure::Network::Mgmt::
|
1778
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeeringAdvertisedPublicPrefixState
|
1771
1779
|
end
|
1772
1780
|
def access
|
1773
|
-
Azure::Network::Mgmt::
|
1781
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Access
|
1774
1782
|
end
|
1775
1783
|
def express_route_peering_type
|
1776
|
-
Azure::Network::Mgmt::
|
1784
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePeeringType
|
1777
1785
|
end
|
1778
1786
|
def express_route_peering_state
|
1779
|
-
Azure::Network::Mgmt::
|
1787
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePeeringState
|
1780
1788
|
end
|
1781
1789
|
def circuit_connection_status
|
1782
|
-
Azure::Network::Mgmt::
|
1790
|
+
Azure::Network::Mgmt::V2018_12_01::Models::CircuitConnectionStatus
|
1783
1791
|
end
|
1784
1792
|
def express_route_circuit_peering_state
|
1785
|
-
Azure::Network::Mgmt::
|
1793
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitPeeringState
|
1786
1794
|
end
|
1787
1795
|
def express_route_circuit_sku_tier
|
1788
|
-
Azure::Network::Mgmt::
|
1796
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitSkuTier
|
1789
1797
|
end
|
1790
1798
|
def express_route_circuit_sku_family
|
1791
|
-
Azure::Network::Mgmt::
|
1799
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteCircuitSkuFamily
|
1792
1800
|
end
|
1793
1801
|
def service_provider_provisioning_state
|
1794
|
-
Azure::Network::Mgmt::
|
1802
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ServiceProviderProvisioningState
|
1795
1803
|
end
|
1796
1804
|
def express_route_link_connector_type
|
1797
|
-
Azure::Network::Mgmt::
|
1805
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteLinkConnectorType
|
1798
1806
|
end
|
1799
1807
|
def express_route_link_admin_state
|
1800
|
-
Azure::Network::Mgmt::
|
1808
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRouteLinkAdminState
|
1801
1809
|
end
|
1802
1810
|
def express_route_ports_encapsulation
|
1803
|
-
Azure::Network::Mgmt::
|
1811
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ExpressRoutePortsEncapsulation
|
1804
1812
|
end
|
1805
1813
|
def load_balancer_sku_name
|
1806
|
-
Azure::Network::Mgmt::
|
1814
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LoadBalancerSkuName
|
1807
1815
|
end
|
1808
1816
|
def load_distribution
|
1809
|
-
Azure::Network::Mgmt::
|
1817
|
+
Azure::Network::Mgmt::V2018_12_01::Models::LoadDistribution
|
1810
1818
|
end
|
1811
1819
|
def probe_protocol
|
1812
|
-
Azure::Network::Mgmt::
|
1820
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ProbeProtocol
|
1813
1821
|
end
|
1814
1822
|
def network_operation_status
|
1815
|
-
Azure::Network::Mgmt::
|
1823
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NetworkOperationStatus
|
1816
1824
|
end
|
1817
1825
|
def effective_security_rule_protocol
|
1818
|
-
Azure::Network::Mgmt::
|
1826
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EffectiveSecurityRuleProtocol
|
1819
1827
|
end
|
1820
1828
|
def effective_route_source
|
1821
|
-
Azure::Network::Mgmt::
|
1829
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EffectiveRouteSource
|
1822
1830
|
end
|
1823
1831
|
def effective_route_state
|
1824
|
-
Azure::Network::Mgmt::
|
1832
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EffectiveRouteState
|
1825
1833
|
end
|
1826
1834
|
def association_type
|
1827
|
-
Azure::Network::Mgmt::
|
1835
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AssociationType
|
1828
1836
|
end
|
1829
1837
|
def direction
|
1830
|
-
Azure::Network::Mgmt::
|
1838
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Direction
|
1831
1839
|
end
|
1832
1840
|
def ip_flow_protocol
|
1833
|
-
Azure::Network::Mgmt::
|
1841
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IpFlowProtocol
|
1834
1842
|
end
|
1835
1843
|
def next_hop_type
|
1836
|
-
Azure::Network::Mgmt::
|
1844
|
+
Azure::Network::Mgmt::V2018_12_01::Models::NextHopType
|
1837
1845
|
end
|
1838
1846
|
def pc_protocol
|
1839
|
-
Azure::Network::Mgmt::
|
1847
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PcProtocol
|
1840
1848
|
end
|
1841
1849
|
def pc_status
|
1842
|
-
Azure::Network::Mgmt::
|
1850
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PcStatus
|
1843
1851
|
end
|
1844
1852
|
def pc_error
|
1845
|
-
Azure::Network::Mgmt::
|
1853
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PcError
|
1846
1854
|
end
|
1847
1855
|
def flow_log_format_type
|
1848
|
-
Azure::Network::Mgmt::
|
1856
|
+
Azure::Network::Mgmt::V2018_12_01::Models::FlowLogFormatType
|
1849
1857
|
end
|
1850
1858
|
def protocol
|
1851
|
-
Azure::Network::Mgmt::
|
1859
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Protocol
|
1852
1860
|
end
|
1853
1861
|
def httpmethod
|
1854
|
-
Azure::Network::Mgmt::
|
1862
|
+
Azure::Network::Mgmt::V2018_12_01::Models::HTTPMethod
|
1855
1863
|
end
|
1856
1864
|
def origin
|
1857
|
-
Azure::Network::Mgmt::
|
1865
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Origin
|
1858
1866
|
end
|
1859
1867
|
def severity
|
1860
|
-
Azure::Network::Mgmt::
|
1868
|
+
Azure::Network::Mgmt::V2018_12_01::Models::Severity
|
1861
1869
|
end
|
1862
1870
|
def issue_type
|
1863
|
-
Azure::Network::Mgmt::
|
1871
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IssueType
|
1864
1872
|
end
|
1865
1873
|
def connection_status
|
1866
|
-
Azure::Network::Mgmt::
|
1874
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionStatus
|
1867
1875
|
end
|
1868
1876
|
def connection_monitor_source_status
|
1869
|
-
Azure::Network::Mgmt::
|
1877
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionMonitorSourceStatus
|
1870
1878
|
end
|
1871
1879
|
def connection_state
|
1872
|
-
Azure::Network::Mgmt::
|
1880
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ConnectionState
|
1873
1881
|
end
|
1874
1882
|
def evaluation_state
|
1875
|
-
Azure::Network::Mgmt::
|
1883
|
+
Azure::Network::Mgmt::V2018_12_01::Models::EvaluationState
|
1876
1884
|
end
|
1877
1885
|
def verbosity_level
|
1878
|
-
Azure::Network::Mgmt::
|
1886
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VerbosityLevel
|
1879
1887
|
end
|
1880
1888
|
def public_ipprefix_sku_name
|
1881
|
-
Azure::Network::Mgmt::
|
1889
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PublicIPPrefixSkuName
|
1882
1890
|
end
|
1883
1891
|
def virtual_network_peering_state
|
1884
|
-
Azure::Network::Mgmt::
|
1892
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkPeeringState
|
1885
1893
|
end
|
1886
1894
|
def virtual_network_gateway_type
|
1887
|
-
Azure::Network::Mgmt::
|
1895
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayType
|
1888
1896
|
end
|
1889
1897
|
def vpn_type
|
1890
|
-
Azure::Network::Mgmt::
|
1898
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnType
|
1891
1899
|
end
|
1892
1900
|
def virtual_network_gateway_sku_name
|
1893
|
-
Azure::Network::Mgmt::
|
1901
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewaySkuName
|
1894
1902
|
end
|
1895
1903
|
def virtual_network_gateway_sku_tier
|
1896
|
-
Azure::Network::Mgmt::
|
1904
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewaySkuTier
|
1897
1905
|
end
|
1898
1906
|
def vpn_client_protocol
|
1899
|
-
Azure::Network::Mgmt::
|
1907
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnClientProtocol
|
1900
1908
|
end
|
1901
1909
|
def ipsec_encryption
|
1902
|
-
Azure::Network::Mgmt::
|
1910
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IpsecEncryption
|
1903
1911
|
end
|
1904
1912
|
def ipsec_integrity
|
1905
|
-
Azure::Network::Mgmt::
|
1913
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IpsecIntegrity
|
1906
1914
|
end
|
1907
1915
|
def ike_encryption
|
1908
|
-
Azure::Network::Mgmt::
|
1916
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IkeEncryption
|
1909
1917
|
end
|
1910
1918
|
def ike_integrity
|
1911
|
-
Azure::Network::Mgmt::
|
1919
|
+
Azure::Network::Mgmt::V2018_12_01::Models::IkeIntegrity
|
1912
1920
|
end
|
1913
1921
|
def dh_group
|
1914
|
-
Azure::Network::Mgmt::
|
1922
|
+
Azure::Network::Mgmt::V2018_12_01::Models::DhGroup
|
1915
1923
|
end
|
1916
1924
|
def pfs_group
|
1917
|
-
Azure::Network::Mgmt::
|
1925
|
+
Azure::Network::Mgmt::V2018_12_01::Models::PfsGroup
|
1918
1926
|
end
|
1919
1927
|
def bgp_peer_state
|
1920
|
-
Azure::Network::Mgmt::
|
1928
|
+
Azure::Network::Mgmt::V2018_12_01::Models::BgpPeerState
|
1921
1929
|
end
|
1922
1930
|
def processor_architecture
|
1923
|
-
Azure::Network::Mgmt::
|
1931
|
+
Azure::Network::Mgmt::V2018_12_01::Models::ProcessorArchitecture
|
1924
1932
|
end
|
1925
1933
|
def authentication_method
|
1926
|
-
Azure::Network::Mgmt::
|
1934
|
+
Azure::Network::Mgmt::V2018_12_01::Models::AuthenticationMethod
|
1927
1935
|
end
|
1928
1936
|
def virtual_network_gateway_connection_status
|
1929
|
-
Azure::Network::Mgmt::
|
1937
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnectionStatus
|
1930
1938
|
end
|
1931
1939
|
def virtual_network_gateway_connection_type
|
1932
|
-
Azure::Network::Mgmt::
|
1940
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnectionType
|
1933
1941
|
end
|
1934
1942
|
def virtual_network_gateway_connection_protocol
|
1935
|
-
Azure::Network::Mgmt::
|
1943
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualNetworkGatewayConnectionProtocol
|
1936
1944
|
end
|
1937
1945
|
def office_traffic_category
|
1938
|
-
Azure::Network::Mgmt::
|
1946
|
+
Azure::Network::Mgmt::V2018_12_01::Models::OfficeTrafficCategory
|
1939
1947
|
end
|
1940
1948
|
def vpn_gateway_tunneling_protocol
|
1941
|
-
Azure::Network::Mgmt::
|
1949
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnGatewayTunnelingProtocol
|
1942
1950
|
end
|
1943
1951
|
def vpn_connection_status
|
1944
|
-
Azure::Network::Mgmt::
|
1952
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VpnConnectionStatus
|
1945
1953
|
end
|
1946
1954
|
def virtual_wan_security_provider_type
|
1947
|
-
Azure::Network::Mgmt::
|
1955
|
+
Azure::Network::Mgmt::V2018_12_01::Models::VirtualWanSecurityProviderType
|
1948
1956
|
end
|
1949
1957
|
def tunnel_connection_status
|
1950
|
-
Azure::Network::Mgmt::
|
1958
|
+
Azure::Network::Mgmt::V2018_12_01::Models::TunnelConnectionStatus
|
1951
1959
|
end
|
1952
1960
|
def hub_virtual_network_connection_status
|
1953
|
-
Azure::Network::Mgmt::
|
1961
|
+
Azure::Network::Mgmt::V2018_12_01::Models::HubVirtualNetworkConnectionStatus
|
1954
1962
|
end
|
1955
1963
|
end
|
1956
1964
|
end
|