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