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