azure_sdk 0.18.10 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/azure_sdk/version.rb +1 -1
- data/lib/latest/latest_profile_client.rb +10 -1
- data/lib/latest/modules/containerinstance_profile_module.rb +139 -101
- data/lib/latest/modules/network_profile_module.rb +405 -383
- data/lib/latest/modules/textanalytics_profile_module.rb +41 -41
- data/lib/latest/modules/visualsearch_profile_module.rb +235 -0
- metadata +11 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bcca4c4b511f4ed2e41988b05a0204b7eed9c19
|
4
|
+
data.tar.gz: dc90f66a50cba57193f04c0369906a5f5575b004
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7c535cddcfe80ddff257e28dda986c634566e6829b8014a24e8822d261aaead2a1844881608f14420dc898e103d382c5f8276bf6f57f06d11f501da4d28b4af
|
7
|
+
data.tar.gz: 4a22952d1db3cb810c1c17a9e5bec5ed26eb4ea1ea73e1b1209fa9e86b7699b2fe0aa85fdb33f8488cd3f01c2b57bbf9462252366cc5b54cd9b8474573dc07bc
|
data/lib/azure_sdk/version.rb
CHANGED
@@ -77,6 +77,7 @@ require 'latest/modules/spellcheck_profile_module'
|
|
77
77
|
require 'latest/modules/textanalytics_profile_module'
|
78
78
|
require 'latest/modules/videosearch_profile_module'
|
79
79
|
require 'latest/modules/websearch_profile_module'
|
80
|
+
require 'latest/modules/visualsearch_profile_module'
|
80
81
|
|
81
82
|
module Azure::Profiles::Latest
|
82
83
|
#
|
@@ -85,7 +86,7 @@ module Azure::Profiles::Latest
|
|
85
86
|
class Client
|
86
87
|
include MsRestAzure::Common::Configurable
|
87
88
|
|
88
|
-
attr_reader :analysis_services, :api_management, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :data_migration, :dev_spaces, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :graph_rbac, :iot_central, :iot_hub, :key_vault, :links, :locks, :logic, :machine_learning, :managed_applications, :marketplace_ordering, :media_services, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :policy_insights, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :security, :service_bus, :service_fabric, :signalr, :sql, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :computer_vision, :content_moderator, :custom_search, :entity_search, :face, :image_search, :news_search, :spell_check, :text_analytics, :video_search, :web_search
|
89
|
+
attr_reader :analysis_services, :api_management, :authorization, :automation, :batch, :billing, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :customer_insights, :data_lake_analytics, :data_lake_store, :data_migration, :dev_spaces, :dev_test_labs, :dns, :event_grid, :event_hub, :features, :graph_rbac, :iot_central, :iot_hub, :key_vault, :links, :locks, :logic, :machine_learning, :managed_applications, :marketplace_ordering, :media_services, :monitor, :managed_service_identity, :network, :notification_hubs, :operational_insights, :policy, :policy_insights, :power_bi_embedded, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :resources, :resources_management, :scheduler, :search, :security, :service_bus, :service_fabric, :signalr, :sql, :stor_simple8000_series, :storage, :stream_analytics, :subscriptions, :traffic_manager, :web, :computer_vision, :content_moderator, :custom_search, :entity_search, :face, :image_search, :news_search, :spell_check, :text_analytics, :video_search, :web_search, :visual_search
|
89
90
|
|
90
91
|
#
|
91
92
|
# Initializes a new instance of the Client class.
|
@@ -191,6 +192,7 @@ module Azure::Profiles::Latest
|
|
191
192
|
@text_analytics = TextAnalyticsAdapter.new(self, base_url, sdk_options)
|
192
193
|
@video_search = VideoSearchAdapter.new(self, base_url, sdk_options)
|
193
194
|
@web_search = WebSearchAdapter.new(self, base_url, sdk_options)
|
195
|
+
@visual_search = VisualSearchAdapter.new(self, base_url, sdk_options)
|
194
196
|
end
|
195
197
|
|
196
198
|
class AnalysisServicesAdapter
|
@@ -775,5 +777,12 @@ module Azure::Profiles::Latest
|
|
775
777
|
end
|
776
778
|
end
|
777
779
|
|
780
|
+
class VisualSearchAdapter < Azure::Profiles::Latest::VisualSearch::VisualSearchDataClass
|
781
|
+
|
782
|
+
def initialize(context, base_url, options)
|
783
|
+
super(context)
|
784
|
+
end
|
785
|
+
end
|
786
|
+
|
778
787
|
end
|
779
788
|
end
|
@@ -7,61 +7,71 @@ require 'azure_mgmt_container_instance'
|
|
7
7
|
module Azure::Profiles::Latest
|
8
8
|
module ContainerInstance
|
9
9
|
module Mgmt
|
10
|
-
ContainerGroups = Azure::ContainerInstance::Mgmt::
|
11
|
-
Operations = Azure::ContainerInstance::Mgmt::
|
12
|
-
ContainerGroupUsage = Azure::ContainerInstance::Mgmt::
|
13
|
-
ContainerOperations = Azure::ContainerInstance::Mgmt::
|
10
|
+
ContainerGroups = Azure::ContainerInstance::Mgmt::V2018_10_01::ContainerGroups
|
11
|
+
Operations = Azure::ContainerInstance::Mgmt::V2018_10_01::Operations
|
12
|
+
ContainerGroupUsage = Azure::ContainerInstance::Mgmt::V2018_10_01::ContainerGroupUsage
|
13
|
+
ContainerOperations = Azure::ContainerInstance::Mgmt::V2018_10_01::ContainerOperations
|
14
|
+
ServiceAssociationLink = Azure::ContainerInstance::Mgmt::V2018_10_01::ServiceAssociationLink
|
14
15
|
|
15
16
|
module Models
|
16
|
-
Port = Azure::ContainerInstance::Mgmt::
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
17
|
+
Port = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Port
|
18
|
+
ContainerPort = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerPort
|
19
|
+
IpAddress = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::IpAddress
|
20
|
+
ContainerState = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerState
|
21
|
+
ContainerGroupPropertiesInstanceView = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupPropertiesInstanceView
|
22
|
+
ContainerPropertiesInstanceView = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerPropertiesInstanceView
|
23
|
+
LogAnalytics = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::LogAnalytics
|
24
|
+
ResourceRequests = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ResourceRequests
|
25
|
+
ContainerGroupDiagnostics = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupDiagnostics
|
26
|
+
ResourceRequirements = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ResourceRequirements
|
27
|
+
ContainerGroupNetworkProfile = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupNetworkProfile
|
28
|
+
ContainerExec = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerExec
|
29
|
+
DnsConfiguration = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::DnsConfiguration
|
30
|
+
ContainerProbe = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerProbe
|
31
|
+
Container = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Container
|
32
|
+
GitRepoVolume = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::GitRepoVolume
|
33
|
+
OperationDisplay = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::OperationDisplay
|
34
|
+
ContainerGroupIdentityUserAssignedIdentitiesValue = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupIdentityUserAssignedIdentitiesValue
|
35
|
+
Operation = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Operation
|
36
|
+
ImageRegistryCredential = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ImageRegistryCredential
|
37
|
+
OperationListResult = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::OperationListResult
|
38
|
+
Event = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Event
|
39
|
+
UsageName = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::UsageName
|
40
|
+
ResourceLimits = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ResourceLimits
|
41
|
+
Usage = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Usage
|
42
|
+
ContainerHttpGet = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerHttpGet
|
43
|
+
UsageListResult = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::UsageListResult
|
44
|
+
Volume = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Volume
|
45
|
+
ContainerGroupListResult = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupListResult
|
46
|
+
EnvironmentVariable = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::EnvironmentVariable
|
47
|
+
Logs = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Logs
|
48
|
+
VolumeMount = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::VolumeMount
|
49
|
+
ContainerExecRequestTerminalSize = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerExecRequestTerminalSize
|
50
|
+
ContainerGroupIdentity = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupIdentity
|
51
|
+
ContainerExecRequest = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerExecRequest
|
52
|
+
AzureFileVolume = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::AzureFileVolume
|
53
|
+
ContainerExecResponse = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerExecResponse
|
54
|
+
GpuResource = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::GpuResource
|
55
|
+
Resource = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Resource
|
56
|
+
ContainerGroup = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroup
|
57
|
+
ContainerNetworkProtocol = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerNetworkProtocol
|
58
|
+
GpuSku = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::GpuSku
|
59
|
+
ResourceIdentityType = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ResourceIdentityType
|
60
|
+
ContainerGroupRestartPolicy = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupRestartPolicy
|
61
|
+
ContainerGroupNetworkProtocol = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupNetworkProtocol
|
62
|
+
ContainerGroupIpAddressType = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupIpAddressType
|
63
|
+
OperatingSystemTypes = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::OperatingSystemTypes
|
64
|
+
LogAnalyticsLogType = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::LogAnalyticsLogType
|
65
|
+
ContainerInstanceOperationsOrigin = Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerInstanceOperationsOrigin
|
56
66
|
end
|
57
67
|
|
58
68
|
class ContainerInstanceManagementClass
|
59
|
-
attr_reader :container_groups, :operations, :container_group_usage, :container_operations, :configurable, :base_url, :options, :model_classes
|
69
|
+
attr_reader :container_groups, :operations, :container_group_usage, :container_operations, :service_association_link, :configurable, :base_url, :options, :model_classes
|
60
70
|
|
61
71
|
def initialize(configurable, base_url=nil, options=nil)
|
62
72
|
@configurable, @base_url, @options = configurable, base_url, options
|
63
73
|
|
64
|
-
@client_0 = Azure::ContainerInstance::Mgmt::
|
74
|
+
@client_0 = Azure::ContainerInstance::Mgmt::V2018_10_01::ContainerInstanceManagementClient.new(configurable.credentials, base_url, options)
|
65
75
|
if(@client_0.respond_to?(:subscription_id))
|
66
76
|
@client_0.subscription_id = configurable.subscription_id
|
67
77
|
end
|
@@ -70,6 +80,7 @@ module Azure::Profiles::Latest
|
|
70
80
|
@operations = @client_0.operations
|
71
81
|
@container_group_usage = @client_0.container_group_usage
|
72
82
|
@container_operations = @client_0.container_operations
|
83
|
+
@service_association_link = @client_0.service_association_link
|
73
84
|
|
74
85
|
@model_classes = ModelClasses.new
|
75
86
|
end
|
@@ -89,124 +100,151 @@ module Azure::Profiles::Latest
|
|
89
100
|
|
90
101
|
class ModelClasses
|
91
102
|
def port
|
92
|
-
Azure::ContainerInstance::Mgmt::
|
103
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Port
|
104
|
+
end
|
105
|
+
def container_port
|
106
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerPort
|
93
107
|
end
|
94
108
|
def ip_address
|
95
|
-
Azure::ContainerInstance::Mgmt::
|
109
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::IpAddress
|
96
110
|
end
|
97
|
-
def
|
98
|
-
Azure::ContainerInstance::Mgmt::
|
111
|
+
def container_state
|
112
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerState
|
99
113
|
end
|
100
114
|
def container_group_properties_instance_view
|
101
|
-
Azure::ContainerInstance::Mgmt::
|
115
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupPropertiesInstanceView
|
102
116
|
end
|
103
|
-
def
|
104
|
-
Azure::ContainerInstance::Mgmt::
|
117
|
+
def container_properties_instance_view
|
118
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerPropertiesInstanceView
|
105
119
|
end
|
106
120
|
def log_analytics
|
107
|
-
Azure::ContainerInstance::Mgmt::
|
121
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::LogAnalytics
|
108
122
|
end
|
109
123
|
def resource_requests
|
110
|
-
Azure::ContainerInstance::Mgmt::
|
124
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ResourceRequests
|
111
125
|
end
|
112
126
|
def container_group_diagnostics
|
113
|
-
Azure::ContainerInstance::Mgmt::
|
127
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupDiagnostics
|
114
128
|
end
|
115
129
|
def resource_requirements
|
116
|
-
Azure::ContainerInstance::Mgmt::
|
130
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ResourceRequirements
|
117
131
|
end
|
118
|
-
def
|
119
|
-
Azure::ContainerInstance::Mgmt::
|
132
|
+
def container_group_network_profile
|
133
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupNetworkProfile
|
120
134
|
end
|
121
|
-
def
|
122
|
-
Azure::ContainerInstance::Mgmt::
|
135
|
+
def container_exec
|
136
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerExec
|
123
137
|
end
|
124
|
-
def
|
125
|
-
Azure::ContainerInstance::Mgmt::
|
138
|
+
def dns_configuration
|
139
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::DnsConfiguration
|
140
|
+
end
|
141
|
+
def container_probe
|
142
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerProbe
|
126
143
|
end
|
127
144
|
def container
|
128
|
-
Azure::ContainerInstance::Mgmt::
|
145
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Container
|
146
|
+
end
|
147
|
+
def git_repo_volume
|
148
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::GitRepoVolume
|
149
|
+
end
|
150
|
+
def operation_display
|
151
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::OperationDisplay
|
152
|
+
end
|
153
|
+
def container_group_identity_user_assigned_identities_value
|
154
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupIdentityUserAssignedIdentitiesValue
|
129
155
|
end
|
130
156
|
def operation
|
131
|
-
Azure::ContainerInstance::Mgmt::
|
157
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Operation
|
132
158
|
end
|
133
|
-
def
|
134
|
-
Azure::ContainerInstance::Mgmt::
|
159
|
+
def image_registry_credential
|
160
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ImageRegistryCredential
|
135
161
|
end
|
136
162
|
def operation_list_result
|
137
|
-
Azure::ContainerInstance::Mgmt::
|
163
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::OperationListResult
|
138
164
|
end
|
139
|
-
def
|
140
|
-
Azure::ContainerInstance::Mgmt::
|
165
|
+
def event
|
166
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Event
|
141
167
|
end
|
142
168
|
def usage_name
|
143
|
-
Azure::ContainerInstance::Mgmt::
|
169
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::UsageName
|
144
170
|
end
|
145
|
-
def
|
146
|
-
Azure::ContainerInstance::Mgmt::
|
171
|
+
def resource_limits
|
172
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ResourceLimits
|
147
173
|
end
|
148
174
|
def usage
|
149
|
-
Azure::ContainerInstance::Mgmt::
|
175
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Usage
|
150
176
|
end
|
151
|
-
def
|
152
|
-
Azure::ContainerInstance::Mgmt::
|
177
|
+
def container_http_get
|
178
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerHttpGet
|
153
179
|
end
|
154
180
|
def usage_list_result
|
155
|
-
Azure::ContainerInstance::Mgmt::
|
181
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::UsageListResult
|
156
182
|
end
|
157
|
-
def
|
158
|
-
Azure::ContainerInstance::Mgmt::
|
183
|
+
def volume
|
184
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Volume
|
159
185
|
end
|
160
186
|
def container_group_list_result
|
161
|
-
Azure::ContainerInstance::Mgmt::
|
187
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupListResult
|
162
188
|
end
|
163
|
-
def
|
164
|
-
Azure::ContainerInstance::Mgmt::
|
189
|
+
def environment_variable
|
190
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::EnvironmentVariable
|
165
191
|
end
|
166
192
|
def logs
|
167
|
-
Azure::ContainerInstance::Mgmt::
|
193
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Logs
|
168
194
|
end
|
169
|
-
def
|
170
|
-
Azure::ContainerInstance::Mgmt::
|
195
|
+
def volume_mount
|
196
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::VolumeMount
|
171
197
|
end
|
172
198
|
def container_exec_request_terminal_size
|
173
|
-
Azure::ContainerInstance::Mgmt::
|
199
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerExecRequestTerminalSize
|
174
200
|
end
|
175
|
-
def
|
176
|
-
Azure::ContainerInstance::Mgmt::
|
201
|
+
def container_group_identity
|
202
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupIdentity
|
177
203
|
end
|
178
204
|
def container_exec_request
|
179
|
-
Azure::ContainerInstance::Mgmt::
|
205
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerExecRequest
|
180
206
|
end
|
181
|
-
def
|
182
|
-
Azure::ContainerInstance::Mgmt::
|
207
|
+
def azure_file_volume
|
208
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::AzureFileVolume
|
183
209
|
end
|
184
210
|
def container_exec_response
|
185
|
-
Azure::ContainerInstance::Mgmt::
|
211
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerExecResponse
|
186
212
|
end
|
187
|
-
def
|
188
|
-
Azure::ContainerInstance::Mgmt::
|
213
|
+
def gpu_resource
|
214
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::GpuResource
|
189
215
|
end
|
190
216
|
def resource
|
191
|
-
Azure::ContainerInstance::Mgmt::
|
217
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::Resource
|
192
218
|
end
|
193
219
|
def container_group
|
194
|
-
Azure::ContainerInstance::Mgmt::
|
220
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroup
|
195
221
|
end
|
196
222
|
def container_network_protocol
|
197
|
-
Azure::ContainerInstance::Mgmt::
|
223
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerNetworkProtocol
|
224
|
+
end
|
225
|
+
def gpu_sku
|
226
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::GpuSku
|
227
|
+
end
|
228
|
+
def resource_identity_type
|
229
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ResourceIdentityType
|
198
230
|
end
|
199
231
|
def container_group_restart_policy
|
200
|
-
Azure::ContainerInstance::Mgmt::
|
232
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupRestartPolicy
|
201
233
|
end
|
202
234
|
def container_group_network_protocol
|
203
|
-
Azure::ContainerInstance::Mgmt::
|
235
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupNetworkProtocol
|
236
|
+
end
|
237
|
+
def container_group_ip_address_type
|
238
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerGroupIpAddressType
|
204
239
|
end
|
205
240
|
def operating_system_types
|
206
|
-
Azure::ContainerInstance::Mgmt::
|
241
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::OperatingSystemTypes
|
242
|
+
end
|
243
|
+
def log_analytics_log_type
|
244
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::LogAnalyticsLogType
|
207
245
|
end
|
208
246
|
def container_instance_operations_origin
|
209
|
-
Azure::ContainerInstance::Mgmt::
|
247
|
+
Azure::ContainerInstance::Mgmt::V2018_10_01::Models::ContainerInstanceOperationsOrigin
|
210
248
|
end
|
211
249
|
end
|
212
250
|
end
|
@@ -30,6 +30,7 @@ module Azure::Profiles::Latest
|
|
30
30
|
LoadBalancerFrontendIPConfigurations = Azure::Network::Mgmt::V2018_08_01::LoadBalancerFrontendIPConfigurations
|
31
31
|
InboundNatRules = Azure::Network::Mgmt::V2018_08_01::InboundNatRules
|
32
32
|
LoadBalancerLoadBalancingRules = Azure::Network::Mgmt::V2018_08_01::LoadBalancerLoadBalancingRules
|
33
|
+
LoadBalancerOutboundRules = Azure::Network::Mgmt::V2018_08_01::LoadBalancerOutboundRules
|
33
34
|
LoadBalancerNetworkInterfaces = Azure::Network::Mgmt::V2018_08_01::LoadBalancerNetworkInterfaces
|
34
35
|
LoadBalancerProbes = Azure::Network::Mgmt::V2018_08_01::LoadBalancerProbes
|
35
36
|
NetworkInterfaces = Azure::Network::Mgmt::V2018_08_01::NetworkInterfaces
|
@@ -72,236 +73,239 @@ module Azure::Profiles::Latest
|
|
72
73
|
P2sVpnGateways = Azure::Network::Mgmt::V2018_08_01::P2sVpnGateways
|
73
74
|
|
74
75
|
module Models
|
75
|
-
|
76
|
-
|
77
|
-
|
76
|
+
ErrorResponse = Azure::Network::Mgmt::V2018_08_01::Models::ErrorResponse
|
77
|
+
BGPCommunity = Azure::Network::Mgmt::V2018_08_01::Models::BGPCommunity
|
78
|
+
RouteListResult = Azure::Network::Mgmt::V2018_08_01::Models::RouteListResult
|
78
79
|
ExpressRouteCrossConnectionListResult = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCrossConnectionListResult
|
79
|
-
|
80
|
+
EndpointService = Azure::Network::Mgmt::V2018_08_01::Models::EndpointService
|
80
81
|
ExpressRouteCrossConnectionPeeringList = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCrossConnectionPeeringList
|
81
|
-
|
82
|
+
NetworkInterfaceDnsSettings = Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceDnsSettings
|
82
83
|
VirtualHubId = Azure::Network::Mgmt::V2018_08_01::Models::VirtualHubId
|
83
|
-
|
84
|
+
VpnClientConnectionHealth = Azure::Network::Mgmt::V2018_08_01::Models::VpnClientConnectionHealth
|
84
85
|
ExpressRouteCircuitPeeringId = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitPeeringId
|
85
|
-
|
86
|
+
VirtualWanSecurityProviders = Azure::Network::Mgmt::V2018_08_01::Models::VirtualWanSecurityProviders
|
86
87
|
ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds
|
87
|
-
|
88
|
+
VirtualWanSecurityProvider = Azure::Network::Mgmt::V2018_08_01::Models::VirtualWanSecurityProvider
|
88
89
|
ExpressRouteGatewayPropertiesAutoScaleConfiguration = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteGatewayPropertiesAutoScaleConfiguration
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
90
|
+
PublicIPAddressSku = Azure::Network::Mgmt::V2018_08_01::Models::PublicIPAddressSku
|
91
|
+
RouteTableListResult = Azure::Network::Mgmt::V2018_08_01::Models::RouteTableListResult
|
92
|
+
IpTag = Azure::Network::Mgmt::V2018_08_01::Models::IpTag
|
93
|
+
RouteFilterRuleListResult = Azure::Network::Mgmt::V2018_08_01::Models::RouteFilterRuleListResult
|
94
|
+
ListVpnConnectionsResult = Azure::Network::Mgmt::V2018_08_01::Models::ListVpnConnectionsResult
|
94
95
|
ExpressRouteGatewayList = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteGatewayList
|
95
|
-
ConnectionResetSharedKey = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionResetSharedKey
|
96
|
-
ExpressRouteConnectionList = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteConnectionList
|
97
96
|
ListVirtualHubsResult = Azure::Network::Mgmt::V2018_08_01::Models::ListVirtualHubsResult
|
97
|
+
ExpressRouteConnectionList = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteConnectionList
|
98
|
+
VirtualHubRoute = Azure::Network::Mgmt::V2018_08_01::Models::VirtualHubRoute
|
98
99
|
InterfaceEndpointListResult = Azure::Network::Mgmt::V2018_08_01::Models::InterfaceEndpointListResult
|
99
|
-
|
100
|
+
ListVpnSitesResult = Azure::Network::Mgmt::V2018_08_01::Models::ListVpnSitesResult
|
100
101
|
LoadBalancerSku = Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerSku
|
101
|
-
|
102
|
-
|
103
|
-
|
102
|
+
ListVirtualWANsResult = Azure::Network::Mgmt::V2018_08_01::Models::ListVirtualWANsResult
|
103
|
+
RouteFilterListResult = Azure::Network::Mgmt::V2018_08_01::Models::RouteFilterListResult
|
104
|
+
VirtualNetworkGatewayListConnectionsResult = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkGatewayListConnectionsResult
|
105
|
+
PublicIPPrefixListResult = Azure::Network::Mgmt::V2018_08_01::Models::PublicIPPrefixListResult
|
106
|
+
VirtualNetworkConnectionGatewayReference = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkConnectionGatewayReference
|
104
107
|
ReferencedPublicIpAddress = Azure::Network::Mgmt::V2018_08_01::Models::ReferencedPublicIpAddress
|
105
|
-
|
108
|
+
LocalNetworkGatewayListResult = Azure::Network::Mgmt::V2018_08_01::Models::LocalNetworkGatewayListResult
|
106
109
|
PublicIPPrefixSku = Azure::Network::Mgmt::V2018_08_01::Models::PublicIPPrefixSku
|
107
|
-
|
110
|
+
ApplicationGatewayBackendHealthHttpSettings = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendHealthHttpSettings
|
108
111
|
PublicIPAddressListResult = Azure::Network::Mgmt::V2018_08_01::Models::PublicIPAddressListResult
|
109
|
-
|
110
|
-
OperationListResult = Azure::Network::Mgmt::V2018_08_01::Models::OperationListResult
|
111
|
-
ApplicationGatewayBackendHealthPool = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendHealthPool
|
112
|
+
ApplicationGatewayBackendHealth = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendHealth
|
112
113
|
LoadBalancerListResult = Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerListResult
|
113
|
-
|
114
|
+
ApplicationGatewaySslPolicy = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewaySslPolicy
|
114
115
|
InboundNatRuleListResult = Azure::Network::Mgmt::V2018_08_01::Models::InboundNatRuleListResult
|
115
|
-
|
116
|
+
ConnectionResetSharedKey = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionResetSharedKey
|
116
117
|
LoadBalancerBackendAddressPoolListResult = Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerBackendAddressPoolListResult
|
117
|
-
|
118
|
+
TunnelConnectionHealth = Azure::Network::Mgmt::V2018_08_01::Models::TunnelConnectionHealth
|
118
119
|
LoadBalancerFrontendIPConfigurationListResult = Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerFrontendIPConfigurationListResult
|
119
|
-
|
120
|
+
BgpPeerStatusListResult = Azure::Network::Mgmt::V2018_08_01::Models::BgpPeerStatusListResult
|
120
121
|
LoadBalancerLoadBalancingRuleListResult = Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerLoadBalancingRuleListResult
|
121
|
-
|
122
|
-
|
122
|
+
VirtualNetworkGatewayListResult = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkGatewayListResult
|
123
|
+
LoadBalancerOutboundRuleListResult = Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerOutboundRuleListResult
|
123
124
|
ApplicationGatewayProbeHealthResponseMatch = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayProbeHealthResponseMatch
|
125
|
+
LoadBalancerProbeListResult = Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerProbeListResult
|
126
|
+
BgpPeerStatus = Azure::Network::Mgmt::V2018_08_01::Models::BgpPeerStatus
|
124
127
|
NetworkInterfaceListResult = Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceListResult
|
125
|
-
|
128
|
+
VpnClientConfiguration = Azure::Network::Mgmt::V2018_08_01::Models::VpnClientConfiguration
|
126
129
|
ErrorDetails = Azure::Network::Mgmt::V2018_08_01::Models::ErrorDetails
|
127
|
-
|
130
|
+
ApplicationGatewayFirewallExclusion = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayFirewallExclusion
|
128
131
|
Error = Azure::Network::Mgmt::V2018_08_01::Models::Error
|
129
|
-
|
132
|
+
ApplicationGatewayAutoscaleConfiguration = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayAutoscaleConfiguration
|
130
133
|
AzureAsyncOperationResult = Azure::Network::Mgmt::V2018_08_01::Models::AzureAsyncOperationResult
|
131
|
-
|
134
|
+
ApplicationGatewayListResult = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayListResult
|
132
135
|
NetworkInterfaceTapConfigurationListResult = Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceTapConfigurationListResult
|
133
|
-
|
136
|
+
ApplicationGatewayFirewallRuleGroup = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayFirewallRuleGroup
|
134
137
|
NetworkInterfaceIPConfigurationListResult = Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceIPConfigurationListResult
|
135
|
-
|
138
|
+
ApplicationGatewayAvailableWafRuleSetsResult = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayAvailableWafRuleSetsResult
|
136
139
|
NetworkInterfaceLoadBalancerListResult = Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceLoadBalancerListResult
|
137
|
-
|
140
|
+
VirtualNetworkListUsageResult = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkListUsageResult
|
138
141
|
EffectiveNetworkSecurityGroupAssociation = Azure::Network::Mgmt::V2018_08_01::Models::EffectiveNetworkSecurityGroupAssociation
|
139
|
-
|
142
|
+
Resource = Azure::Network::Mgmt::V2018_08_01::Models::Resource
|
140
143
|
EffectiveNetworkSecurityRule = Azure::Network::Mgmt::V2018_08_01::Models::EffectiveNetworkSecurityRule
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
+
ApplicationSecurityGroupListResult = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationSecurityGroupListResult
|
145
|
+
EffectiveNetworkSecurityGroup = Azure::Network::Mgmt::V2018_08_01::Models::EffectiveNetworkSecurityGroup
|
146
|
+
AvailableDelegationsResult = Azure::Network::Mgmt::V2018_08_01::Models::AvailableDelegationsResult
|
144
147
|
EffectiveNetworkSecurityGroupListResult = Azure::Network::Mgmt::V2018_08_01::Models::EffectiveNetworkSecurityGroupListResult
|
145
|
-
|
148
|
+
AzureFirewallRCAction = Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallRCAction
|
146
149
|
EffectiveRoute = Azure::Network::Mgmt::V2018_08_01::Models::EffectiveRoute
|
147
|
-
|
150
|
+
AzureFirewallApplicationRule = Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallApplicationRule
|
148
151
|
EffectiveRouteListResult = Azure::Network::Mgmt::V2018_08_01::Models::EffectiveRouteListResult
|
149
|
-
|
152
|
+
AzureFirewallNatRCAction = Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallNatRCAction
|
153
|
+
OperationListResult = Azure::Network::Mgmt::V2018_08_01::Models::OperationListResult
|
154
|
+
IPAddressAvailabilityResult = Azure::Network::Mgmt::V2018_08_01::Models::IPAddressAvailabilityResult
|
155
|
+
Operation = Azure::Network::Mgmt::V2018_08_01::Models::Operation
|
156
|
+
VirtualNetworkListResult = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkListResult
|
157
|
+
ContainerNetworkInterfaceIpConfiguration = Azure::Network::Mgmt::V2018_08_01::Models::ContainerNetworkInterfaceIpConfiguration
|
158
|
+
AzureFirewallListResult = Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallListResult
|
150
159
|
OperationPropertiesFormatServiceSpecification = Azure::Network::Mgmt::V2018_08_01::Models::OperationPropertiesFormatServiceSpecification
|
151
|
-
|
160
|
+
AzureFirewallFqdnTagListResult = Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallFqdnTagListResult
|
152
161
|
LogSpecification = Azure::Network::Mgmt::V2018_08_01::Models::LogSpecification
|
153
|
-
|
154
|
-
ContainerNetworkInterfaceIpConfiguration = Azure::Network::Mgmt::V2018_08_01::Models::ContainerNetworkInterfaceIpConfiguration
|
155
|
-
Usage = Azure::Network::Mgmt::V2018_08_01::Models::Usage
|
156
|
-
MetricSpecification = Azure::Network::Mgmt::V2018_08_01::Models::MetricSpecification
|
157
|
-
UsageName = Azure::Network::Mgmt::V2018_08_01::Models::UsageName
|
158
|
-
Dimension = Azure::Network::Mgmt::V2018_08_01::Models::Dimension
|
159
|
-
DnsNameAvailabilityResult = Azure::Network::Mgmt::V2018_08_01::Models::DnsNameAvailabilityResult
|
162
|
+
DdosProtectionPlan = Azure::Network::Mgmt::V2018_08_01::Models::DdosProtectionPlan
|
160
163
|
NetworkProfileListResult = Azure::Network::Mgmt::V2018_08_01::Models::NetworkProfileListResult
|
161
|
-
|
164
|
+
SubnetListResult = Azure::Network::Mgmt::V2018_08_01::Models::SubnetListResult
|
162
165
|
SecurityRuleListResult = Azure::Network::Mgmt::V2018_08_01::Models::SecurityRuleListResult
|
163
|
-
|
166
|
+
AddressSpace = Azure::Network::Mgmt::V2018_08_01::Models::AddressSpace
|
164
167
|
NetworkSecurityGroupListResult = Azure::Network::Mgmt::V2018_08_01::Models::NetworkSecurityGroupListResult
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
168
|
+
ExpressRouteCircuitPeeringConfig = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitPeeringConfig
|
169
|
+
MetricSpecification = Azure::Network::Mgmt::V2018_08_01::Models::MetricSpecification
|
170
|
+
ExpressRouteCircuitStats = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitStats
|
171
|
+
Dimension = Azure::Network::Mgmt::V2018_08_01::Models::Dimension
|
172
|
+
Usage = Azure::Network::Mgmt::V2018_08_01::Models::Usage
|
169
173
|
NetworkWatcherListResult = Azure::Network::Mgmt::V2018_08_01::Models::NetworkWatcherListResult
|
170
|
-
|
174
|
+
ServiceEndpointPolicyListResult = Azure::Network::Mgmt::V2018_08_01::Models::ServiceEndpointPolicyListResult
|
171
175
|
TopologyParameters = Azure::Network::Mgmt::V2018_08_01::Models::TopologyParameters
|
172
|
-
|
176
|
+
ExpressRouteCircuitPeeringListResult = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitPeeringListResult
|
173
177
|
TopologyAssociation = Azure::Network::Mgmt::V2018_08_01::Models::TopologyAssociation
|
174
|
-
|
178
|
+
ExpressRouteCircuitServiceProviderProperties = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitServiceProviderProperties
|
175
179
|
TopologyResource = Azure::Network::Mgmt::V2018_08_01::Models::TopologyResource
|
176
|
-
|
180
|
+
ExpressRouteCircuitArpTable = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitArpTable
|
177
181
|
Topology = Azure::Network::Mgmt::V2018_08_01::Models::Topology
|
178
|
-
|
182
|
+
ExpressRouteCircuitRoutesTable = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitRoutesTable
|
179
183
|
VerificationIPFlowParameters = Azure::Network::Mgmt::V2018_08_01::Models::VerificationIPFlowParameters
|
180
|
-
|
184
|
+
ExpressRouteCircuitRoutesTableSummary = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitRoutesTableSummary
|
181
185
|
VerificationIPFlowResult = Azure::Network::Mgmt::V2018_08_01::Models::VerificationIPFlowResult
|
182
|
-
|
186
|
+
ExpressRouteCircuitListResult = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitListResult
|
183
187
|
NextHopParameters = Azure::Network::Mgmt::V2018_08_01::Models::NextHopParameters
|
184
|
-
|
188
|
+
BgpServiceCommunityListResult = Azure::Network::Mgmt::V2018_08_01::Models::BgpServiceCommunityListResult
|
185
189
|
NextHopResult = Azure::Network::Mgmt::V2018_08_01::Models::NextHopResult
|
186
|
-
|
190
|
+
ExpressRouteCrossConnectionRoutesTableSummary = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCrossConnectionRoutesTableSummary
|
187
191
|
SecurityGroupViewParameters = Azure::Network::Mgmt::V2018_08_01::Models::SecurityGroupViewParameters
|
188
|
-
|
192
|
+
ExpressRouteCircuitReference = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitReference
|
189
193
|
NetworkInterfaceAssociation = Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceAssociation
|
190
|
-
|
194
|
+
VpnProfileResponse = Azure::Network::Mgmt::V2018_08_01::Models::VpnProfileResponse
|
191
195
|
SubnetAssociation = Azure::Network::Mgmt::V2018_08_01::Models::SubnetAssociation
|
192
|
-
|
196
|
+
ListP2SVpnGatewaysResult = Azure::Network::Mgmt::V2018_08_01::Models::ListP2SVpnGatewaysResult
|
193
197
|
SecurityRuleAssociations = Azure::Network::Mgmt::V2018_08_01::Models::SecurityRuleAssociations
|
194
|
-
|
198
|
+
ServiceEndpointPropertiesFormat = Azure::Network::Mgmt::V2018_08_01::Models::ServiceEndpointPropertiesFormat
|
195
199
|
SecurityGroupNetworkInterface = Azure::Network::Mgmt::V2018_08_01::Models::SecurityGroupNetworkInterface
|
196
|
-
|
200
|
+
PublicIPAddressDnsSettings = Azure::Network::Mgmt::V2018_08_01::Models::PublicIPAddressDnsSettings
|
197
201
|
SecurityGroupViewResult = Azure::Network::Mgmt::V2018_08_01::Models::SecurityGroupViewResult
|
198
|
-
|
202
|
+
ListVpnGatewaysResult = Azure::Network::Mgmt::V2018_08_01::Models::ListVpnGatewaysResult
|
199
203
|
PacketCaptureStorageLocation = Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureStorageLocation
|
200
|
-
|
204
|
+
GetVpnSitesConfigurationRequest = Azure::Network::Mgmt::V2018_08_01::Models::GetVpnSitesConfigurationRequest
|
201
205
|
PacketCaptureFilter = Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureFilter
|
202
|
-
|
206
|
+
VpnDeviceScriptParameters = Azure::Network::Mgmt::V2018_08_01::Models::VpnDeviceScriptParameters
|
203
207
|
PacketCaptureParameters = Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureParameters
|
204
|
-
|
208
|
+
ApplicationGatewayConnectionDraining = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayConnectionDraining
|
205
209
|
PacketCapture = Azure::Network::Mgmt::V2018_08_01::Models::PacketCapture
|
206
|
-
|
210
|
+
ApplicationGatewayBackendHealthPool = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendHealthPool
|
207
211
|
PacketCaptureResult = Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureResult
|
208
|
-
|
212
|
+
VpnClientIPsecParameters = Azure::Network::Mgmt::V2018_08_01::Models::VpnClientIPsecParameters
|
209
213
|
PacketCaptureListResult = Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureListResult
|
210
|
-
|
214
|
+
GatewayRouteListResult = Azure::Network::Mgmt::V2018_08_01::Models::GatewayRouteListResult
|
211
215
|
PacketCaptureQueryStatusResult = Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureQueryStatusResult
|
212
|
-
|
216
|
+
VpnClientParameters = Azure::Network::Mgmt::V2018_08_01::Models::VpnClientParameters
|
213
217
|
TroubleshootingParameters = Azure::Network::Mgmt::V2018_08_01::Models::TroubleshootingParameters
|
214
|
-
|
218
|
+
BgpSettings = Azure::Network::Mgmt::V2018_08_01::Models::BgpSettings
|
215
219
|
QueryTroubleshootingParameters = Azure::Network::Mgmt::V2018_08_01::Models::QueryTroubleshootingParameters
|
216
|
-
|
220
|
+
ApplicationGatewayWebApplicationFirewallConfiguration = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayWebApplicationFirewallConfiguration
|
217
221
|
TroubleshootingRecommendedActions = Azure::Network::Mgmt::V2018_08_01::Models::TroubleshootingRecommendedActions
|
218
|
-
|
222
|
+
ApplicationGatewayFirewallRule = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayFirewallRule
|
219
223
|
TroubleshootingDetails = Azure::Network::Mgmt::V2018_08_01::Models::TroubleshootingDetails
|
220
|
-
|
224
|
+
VirtualNetworkTapListResult = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkTapListResult
|
221
225
|
TroubleshootingResult = Azure::Network::Mgmt::V2018_08_01::Models::TroubleshootingResult
|
222
|
-
|
226
|
+
TagsObject = Azure::Network::Mgmt::V2018_08_01::Models::TagsObject
|
223
227
|
RetentionPolicyParameters = Azure::Network::Mgmt::V2018_08_01::Models::RetentionPolicyParameters
|
224
|
-
|
228
|
+
VirtualNetworkUsage = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkUsage
|
225
229
|
FlowLogStatusParameters = Azure::Network::Mgmt::V2018_08_01::Models::FlowLogStatusParameters
|
226
|
-
|
230
|
+
VirtualNetworkUsageName = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkUsageName
|
227
231
|
TrafficAnalyticsConfigurationProperties = Azure::Network::Mgmt::V2018_08_01::Models::TrafficAnalyticsConfigurationProperties
|
228
|
-
|
232
|
+
AzureFirewallNetworkRule = Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallNetworkRule
|
229
233
|
TrafficAnalyticsProperties = Azure::Network::Mgmt::V2018_08_01::Models::TrafficAnalyticsProperties
|
230
|
-
|
234
|
+
VirtualNetworkPeeringListResult = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkPeeringListResult
|
231
235
|
FlowLogInformation = Azure::Network::Mgmt::V2018_08_01::Models::FlowLogInformation
|
232
|
-
|
236
|
+
DdosProtectionPlanListResult = Azure::Network::Mgmt::V2018_08_01::Models::DdosProtectionPlanListResult
|
233
237
|
ConnectivitySource = Azure::Network::Mgmt::V2018_08_01::Models::ConnectivitySource
|
234
|
-
|
238
|
+
AuthorizationListResult = Azure::Network::Mgmt::V2018_08_01::Models::AuthorizationListResult
|
235
239
|
ConnectivityDestination = Azure::Network::Mgmt::V2018_08_01::Models::ConnectivityDestination
|
236
|
-
|
240
|
+
ExpressRouteConnectionId = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteConnectionId
|
237
241
|
HTTPHeader = Azure::Network::Mgmt::V2018_08_01::Models::HTTPHeader
|
238
|
-
|
242
|
+
Ipv6ExpressRouteCircuitPeeringConfig = Azure::Network::Mgmt::V2018_08_01::Models::Ipv6ExpressRouteCircuitPeeringConfig
|
239
243
|
HTTPConfiguration = Azure::Network::Mgmt::V2018_08_01::Models::HTTPConfiguration
|
240
|
-
|
244
|
+
ServiceEndpointPolicyDefinitionListResult = Azure::Network::Mgmt::V2018_08_01::Models::ServiceEndpointPolicyDefinitionListResult
|
241
245
|
ProtocolConfiguration = Azure::Network::Mgmt::V2018_08_01::Models::ProtocolConfiguration
|
242
|
-
|
246
|
+
ExpressRouteCircuitsRoutesTableListResult = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitsRoutesTableListResult
|
243
247
|
ConnectivityParameters = Azure::Network::Mgmt::V2018_08_01::Models::ConnectivityParameters
|
244
|
-
|
248
|
+
ExpressRouteServiceProviderBandwidthsOffered = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteServiceProviderBandwidthsOffered
|
245
249
|
ConnectivityIssue = Azure::Network::Mgmt::V2018_08_01::Models::ConnectivityIssue
|
246
|
-
|
250
|
+
ExpressRouteCrossConnectionsRoutesTableSummaryListResult = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCrossConnectionsRoutesTableSummaryListResult
|
247
251
|
ConnectivityHop = Azure::Network::Mgmt::V2018_08_01::Models::ConnectivityHop
|
248
|
-
|
252
|
+
P2SVpnProfileParameters = Azure::Network::Mgmt::V2018_08_01::Models::P2SVpnProfileParameters
|
249
253
|
ConnectivityInformation = Azure::Network::Mgmt::V2018_08_01::Models::ConnectivityInformation
|
250
|
-
|
254
|
+
VpnSiteId = Azure::Network::Mgmt::V2018_08_01::Models::VpnSiteId
|
251
255
|
AzureReachabilityReportLocation = Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReportLocation
|
252
256
|
VirtualHubRouteTable = Azure::Network::Mgmt::V2018_08_01::Models::VirtualHubRouteTable
|
253
257
|
AzureReachabilityReportParameters = Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReportParameters
|
254
|
-
|
258
|
+
ApplicationGatewayBackendAddress = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendAddress
|
255
259
|
AzureReachabilityReportLatencyInfo = Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReportLatencyInfo
|
256
|
-
|
260
|
+
ApplicationGatewaySku = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewaySku
|
257
261
|
AzureReachabilityReportItem = Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReportItem
|
258
|
-
|
262
|
+
ApplicationGatewayCustomError = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayCustomError
|
259
263
|
AzureReachabilityReport = Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReport
|
260
|
-
|
264
|
+
ApplicationGatewayFirewallDisabledRuleGroup = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayFirewallDisabledRuleGroup
|
261
265
|
AvailableProvidersListParameters = Azure::Network::Mgmt::V2018_08_01::Models::AvailableProvidersListParameters
|
262
|
-
|
266
|
+
VirtualNetworkGatewaySku = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkGatewaySku
|
263
267
|
AvailableProvidersListCity = Azure::Network::Mgmt::V2018_08_01::Models::AvailableProvidersListCity
|
264
|
-
|
268
|
+
AvailableDelegation = Azure::Network::Mgmt::V2018_08_01::Models::AvailableDelegation
|
265
269
|
AvailableProvidersListState = Azure::Network::Mgmt::V2018_08_01::Models::AvailableProvidersListState
|
266
|
-
|
270
|
+
AzureFirewallNatRule = Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallNatRule
|
267
271
|
AvailableProvidersListCountry = Azure::Network::Mgmt::V2018_08_01::Models::AvailableProvidersListCountry
|
268
|
-
|
272
|
+
DnsNameAvailabilityResult = Azure::Network::Mgmt::V2018_08_01::Models::DnsNameAvailabilityResult
|
269
273
|
AvailableProvidersList = Azure::Network::Mgmt::V2018_08_01::Models::AvailableProvidersList
|
270
|
-
|
274
|
+
UsagesListResult = Azure::Network::Mgmt::V2018_08_01::Models::UsagesListResult
|
271
275
|
ConnectionMonitorSource = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorSource
|
272
|
-
|
276
|
+
ExpressRouteCircuitSku = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitSku
|
273
277
|
ConnectionMonitorDestination = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorDestination
|
274
|
-
|
278
|
+
ExpressRouteCircuitsRoutesTableSummaryListResult = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitsRoutesTableSummaryListResult
|
275
279
|
ConnectionMonitorParameters = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorParameters
|
276
|
-
|
280
|
+
SubResource = Azure::Network::Mgmt::V2018_08_01::Models::SubResource
|
277
281
|
ConnectionMonitor = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitor
|
278
|
-
|
282
|
+
ListHubVirtualNetworkConnectionsResult = Azure::Network::Mgmt::V2018_08_01::Models::ListHubVirtualNetworkConnectionsResult
|
279
283
|
ConnectionMonitorResult = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorResult
|
280
|
-
|
284
|
+
ApplicationGatewayBackendHealthServer = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendHealthServer
|
281
285
|
ConnectionMonitorListResult = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorListResult
|
282
|
-
|
286
|
+
GatewayRoute = Azure::Network::Mgmt::V2018_08_01::Models::GatewayRoute
|
283
287
|
ConnectionStateSnapshot = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionStateSnapshot
|
284
|
-
|
288
|
+
ApplicationGatewayAvailableSslPredefinedPolicies = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayAvailableSslPredefinedPolicies
|
285
289
|
ConnectionMonitorQueryResult = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorQueryResult
|
286
|
-
|
287
|
-
|
288
|
-
|
290
|
+
DhcpOptions = Azure::Network::Mgmt::V2018_08_01::Models::DhcpOptions
|
291
|
+
NetworkConfigurationDiagnosticProfile = Azure::Network::Mgmt::V2018_08_01::Models::NetworkConfigurationDiagnosticProfile
|
292
|
+
UsageName = Azure::Network::Mgmt::V2018_08_01::Models::UsageName
|
289
293
|
NetworkConfigurationDiagnosticParameters = Azure::Network::Mgmt::V2018_08_01::Models::NetworkConfigurationDiagnosticParameters
|
290
|
-
|
294
|
+
ExpressRouteServiceProviderListResult = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteServiceProviderListResult
|
291
295
|
MatchedRule = Azure::Network::Mgmt::V2018_08_01::Models::MatchedRule
|
292
|
-
|
296
|
+
DeviceProperties = Azure::Network::Mgmt::V2018_08_01::Models::DeviceProperties
|
293
297
|
NetworkSecurityRulesEvaluationResult = Azure::Network::Mgmt::V2018_08_01::Models::NetworkSecurityRulesEvaluationResult
|
294
|
-
|
298
|
+
IpsecPolicy = Azure::Network::Mgmt::V2018_08_01::Models::IpsecPolicy
|
295
299
|
EvaluatedNetworkSecurityGroup = Azure::Network::Mgmt::V2018_08_01::Models::EvaluatedNetworkSecurityGroup
|
296
|
-
|
300
|
+
EndpointServicesListResult = Azure::Network::Mgmt::V2018_08_01::Models::EndpointServicesListResult
|
297
301
|
NetworkSecurityGroupResult = Azure::Network::Mgmt::V2018_08_01::Models::NetworkSecurityGroupResult
|
298
|
-
|
302
|
+
ListP2SVpnServerConfigurationsResult = Azure::Network::Mgmt::V2018_08_01::Models::ListP2SVpnServerConfigurationsResult
|
299
303
|
NetworkConfigurationDiagnosticResult = Azure::Network::Mgmt::V2018_08_01::Models::NetworkConfigurationDiagnosticResult
|
300
|
-
|
304
|
+
AzureFirewallApplicationRuleProtocol = Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallApplicationRuleProtocol
|
301
305
|
NetworkConfigurationDiagnosticResponse = Azure::Network::Mgmt::V2018_08_01::Models::NetworkConfigurationDiagnosticResponse
|
302
|
-
|
306
|
+
VirtualNetworkGatewayConnectionListResult = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkGatewayConnectionListResult
|
303
307
|
OperationDisplay = Azure::Network::Mgmt::V2018_08_01::Models::OperationDisplay
|
304
|
-
|
308
|
+
ExpressRouteCircuitsArpTableListResult = Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitsArpTableListResult
|
305
309
|
Availability = Azure::Network::Mgmt::V2018_08_01::Models::Availability
|
306
310
|
NetworkInterfaceTapConfiguration = Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceTapConfiguration
|
307
311
|
ApplicationSecurityGroup = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationSecurityGroup
|
@@ -414,6 +418,7 @@ module Azure::Profiles::Latest
|
|
414
418
|
ApplicationGatewaySslPolicyType = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewaySslPolicyType
|
415
419
|
ApplicationGatewaySslPolicyName = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewaySslPolicyName
|
416
420
|
ApplicationGatewaySslCipherSuite = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewaySslCipherSuite
|
421
|
+
ApplicationGatewayCustomErrorStatusCode = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayCustomErrorStatusCode
|
417
422
|
ApplicationGatewayRequestRoutingRuleType = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayRequestRoutingRuleType
|
418
423
|
ApplicationGatewayRedirectType = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayRedirectType
|
419
424
|
ApplicationGatewayOperationalState = Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayOperationalState
|
@@ -456,6 +461,7 @@ module Azure::Profiles::Latest
|
|
456
461
|
ConnectionMonitorSourceStatus = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorSourceStatus
|
457
462
|
ConnectionState = Azure::Network::Mgmt::V2018_08_01::Models::ConnectionState
|
458
463
|
EvaluationState = Azure::Network::Mgmt::V2018_08_01::Models::EvaluationState
|
464
|
+
VerbosityLevel = Azure::Network::Mgmt::V2018_08_01::Models::VerbosityLevel
|
459
465
|
PublicIPPrefixSkuName = Azure::Network::Mgmt::V2018_08_01::Models::PublicIPPrefixSkuName
|
460
466
|
VirtualNetworkPeeringState = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkPeeringState
|
461
467
|
VirtualNetworkGatewayType = Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkGatewayType
|
@@ -484,7 +490,7 @@ module Azure::Profiles::Latest
|
|
484
490
|
end
|
485
491
|
|
486
492
|
class NetworkManagementClass
|
487
|
-
attr_reader :application_gateways, :application_security_groups, :available_delegations, :available_resource_group_delegations, :azure_firewalls, :azure_firewall_fqdn_tags, :ddos_protection_plans, :available_endpoint_services, :express_route_circuit_authorizations, :express_route_circuit_peerings, :express_route_circuit_connections, :express_route_circuits, :express_route_service_providers, :express_route_cross_connections, :express_route_cross_connection_peerings, :express_route_gateways, :express_route_connections, :interface_endpoints, :load_balancers, :load_balancer_backend_address_pools, :load_balancer_frontend_ipconfigurations, :inbound_nat_rules, :load_balancer_load_balancing_rules, :load_balancer_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, :bgp_service_communities, :service_endpoint_policies, :service_endpoint_policy_definitions, :usages, :virtual_networks, :subnets, :virtual_network_peerings, :virtual_network_taps, :virtual_network_gateways, :virtual_network_gateway_connections, :local_network_gateways, :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
|
493
|
+
attr_reader :application_gateways, :application_security_groups, :available_delegations, :available_resource_group_delegations, :azure_firewalls, :azure_firewall_fqdn_tags, :ddos_protection_plans, :available_endpoint_services, :express_route_circuit_authorizations, :express_route_circuit_peerings, :express_route_circuit_connections, :express_route_circuits, :express_route_service_providers, :express_route_cross_connections, :express_route_cross_connection_peerings, :express_route_gateways, :express_route_connections, :interface_endpoints, :load_balancers, :load_balancer_backend_address_pools, :load_balancer_frontend_ipconfigurations, :inbound_nat_rules, :load_balancer_load_balancing_rules, :load_balancer_outbound_rules, :load_balancer_network_interfaces, :load_balancer_probes, :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, :bgp_service_communities, :service_endpoint_policies, :service_endpoint_policy_definitions, :usages, :virtual_networks, :subnets, :virtual_network_peerings, :virtual_network_taps, :virtual_network_gateways, :virtual_network_gateway_connections, :local_network_gateways, :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
|
488
494
|
|
489
495
|
def initialize(configurable, base_url=nil, options=nil)
|
490
496
|
@configurable, @base_url, @options = configurable, base_url, options
|
@@ -517,6 +523,7 @@ module Azure::Profiles::Latest
|
|
517
523
|
@load_balancer_frontend_ipconfigurations = @client_0.load_balancer_frontend_ipconfigurations
|
518
524
|
@inbound_nat_rules = @client_0.inbound_nat_rules
|
519
525
|
@load_balancer_load_balancing_rules = @client_0.load_balancer_load_balancing_rules
|
526
|
+
@load_balancer_outbound_rules = @client_0.load_balancer_outbound_rules
|
520
527
|
@load_balancer_network_interfaces = @client_0.load_balancer_network_interfaces
|
521
528
|
@load_balancer_probes = @client_0.load_balancer_probes
|
522
529
|
@network_interfaces = @client_0.network_interfaces
|
@@ -575,533 +582,542 @@ module Azure::Profiles::Latest
|
|
575
582
|
end
|
576
583
|
|
577
584
|
class ModelClasses
|
578
|
-
def
|
579
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
585
|
+
def error_response
|
586
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ErrorResponse
|
580
587
|
end
|
581
|
-
def
|
582
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
588
|
+
def bgpcommunity
|
589
|
+
Azure::Network::Mgmt::V2018_08_01::Models::BGPCommunity
|
583
590
|
end
|
584
|
-
def
|
585
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
591
|
+
def route_list_result
|
592
|
+
Azure::Network::Mgmt::V2018_08_01::Models::RouteListResult
|
586
593
|
end
|
587
594
|
def express_route_cross_connection_list_result
|
588
595
|
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCrossConnectionListResult
|
589
596
|
end
|
590
|
-
def
|
591
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
597
|
+
def endpoint_service
|
598
|
+
Azure::Network::Mgmt::V2018_08_01::Models::EndpointService
|
592
599
|
end
|
593
600
|
def express_route_cross_connection_peering_list
|
594
601
|
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCrossConnectionPeeringList
|
595
602
|
end
|
596
|
-
def
|
597
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
603
|
+
def network_interface_dns_settings
|
604
|
+
Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceDnsSettings
|
598
605
|
end
|
599
606
|
def virtual_hub_id
|
600
607
|
Azure::Network::Mgmt::V2018_08_01::Models::VirtualHubId
|
601
608
|
end
|
602
|
-
def
|
603
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
609
|
+
def vpn_client_connection_health
|
610
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VpnClientConnectionHealth
|
604
611
|
end
|
605
612
|
def express_route_circuit_peering_id
|
606
613
|
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitPeeringId
|
607
614
|
end
|
608
|
-
def
|
609
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
615
|
+
def virtual_wan_security_providers
|
616
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualWanSecurityProviders
|
610
617
|
end
|
611
618
|
def express_route_gateway_properties_auto_scale_configuration_bounds
|
612
619
|
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds
|
613
620
|
end
|
614
|
-
def
|
615
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
621
|
+
def virtual_wan_security_provider
|
622
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualWanSecurityProvider
|
616
623
|
end
|
617
624
|
def express_route_gateway_properties_auto_scale_configuration
|
618
625
|
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteGatewayPropertiesAutoScaleConfiguration
|
619
626
|
end
|
620
|
-
def
|
621
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
627
|
+
def public_ipaddress_sku
|
628
|
+
Azure::Network::Mgmt::V2018_08_01::Models::PublicIPAddressSku
|
622
629
|
end
|
623
|
-
def
|
624
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
630
|
+
def route_table_list_result
|
631
|
+
Azure::Network::Mgmt::V2018_08_01::Models::RouteTableListResult
|
625
632
|
end
|
626
|
-
def
|
627
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
633
|
+
def ip_tag
|
634
|
+
Azure::Network::Mgmt::V2018_08_01::Models::IpTag
|
628
635
|
end
|
629
|
-
def
|
630
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
636
|
+
def route_filter_rule_list_result
|
637
|
+
Azure::Network::Mgmt::V2018_08_01::Models::RouteFilterRuleListResult
|
631
638
|
end
|
632
|
-
def
|
633
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
639
|
+
def list_vpn_connections_result
|
640
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ListVpnConnectionsResult
|
634
641
|
end
|
635
642
|
def express_route_gateway_list
|
636
643
|
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteGatewayList
|
637
644
|
end
|
638
|
-
def
|
639
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
645
|
+
def list_virtual_hubs_result
|
646
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ListVirtualHubsResult
|
640
647
|
end
|
641
648
|
def express_route_connection_list
|
642
649
|
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteConnectionList
|
643
650
|
end
|
644
|
-
def
|
645
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
651
|
+
def virtual_hub_route
|
652
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualHubRoute
|
646
653
|
end
|
647
654
|
def interface_endpoint_list_result
|
648
655
|
Azure::Network::Mgmt::V2018_08_01::Models::InterfaceEndpointListResult
|
649
656
|
end
|
650
|
-
def
|
651
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
657
|
+
def list_vpn_sites_result
|
658
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ListVpnSitesResult
|
652
659
|
end
|
653
660
|
def load_balancer_sku
|
654
661
|
Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerSku
|
655
662
|
end
|
656
|
-
def
|
657
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
663
|
+
def list_virtual_wans_result
|
664
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ListVirtualWANsResult
|
658
665
|
end
|
659
|
-
def
|
660
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
666
|
+
def route_filter_list_result
|
667
|
+
Azure::Network::Mgmt::V2018_08_01::Models::RouteFilterListResult
|
661
668
|
end
|
662
|
-
def
|
663
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
669
|
+
def virtual_network_gateway_list_connections_result
|
670
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkGatewayListConnectionsResult
|
671
|
+
end
|
672
|
+
def public_ipprefix_list_result
|
673
|
+
Azure::Network::Mgmt::V2018_08_01::Models::PublicIPPrefixListResult
|
674
|
+
end
|
675
|
+
def virtual_network_connection_gateway_reference
|
676
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkConnectionGatewayReference
|
664
677
|
end
|
665
678
|
def referenced_public_ip_address
|
666
679
|
Azure::Network::Mgmt::V2018_08_01::Models::ReferencedPublicIpAddress
|
667
680
|
end
|
668
|
-
def
|
669
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
681
|
+
def local_network_gateway_list_result
|
682
|
+
Azure::Network::Mgmt::V2018_08_01::Models::LocalNetworkGatewayListResult
|
670
683
|
end
|
671
684
|
def public_ipprefix_sku
|
672
685
|
Azure::Network::Mgmt::V2018_08_01::Models::PublicIPPrefixSku
|
673
686
|
end
|
674
|
-
def
|
675
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
687
|
+
def application_gateway_backend_health_http_settings
|
688
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendHealthHttpSettings
|
676
689
|
end
|
677
690
|
def public_ipaddress_list_result
|
678
691
|
Azure::Network::Mgmt::V2018_08_01::Models::PublicIPAddressListResult
|
679
692
|
end
|
680
|
-
def
|
681
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
682
|
-
end
|
683
|
-
def operation_list_result
|
684
|
-
Azure::Network::Mgmt::V2018_08_01::Models::OperationListResult
|
685
|
-
end
|
686
|
-
def application_gateway_backend_health_pool
|
687
|
-
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendHealthPool
|
693
|
+
def application_gateway_backend_health
|
694
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendHealth
|
688
695
|
end
|
689
696
|
def load_balancer_list_result
|
690
697
|
Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerListResult
|
691
698
|
end
|
692
|
-
def
|
693
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
699
|
+
def application_gateway_ssl_policy
|
700
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewaySslPolicy
|
694
701
|
end
|
695
702
|
def inbound_nat_rule_list_result
|
696
703
|
Azure::Network::Mgmt::V2018_08_01::Models::InboundNatRuleListResult
|
697
704
|
end
|
698
|
-
def
|
699
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
705
|
+
def connection_reset_shared_key
|
706
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ConnectionResetSharedKey
|
700
707
|
end
|
701
708
|
def load_balancer_backend_address_pool_list_result
|
702
709
|
Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerBackendAddressPoolListResult
|
703
710
|
end
|
704
|
-
def
|
705
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
711
|
+
def tunnel_connection_health
|
712
|
+
Azure::Network::Mgmt::V2018_08_01::Models::TunnelConnectionHealth
|
706
713
|
end
|
707
714
|
def load_balancer_frontend_ipconfiguration_list_result
|
708
715
|
Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerFrontendIPConfigurationListResult
|
709
716
|
end
|
710
|
-
def
|
711
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
717
|
+
def bgp_peer_status_list_result
|
718
|
+
Azure::Network::Mgmt::V2018_08_01::Models::BgpPeerStatusListResult
|
712
719
|
end
|
713
720
|
def load_balancer_load_balancing_rule_list_result
|
714
721
|
Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerLoadBalancingRuleListResult
|
715
722
|
end
|
716
|
-
def
|
717
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
723
|
+
def virtual_network_gateway_list_result
|
724
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkGatewayListResult
|
718
725
|
end
|
719
|
-
def
|
720
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
726
|
+
def load_balancer_outbound_rule_list_result
|
727
|
+
Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerOutboundRuleListResult
|
721
728
|
end
|
722
729
|
def application_gateway_probe_health_response_match
|
723
730
|
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayProbeHealthResponseMatch
|
724
731
|
end
|
732
|
+
def load_balancer_probe_list_result
|
733
|
+
Azure::Network::Mgmt::V2018_08_01::Models::LoadBalancerProbeListResult
|
734
|
+
end
|
735
|
+
def bgp_peer_status
|
736
|
+
Azure::Network::Mgmt::V2018_08_01::Models::BgpPeerStatus
|
737
|
+
end
|
725
738
|
def network_interface_list_result
|
726
739
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceListResult
|
727
740
|
end
|
728
|
-
def
|
729
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
741
|
+
def vpn_client_configuration
|
742
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VpnClientConfiguration
|
730
743
|
end
|
731
744
|
def error_details
|
732
745
|
Azure::Network::Mgmt::V2018_08_01::Models::ErrorDetails
|
733
746
|
end
|
734
|
-
def
|
735
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
747
|
+
def application_gateway_firewall_exclusion
|
748
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayFirewallExclusion
|
736
749
|
end
|
737
750
|
def error
|
738
751
|
Azure::Network::Mgmt::V2018_08_01::Models::Error
|
739
752
|
end
|
740
|
-
def
|
741
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
753
|
+
def application_gateway_autoscale_configuration
|
754
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayAutoscaleConfiguration
|
742
755
|
end
|
743
756
|
def azure_async_operation_result
|
744
757
|
Azure::Network::Mgmt::V2018_08_01::Models::AzureAsyncOperationResult
|
745
758
|
end
|
746
|
-
def
|
747
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
759
|
+
def application_gateway_list_result
|
760
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayListResult
|
748
761
|
end
|
749
762
|
def network_interface_tap_configuration_list_result
|
750
763
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceTapConfigurationListResult
|
751
764
|
end
|
752
|
-
def
|
753
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
765
|
+
def application_gateway_firewall_rule_group
|
766
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayFirewallRuleGroup
|
754
767
|
end
|
755
768
|
def network_interface_ipconfiguration_list_result
|
756
769
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceIPConfigurationListResult
|
757
770
|
end
|
758
|
-
def
|
759
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
771
|
+
def application_gateway_available_waf_rule_sets_result
|
772
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayAvailableWafRuleSetsResult
|
760
773
|
end
|
761
774
|
def network_interface_load_balancer_list_result
|
762
775
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceLoadBalancerListResult
|
763
776
|
end
|
764
|
-
def
|
765
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
777
|
+
def virtual_network_list_usage_result
|
778
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkListUsageResult
|
766
779
|
end
|
767
780
|
def effective_network_security_group_association
|
768
781
|
Azure::Network::Mgmt::V2018_08_01::Models::EffectiveNetworkSecurityGroupAssociation
|
769
782
|
end
|
770
|
-
def
|
771
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
783
|
+
def resource
|
784
|
+
Azure::Network::Mgmt::V2018_08_01::Models::Resource
|
772
785
|
end
|
773
786
|
def effective_network_security_rule
|
774
787
|
Azure::Network::Mgmt::V2018_08_01::Models::EffectiveNetworkSecurityRule
|
775
788
|
end
|
776
|
-
def
|
777
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
789
|
+
def application_security_group_list_result
|
790
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationSecurityGroupListResult
|
778
791
|
end
|
779
|
-
def
|
780
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
792
|
+
def effective_network_security_group
|
793
|
+
Azure::Network::Mgmt::V2018_08_01::Models::EffectiveNetworkSecurityGroup
|
781
794
|
end
|
782
|
-
def
|
783
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
795
|
+
def available_delegations_result
|
796
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AvailableDelegationsResult
|
784
797
|
end
|
785
798
|
def effective_network_security_group_list_result
|
786
799
|
Azure::Network::Mgmt::V2018_08_01::Models::EffectiveNetworkSecurityGroupListResult
|
787
800
|
end
|
788
|
-
def
|
789
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
801
|
+
def azure_firewall_rcaction
|
802
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallRCAction
|
790
803
|
end
|
791
804
|
def effective_route
|
792
805
|
Azure::Network::Mgmt::V2018_08_01::Models::EffectiveRoute
|
793
806
|
end
|
794
|
-
def
|
795
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
807
|
+
def azure_firewall_application_rule
|
808
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallApplicationRule
|
796
809
|
end
|
797
810
|
def effective_route_list_result
|
798
811
|
Azure::Network::Mgmt::V2018_08_01::Models::EffectiveRouteListResult
|
799
812
|
end
|
800
|
-
def
|
801
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
813
|
+
def azure_firewall_nat_rcaction
|
814
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallNatRCAction
|
802
815
|
end
|
803
|
-
def
|
804
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
816
|
+
def operation_list_result
|
817
|
+
Azure::Network::Mgmt::V2018_08_01::Models::OperationListResult
|
805
818
|
end
|
806
|
-
def
|
807
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
819
|
+
def ipaddress_availability_result
|
820
|
+
Azure::Network::Mgmt::V2018_08_01::Models::IPAddressAvailabilityResult
|
808
821
|
end
|
809
|
-
def
|
810
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
822
|
+
def operation
|
823
|
+
Azure::Network::Mgmt::V2018_08_01::Models::Operation
|
811
824
|
end
|
812
|
-
def
|
813
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
825
|
+
def virtual_network_list_result
|
826
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkListResult
|
814
827
|
end
|
815
828
|
def container_network_interface_ip_configuration
|
816
829
|
Azure::Network::Mgmt::V2018_08_01::Models::ContainerNetworkInterfaceIpConfiguration
|
817
830
|
end
|
818
|
-
def
|
819
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
831
|
+
def azure_firewall_list_result
|
832
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallListResult
|
820
833
|
end
|
821
|
-
def
|
822
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
834
|
+
def operation_properties_format_service_specification
|
835
|
+
Azure::Network::Mgmt::V2018_08_01::Models::OperationPropertiesFormatServiceSpecification
|
823
836
|
end
|
824
|
-
def
|
825
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
837
|
+
def azure_firewall_fqdn_tag_list_result
|
838
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallFqdnTagListResult
|
826
839
|
end
|
827
|
-
def
|
828
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
840
|
+
def log_specification
|
841
|
+
Azure::Network::Mgmt::V2018_08_01::Models::LogSpecification
|
829
842
|
end
|
830
|
-
def
|
831
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
843
|
+
def ddos_protection_plan
|
844
|
+
Azure::Network::Mgmt::V2018_08_01::Models::DdosProtectionPlan
|
832
845
|
end
|
833
846
|
def network_profile_list_result
|
834
847
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkProfileListResult
|
835
848
|
end
|
836
|
-
def
|
837
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
849
|
+
def subnet_list_result
|
850
|
+
Azure::Network::Mgmt::V2018_08_01::Models::SubnetListResult
|
838
851
|
end
|
839
852
|
def security_rule_list_result
|
840
853
|
Azure::Network::Mgmt::V2018_08_01::Models::SecurityRuleListResult
|
841
854
|
end
|
842
|
-
def
|
843
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
855
|
+
def address_space
|
856
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AddressSpace
|
844
857
|
end
|
845
858
|
def network_security_group_list_result
|
846
859
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkSecurityGroupListResult
|
847
860
|
end
|
848
|
-
def
|
849
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
861
|
+
def express_route_circuit_peering_config
|
862
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitPeeringConfig
|
850
863
|
end
|
851
|
-
def
|
852
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
864
|
+
def metric_specification
|
865
|
+
Azure::Network::Mgmt::V2018_08_01::Models::MetricSpecification
|
853
866
|
end
|
854
|
-
def
|
855
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
867
|
+
def express_route_circuit_stats
|
868
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitStats
|
856
869
|
end
|
857
|
-
def
|
858
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
870
|
+
def dimension
|
871
|
+
Azure::Network::Mgmt::V2018_08_01::Models::Dimension
|
872
|
+
end
|
873
|
+
def usage
|
874
|
+
Azure::Network::Mgmt::V2018_08_01::Models::Usage
|
859
875
|
end
|
860
876
|
def network_watcher_list_result
|
861
877
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkWatcherListResult
|
862
878
|
end
|
863
|
-
def
|
864
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
879
|
+
def service_endpoint_policy_list_result
|
880
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ServiceEndpointPolicyListResult
|
865
881
|
end
|
866
882
|
def topology_parameters
|
867
883
|
Azure::Network::Mgmt::V2018_08_01::Models::TopologyParameters
|
868
884
|
end
|
869
|
-
def
|
870
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
885
|
+
def express_route_circuit_peering_list_result
|
886
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitPeeringListResult
|
871
887
|
end
|
872
888
|
def topology_association
|
873
889
|
Azure::Network::Mgmt::V2018_08_01::Models::TopologyAssociation
|
874
890
|
end
|
875
|
-
def
|
876
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
891
|
+
def express_route_circuit_service_provider_properties
|
892
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitServiceProviderProperties
|
877
893
|
end
|
878
894
|
def topology_resource
|
879
895
|
Azure::Network::Mgmt::V2018_08_01::Models::TopologyResource
|
880
896
|
end
|
881
|
-
def
|
882
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
897
|
+
def express_route_circuit_arp_table
|
898
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitArpTable
|
883
899
|
end
|
884
900
|
def topology
|
885
901
|
Azure::Network::Mgmt::V2018_08_01::Models::Topology
|
886
902
|
end
|
887
|
-
def
|
888
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
903
|
+
def express_route_circuit_routes_table
|
904
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitRoutesTable
|
889
905
|
end
|
890
906
|
def verification_ipflow_parameters
|
891
907
|
Azure::Network::Mgmt::V2018_08_01::Models::VerificationIPFlowParameters
|
892
908
|
end
|
893
|
-
def
|
894
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
909
|
+
def express_route_circuit_routes_table_summary
|
910
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitRoutesTableSummary
|
895
911
|
end
|
896
912
|
def verification_ipflow_result
|
897
913
|
Azure::Network::Mgmt::V2018_08_01::Models::VerificationIPFlowResult
|
898
914
|
end
|
899
|
-
def
|
900
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
915
|
+
def express_route_circuit_list_result
|
916
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitListResult
|
901
917
|
end
|
902
918
|
def next_hop_parameters
|
903
919
|
Azure::Network::Mgmt::V2018_08_01::Models::NextHopParameters
|
904
920
|
end
|
905
|
-
def
|
906
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
921
|
+
def bgp_service_community_list_result
|
922
|
+
Azure::Network::Mgmt::V2018_08_01::Models::BgpServiceCommunityListResult
|
907
923
|
end
|
908
924
|
def next_hop_result
|
909
925
|
Azure::Network::Mgmt::V2018_08_01::Models::NextHopResult
|
910
926
|
end
|
911
|
-
def
|
912
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
927
|
+
def express_route_cross_connection_routes_table_summary
|
928
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCrossConnectionRoutesTableSummary
|
913
929
|
end
|
914
930
|
def security_group_view_parameters
|
915
931
|
Azure::Network::Mgmt::V2018_08_01::Models::SecurityGroupViewParameters
|
916
932
|
end
|
917
|
-
def
|
918
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
933
|
+
def express_route_circuit_reference
|
934
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitReference
|
919
935
|
end
|
920
936
|
def network_interface_association
|
921
937
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkInterfaceAssociation
|
922
938
|
end
|
923
|
-
def
|
924
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
939
|
+
def vpn_profile_response
|
940
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VpnProfileResponse
|
925
941
|
end
|
926
942
|
def subnet_association
|
927
943
|
Azure::Network::Mgmt::V2018_08_01::Models::SubnetAssociation
|
928
944
|
end
|
929
|
-
def
|
930
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
945
|
+
def list_p2_svpn_gateways_result
|
946
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ListP2SVpnGatewaysResult
|
931
947
|
end
|
932
948
|
def security_rule_associations
|
933
949
|
Azure::Network::Mgmt::V2018_08_01::Models::SecurityRuleAssociations
|
934
950
|
end
|
935
|
-
def
|
936
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
951
|
+
def service_endpoint_properties_format
|
952
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ServiceEndpointPropertiesFormat
|
937
953
|
end
|
938
954
|
def security_group_network_interface
|
939
955
|
Azure::Network::Mgmt::V2018_08_01::Models::SecurityGroupNetworkInterface
|
940
956
|
end
|
941
|
-
def
|
942
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
957
|
+
def public_ipaddress_dns_settings
|
958
|
+
Azure::Network::Mgmt::V2018_08_01::Models::PublicIPAddressDnsSettings
|
943
959
|
end
|
944
960
|
def security_group_view_result
|
945
961
|
Azure::Network::Mgmt::V2018_08_01::Models::SecurityGroupViewResult
|
946
962
|
end
|
947
|
-
def
|
948
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
963
|
+
def list_vpn_gateways_result
|
964
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ListVpnGatewaysResult
|
949
965
|
end
|
950
966
|
def packet_capture_storage_location
|
951
967
|
Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureStorageLocation
|
952
968
|
end
|
953
|
-
def
|
954
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
969
|
+
def get_vpn_sites_configuration_request
|
970
|
+
Azure::Network::Mgmt::V2018_08_01::Models::GetVpnSitesConfigurationRequest
|
955
971
|
end
|
956
972
|
def packet_capture_filter
|
957
973
|
Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureFilter
|
958
974
|
end
|
959
|
-
def
|
960
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
975
|
+
def vpn_device_script_parameters
|
976
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VpnDeviceScriptParameters
|
961
977
|
end
|
962
978
|
def packet_capture_parameters
|
963
979
|
Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureParameters
|
964
980
|
end
|
965
|
-
def
|
966
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
981
|
+
def application_gateway_connection_draining
|
982
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayConnectionDraining
|
967
983
|
end
|
968
984
|
def packet_capture
|
969
985
|
Azure::Network::Mgmt::V2018_08_01::Models::PacketCapture
|
970
986
|
end
|
971
|
-
def
|
972
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
987
|
+
def application_gateway_backend_health_pool
|
988
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendHealthPool
|
973
989
|
end
|
974
990
|
def packet_capture_result
|
975
991
|
Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureResult
|
976
992
|
end
|
977
|
-
def
|
978
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
993
|
+
def vpn_client_ipsec_parameters
|
994
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VpnClientIPsecParameters
|
979
995
|
end
|
980
996
|
def packet_capture_list_result
|
981
997
|
Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureListResult
|
982
998
|
end
|
983
|
-
def
|
984
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
999
|
+
def gateway_route_list_result
|
1000
|
+
Azure::Network::Mgmt::V2018_08_01::Models::GatewayRouteListResult
|
985
1001
|
end
|
986
1002
|
def packet_capture_query_status_result
|
987
1003
|
Azure::Network::Mgmt::V2018_08_01::Models::PacketCaptureQueryStatusResult
|
988
1004
|
end
|
989
|
-
def
|
990
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1005
|
+
def vpn_client_parameters
|
1006
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VpnClientParameters
|
991
1007
|
end
|
992
1008
|
def troubleshooting_parameters
|
993
1009
|
Azure::Network::Mgmt::V2018_08_01::Models::TroubleshootingParameters
|
994
1010
|
end
|
995
|
-
def
|
996
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1011
|
+
def bgp_settings
|
1012
|
+
Azure::Network::Mgmt::V2018_08_01::Models::BgpSettings
|
997
1013
|
end
|
998
1014
|
def query_troubleshooting_parameters
|
999
1015
|
Azure::Network::Mgmt::V2018_08_01::Models::QueryTroubleshootingParameters
|
1000
1016
|
end
|
1001
|
-
def
|
1002
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1017
|
+
def application_gateway_web_application_firewall_configuration
|
1018
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayWebApplicationFirewallConfiguration
|
1003
1019
|
end
|
1004
1020
|
def troubleshooting_recommended_actions
|
1005
1021
|
Azure::Network::Mgmt::V2018_08_01::Models::TroubleshootingRecommendedActions
|
1006
1022
|
end
|
1007
|
-
def
|
1008
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1023
|
+
def application_gateway_firewall_rule
|
1024
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayFirewallRule
|
1009
1025
|
end
|
1010
1026
|
def troubleshooting_details
|
1011
1027
|
Azure::Network::Mgmt::V2018_08_01::Models::TroubleshootingDetails
|
1012
1028
|
end
|
1013
|
-
def
|
1014
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1029
|
+
def virtual_network_tap_list_result
|
1030
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkTapListResult
|
1015
1031
|
end
|
1016
1032
|
def troubleshooting_result
|
1017
1033
|
Azure::Network::Mgmt::V2018_08_01::Models::TroubleshootingResult
|
1018
1034
|
end
|
1019
|
-
def
|
1020
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1035
|
+
def tags_object
|
1036
|
+
Azure::Network::Mgmt::V2018_08_01::Models::TagsObject
|
1021
1037
|
end
|
1022
1038
|
def retention_policy_parameters
|
1023
1039
|
Azure::Network::Mgmt::V2018_08_01::Models::RetentionPolicyParameters
|
1024
1040
|
end
|
1025
|
-
def
|
1026
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1041
|
+
def virtual_network_usage
|
1042
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkUsage
|
1027
1043
|
end
|
1028
1044
|
def flow_log_status_parameters
|
1029
1045
|
Azure::Network::Mgmt::V2018_08_01::Models::FlowLogStatusParameters
|
1030
1046
|
end
|
1031
|
-
def
|
1032
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1047
|
+
def virtual_network_usage_name
|
1048
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkUsageName
|
1033
1049
|
end
|
1034
1050
|
def traffic_analytics_configuration_properties
|
1035
1051
|
Azure::Network::Mgmt::V2018_08_01::Models::TrafficAnalyticsConfigurationProperties
|
1036
1052
|
end
|
1037
|
-
def
|
1038
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1053
|
+
def azure_firewall_network_rule
|
1054
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallNetworkRule
|
1039
1055
|
end
|
1040
1056
|
def traffic_analytics_properties
|
1041
1057
|
Azure::Network::Mgmt::V2018_08_01::Models::TrafficAnalyticsProperties
|
1042
1058
|
end
|
1043
|
-
def
|
1044
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1059
|
+
def virtual_network_peering_list_result
|
1060
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkPeeringListResult
|
1045
1061
|
end
|
1046
1062
|
def flow_log_information
|
1047
1063
|
Azure::Network::Mgmt::V2018_08_01::Models::FlowLogInformation
|
1048
1064
|
end
|
1049
|
-
def
|
1050
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1065
|
+
def ddos_protection_plan_list_result
|
1066
|
+
Azure::Network::Mgmt::V2018_08_01::Models::DdosProtectionPlanListResult
|
1051
1067
|
end
|
1052
1068
|
def connectivity_source
|
1053
1069
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectivitySource
|
1054
1070
|
end
|
1055
|
-
def
|
1056
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1071
|
+
def authorization_list_result
|
1072
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AuthorizationListResult
|
1057
1073
|
end
|
1058
1074
|
def connectivity_destination
|
1059
1075
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectivityDestination
|
1060
1076
|
end
|
1061
|
-
def
|
1062
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1077
|
+
def express_route_connection_id
|
1078
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteConnectionId
|
1063
1079
|
end
|
1064
1080
|
def httpheader
|
1065
1081
|
Azure::Network::Mgmt::V2018_08_01::Models::HTTPHeader
|
1066
1082
|
end
|
1067
|
-
def
|
1068
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1083
|
+
def ipv6_express_route_circuit_peering_config
|
1084
|
+
Azure::Network::Mgmt::V2018_08_01::Models::Ipv6ExpressRouteCircuitPeeringConfig
|
1069
1085
|
end
|
1070
1086
|
def httpconfiguration
|
1071
1087
|
Azure::Network::Mgmt::V2018_08_01::Models::HTTPConfiguration
|
1072
1088
|
end
|
1073
|
-
def
|
1074
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1089
|
+
def service_endpoint_policy_definition_list_result
|
1090
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ServiceEndpointPolicyDefinitionListResult
|
1075
1091
|
end
|
1076
1092
|
def protocol_configuration
|
1077
1093
|
Azure::Network::Mgmt::V2018_08_01::Models::ProtocolConfiguration
|
1078
1094
|
end
|
1079
|
-
def
|
1080
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1095
|
+
def express_route_circuits_routes_table_list_result
|
1096
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitsRoutesTableListResult
|
1081
1097
|
end
|
1082
1098
|
def connectivity_parameters
|
1083
1099
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectivityParameters
|
1084
1100
|
end
|
1085
|
-
def
|
1086
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1101
|
+
def express_route_service_provider_bandwidths_offered
|
1102
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteServiceProviderBandwidthsOffered
|
1087
1103
|
end
|
1088
1104
|
def connectivity_issue
|
1089
1105
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectivityIssue
|
1090
1106
|
end
|
1091
|
-
def
|
1092
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1107
|
+
def express_route_cross_connections_routes_table_summary_list_result
|
1108
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCrossConnectionsRoutesTableSummaryListResult
|
1093
1109
|
end
|
1094
1110
|
def connectivity_hop
|
1095
1111
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectivityHop
|
1096
1112
|
end
|
1097
|
-
def
|
1098
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1113
|
+
def p2_svpn_profile_parameters
|
1114
|
+
Azure::Network::Mgmt::V2018_08_01::Models::P2SVpnProfileParameters
|
1099
1115
|
end
|
1100
1116
|
def connectivity_information
|
1101
1117
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectivityInformation
|
1102
1118
|
end
|
1103
|
-
def
|
1104
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1119
|
+
def vpn_site_id
|
1120
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VpnSiteId
|
1105
1121
|
end
|
1106
1122
|
def azure_reachability_report_location
|
1107
1123
|
Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReportLocation
|
@@ -1112,158 +1128,158 @@ module Azure::Profiles::Latest
|
|
1112
1128
|
def azure_reachability_report_parameters
|
1113
1129
|
Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReportParameters
|
1114
1130
|
end
|
1115
|
-
def
|
1116
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1131
|
+
def application_gateway_backend_address
|
1132
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendAddress
|
1117
1133
|
end
|
1118
1134
|
def azure_reachability_report_latency_info
|
1119
1135
|
Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReportLatencyInfo
|
1120
1136
|
end
|
1121
|
-
def
|
1122
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1137
|
+
def application_gateway_sku
|
1138
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewaySku
|
1123
1139
|
end
|
1124
1140
|
def azure_reachability_report_item
|
1125
1141
|
Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReportItem
|
1126
1142
|
end
|
1127
|
-
def
|
1128
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1143
|
+
def application_gateway_custom_error
|
1144
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayCustomError
|
1129
1145
|
end
|
1130
1146
|
def azure_reachability_report
|
1131
1147
|
Azure::Network::Mgmt::V2018_08_01::Models::AzureReachabilityReport
|
1132
1148
|
end
|
1133
|
-
def
|
1134
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1149
|
+
def application_gateway_firewall_disabled_rule_group
|
1150
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayFirewallDisabledRuleGroup
|
1135
1151
|
end
|
1136
1152
|
def available_providers_list_parameters
|
1137
1153
|
Azure::Network::Mgmt::V2018_08_01::Models::AvailableProvidersListParameters
|
1138
1154
|
end
|
1139
|
-
def
|
1140
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1155
|
+
def virtual_network_gateway_sku
|
1156
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkGatewaySku
|
1141
1157
|
end
|
1142
1158
|
def available_providers_list_city
|
1143
1159
|
Azure::Network::Mgmt::V2018_08_01::Models::AvailableProvidersListCity
|
1144
1160
|
end
|
1145
|
-
def
|
1146
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1161
|
+
def available_delegation
|
1162
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AvailableDelegation
|
1147
1163
|
end
|
1148
1164
|
def available_providers_list_state
|
1149
1165
|
Azure::Network::Mgmt::V2018_08_01::Models::AvailableProvidersListState
|
1150
1166
|
end
|
1151
|
-
def
|
1152
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1167
|
+
def azure_firewall_nat_rule
|
1168
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallNatRule
|
1153
1169
|
end
|
1154
1170
|
def available_providers_list_country
|
1155
1171
|
Azure::Network::Mgmt::V2018_08_01::Models::AvailableProvidersListCountry
|
1156
1172
|
end
|
1157
|
-
def
|
1158
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1173
|
+
def dns_name_availability_result
|
1174
|
+
Azure::Network::Mgmt::V2018_08_01::Models::DnsNameAvailabilityResult
|
1159
1175
|
end
|
1160
1176
|
def available_providers_list
|
1161
1177
|
Azure::Network::Mgmt::V2018_08_01::Models::AvailableProvidersList
|
1162
1178
|
end
|
1163
|
-
def
|
1164
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1179
|
+
def usages_list_result
|
1180
|
+
Azure::Network::Mgmt::V2018_08_01::Models::UsagesListResult
|
1165
1181
|
end
|
1166
1182
|
def connection_monitor_source
|
1167
1183
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorSource
|
1168
1184
|
end
|
1169
|
-
def
|
1170
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1185
|
+
def express_route_circuit_sku
|
1186
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitSku
|
1171
1187
|
end
|
1172
1188
|
def connection_monitor_destination
|
1173
1189
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorDestination
|
1174
1190
|
end
|
1175
|
-
def
|
1176
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1191
|
+
def express_route_circuits_routes_table_summary_list_result
|
1192
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitsRoutesTableSummaryListResult
|
1177
1193
|
end
|
1178
1194
|
def connection_monitor_parameters
|
1179
1195
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorParameters
|
1180
1196
|
end
|
1181
|
-
def
|
1182
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1197
|
+
def sub_resource
|
1198
|
+
Azure::Network::Mgmt::V2018_08_01::Models::SubResource
|
1183
1199
|
end
|
1184
1200
|
def connection_monitor
|
1185
1201
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitor
|
1186
1202
|
end
|
1187
|
-
def
|
1188
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1203
|
+
def list_hub_virtual_network_connections_result
|
1204
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ListHubVirtualNetworkConnectionsResult
|
1189
1205
|
end
|
1190
1206
|
def connection_monitor_result
|
1191
1207
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorResult
|
1192
1208
|
end
|
1193
|
-
def
|
1194
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1209
|
+
def application_gateway_backend_health_server
|
1210
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayBackendHealthServer
|
1195
1211
|
end
|
1196
1212
|
def connection_monitor_list_result
|
1197
1213
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorListResult
|
1198
1214
|
end
|
1199
|
-
def
|
1200
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1215
|
+
def gateway_route
|
1216
|
+
Azure::Network::Mgmt::V2018_08_01::Models::GatewayRoute
|
1201
1217
|
end
|
1202
1218
|
def connection_state_snapshot
|
1203
1219
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectionStateSnapshot
|
1204
1220
|
end
|
1205
|
-
def
|
1206
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1221
|
+
def application_gateway_available_ssl_predefined_policies
|
1222
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayAvailableSslPredefinedPolicies
|
1207
1223
|
end
|
1208
1224
|
def connection_monitor_query_result
|
1209
1225
|
Azure::Network::Mgmt::V2018_08_01::Models::ConnectionMonitorQueryResult
|
1210
1226
|
end
|
1211
|
-
def
|
1212
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1227
|
+
def dhcp_options
|
1228
|
+
Azure::Network::Mgmt::V2018_08_01::Models::DhcpOptions
|
1213
1229
|
end
|
1214
|
-
def
|
1215
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1230
|
+
def network_configuration_diagnostic_profile
|
1231
|
+
Azure::Network::Mgmt::V2018_08_01::Models::NetworkConfigurationDiagnosticProfile
|
1216
1232
|
end
|
1217
|
-
def
|
1218
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1233
|
+
def usage_name
|
1234
|
+
Azure::Network::Mgmt::V2018_08_01::Models::UsageName
|
1219
1235
|
end
|
1220
1236
|
def network_configuration_diagnostic_parameters
|
1221
1237
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkConfigurationDiagnosticParameters
|
1222
1238
|
end
|
1223
|
-
def
|
1224
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1239
|
+
def express_route_service_provider_list_result
|
1240
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteServiceProviderListResult
|
1225
1241
|
end
|
1226
1242
|
def matched_rule
|
1227
1243
|
Azure::Network::Mgmt::V2018_08_01::Models::MatchedRule
|
1228
1244
|
end
|
1229
|
-
def
|
1230
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1245
|
+
def device_properties
|
1246
|
+
Azure::Network::Mgmt::V2018_08_01::Models::DeviceProperties
|
1231
1247
|
end
|
1232
1248
|
def network_security_rules_evaluation_result
|
1233
1249
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkSecurityRulesEvaluationResult
|
1234
1250
|
end
|
1235
|
-
def
|
1236
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1251
|
+
def ipsec_policy
|
1252
|
+
Azure::Network::Mgmt::V2018_08_01::Models::IpsecPolicy
|
1237
1253
|
end
|
1238
1254
|
def evaluated_network_security_group
|
1239
1255
|
Azure::Network::Mgmt::V2018_08_01::Models::EvaluatedNetworkSecurityGroup
|
1240
1256
|
end
|
1241
|
-
def
|
1242
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1257
|
+
def endpoint_services_list_result
|
1258
|
+
Azure::Network::Mgmt::V2018_08_01::Models::EndpointServicesListResult
|
1243
1259
|
end
|
1244
1260
|
def network_security_group_result
|
1245
1261
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkSecurityGroupResult
|
1246
1262
|
end
|
1247
|
-
def
|
1248
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1263
|
+
def list_p2_svpn_server_configurations_result
|
1264
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ListP2SVpnServerConfigurationsResult
|
1249
1265
|
end
|
1250
1266
|
def network_configuration_diagnostic_result
|
1251
1267
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkConfigurationDiagnosticResult
|
1252
1268
|
end
|
1253
|
-
def
|
1254
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1269
|
+
def azure_firewall_application_rule_protocol
|
1270
|
+
Azure::Network::Mgmt::V2018_08_01::Models::AzureFirewallApplicationRuleProtocol
|
1255
1271
|
end
|
1256
1272
|
def network_configuration_diagnostic_response
|
1257
1273
|
Azure::Network::Mgmt::V2018_08_01::Models::NetworkConfigurationDiagnosticResponse
|
1258
1274
|
end
|
1259
|
-
def
|
1260
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1275
|
+
def virtual_network_gateway_connection_list_result
|
1276
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VirtualNetworkGatewayConnectionListResult
|
1261
1277
|
end
|
1262
1278
|
def operation_display
|
1263
1279
|
Azure::Network::Mgmt::V2018_08_01::Models::OperationDisplay
|
1264
1280
|
end
|
1265
|
-
def
|
1266
|
-
Azure::Network::Mgmt::V2018_08_01::Models::
|
1281
|
+
def express_route_circuits_arp_table_list_result
|
1282
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ExpressRouteCircuitsArpTableListResult
|
1267
1283
|
end
|
1268
1284
|
def availability
|
1269
1285
|
Azure::Network::Mgmt::V2018_08_01::Models::Availability
|
@@ -1601,6 +1617,9 @@ module Azure::Profiles::Latest
|
|
1601
1617
|
def application_gateway_ssl_cipher_suite
|
1602
1618
|
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewaySslCipherSuite
|
1603
1619
|
end
|
1620
|
+
def application_gateway_custom_error_status_code
|
1621
|
+
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayCustomErrorStatusCode
|
1622
|
+
end
|
1604
1623
|
def application_gateway_request_routing_rule_type
|
1605
1624
|
Azure::Network::Mgmt::V2018_08_01::Models::ApplicationGatewayRequestRoutingRuleType
|
1606
1625
|
end
|
@@ -1727,6 +1746,9 @@ module Azure::Profiles::Latest
|
|
1727
1746
|
def evaluation_state
|
1728
1747
|
Azure::Network::Mgmt::V2018_08_01::Models::EvaluationState
|
1729
1748
|
end
|
1749
|
+
def verbosity_level
|
1750
|
+
Azure::Network::Mgmt::V2018_08_01::Models::VerbosityLevel
|
1751
|
+
end
|
1730
1752
|
def public_ipprefix_sku_name
|
1731
1753
|
Azure::Network::Mgmt::V2018_08_01::Models::PublicIPPrefixSkuName
|
1732
1754
|
end
|