aws-sdk-directconnect 1.68.0 → 1.70.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-directconnect/client.rb +70 -46
- data/lib/aws-sdk-directconnect/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-directconnect.rb +1 -1
- data/sig/client.rbs +1374 -0
- data/sig/errors.rbs +26 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +986 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,1374 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module DirectConnect
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> instance
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
74
|
+
|
75
|
+
|
76
|
+
interface _AcceptDirectConnectGatewayAssociationProposalResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AcceptDirectConnectGatewayAssociationProposalResult]
|
78
|
+
def direct_connect_gateway_association: () -> Types::DirectConnectGatewayAssociation
|
79
|
+
end
|
80
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#accept_direct_connect_gateway_association_proposal-instance_method
|
81
|
+
def accept_direct_connect_gateway_association_proposal: (
|
82
|
+
direct_connect_gateway_id: ::String,
|
83
|
+
proposal_id: ::String,
|
84
|
+
associated_gateway_owner_account: ::String,
|
85
|
+
?override_allowed_prefixes_to_direct_connect_gateway: Array[
|
86
|
+
{
|
87
|
+
cidr: ::String?
|
88
|
+
},
|
89
|
+
]
|
90
|
+
) -> _AcceptDirectConnectGatewayAssociationProposalResponseSuccess
|
91
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptDirectConnectGatewayAssociationProposalResponseSuccess
|
92
|
+
|
93
|
+
interface _AllocateConnectionOnInterconnectResponseSuccess
|
94
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Connection]
|
95
|
+
def owner_account: () -> ::String
|
96
|
+
def connection_id: () -> ::String
|
97
|
+
def connection_name: () -> ::String
|
98
|
+
def connection_state: () -> ("ordering" | "requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
99
|
+
def region: () -> ::String
|
100
|
+
def location: () -> ::String
|
101
|
+
def bandwidth: () -> ::String
|
102
|
+
def vlan: () -> ::Integer
|
103
|
+
def partner_name: () -> ::String
|
104
|
+
def loa_issue_time: () -> ::Time
|
105
|
+
def lag_id: () -> ::String
|
106
|
+
def aws_device: () -> ::String
|
107
|
+
def jumbo_frame_capable: () -> bool
|
108
|
+
def aws_device_v2: () -> ::String
|
109
|
+
def aws_logical_device_id: () -> ::String
|
110
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
111
|
+
def tags: () -> ::Array[Types::Tag]
|
112
|
+
def provider_name: () -> ::String
|
113
|
+
def mac_sec_capable: () -> bool
|
114
|
+
def port_encryption_status: () -> ::String
|
115
|
+
def encryption_mode: () -> ::String
|
116
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
117
|
+
end
|
118
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#allocate_connection_on_interconnect-instance_method
|
119
|
+
def allocate_connection_on_interconnect: (
|
120
|
+
bandwidth: ::String,
|
121
|
+
connection_name: ::String,
|
122
|
+
owner_account: ::String,
|
123
|
+
interconnect_id: ::String,
|
124
|
+
vlan: ::Integer
|
125
|
+
) -> _AllocateConnectionOnInterconnectResponseSuccess
|
126
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AllocateConnectionOnInterconnectResponseSuccess
|
127
|
+
|
128
|
+
interface _AllocateHostedConnectionResponseSuccess
|
129
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Connection]
|
130
|
+
def owner_account: () -> ::String
|
131
|
+
def connection_id: () -> ::String
|
132
|
+
def connection_name: () -> ::String
|
133
|
+
def connection_state: () -> ("ordering" | "requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
134
|
+
def region: () -> ::String
|
135
|
+
def location: () -> ::String
|
136
|
+
def bandwidth: () -> ::String
|
137
|
+
def vlan: () -> ::Integer
|
138
|
+
def partner_name: () -> ::String
|
139
|
+
def loa_issue_time: () -> ::Time
|
140
|
+
def lag_id: () -> ::String
|
141
|
+
def aws_device: () -> ::String
|
142
|
+
def jumbo_frame_capable: () -> bool
|
143
|
+
def aws_device_v2: () -> ::String
|
144
|
+
def aws_logical_device_id: () -> ::String
|
145
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
146
|
+
def tags: () -> ::Array[Types::Tag]
|
147
|
+
def provider_name: () -> ::String
|
148
|
+
def mac_sec_capable: () -> bool
|
149
|
+
def port_encryption_status: () -> ::String
|
150
|
+
def encryption_mode: () -> ::String
|
151
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
152
|
+
end
|
153
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#allocate_hosted_connection-instance_method
|
154
|
+
def allocate_hosted_connection: (
|
155
|
+
connection_id: ::String,
|
156
|
+
owner_account: ::String,
|
157
|
+
bandwidth: ::String,
|
158
|
+
connection_name: ::String,
|
159
|
+
vlan: ::Integer,
|
160
|
+
?tags: Array[
|
161
|
+
{
|
162
|
+
key: ::String,
|
163
|
+
value: ::String?
|
164
|
+
},
|
165
|
+
]
|
166
|
+
) -> _AllocateHostedConnectionResponseSuccess
|
167
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AllocateHostedConnectionResponseSuccess
|
168
|
+
|
169
|
+
interface _AllocatePrivateVirtualInterfaceResponseSuccess
|
170
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VirtualInterface]
|
171
|
+
def owner_account: () -> ::String
|
172
|
+
def virtual_interface_id: () -> ::String
|
173
|
+
def location: () -> ::String
|
174
|
+
def connection_id: () -> ::String
|
175
|
+
def virtual_interface_type: () -> ::String
|
176
|
+
def virtual_interface_name: () -> ::String
|
177
|
+
def vlan: () -> ::Integer
|
178
|
+
def asn: () -> ::Integer
|
179
|
+
def amazon_side_asn: () -> ::Integer
|
180
|
+
def auth_key: () -> ::String
|
181
|
+
def amazon_address: () -> ::String
|
182
|
+
def customer_address: () -> ::String
|
183
|
+
def address_family: () -> ("ipv4" | "ipv6")
|
184
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
185
|
+
def customer_router_config: () -> ::String
|
186
|
+
def mtu: () -> ::Integer
|
187
|
+
def jumbo_frame_capable: () -> bool
|
188
|
+
def virtual_gateway_id: () -> ::String
|
189
|
+
def direct_connect_gateway_id: () -> ::String
|
190
|
+
def route_filter_prefixes: () -> ::Array[Types::RouteFilterPrefix]
|
191
|
+
def bgp_peers: () -> ::Array[Types::BGPPeer]
|
192
|
+
def region: () -> ::String
|
193
|
+
def aws_device_v2: () -> ::String
|
194
|
+
def aws_logical_device_id: () -> ::String
|
195
|
+
def tags: () -> ::Array[Types::Tag]
|
196
|
+
def site_link_enabled: () -> bool
|
197
|
+
end
|
198
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#allocate_private_virtual_interface-instance_method
|
199
|
+
def allocate_private_virtual_interface: (
|
200
|
+
connection_id: ::String,
|
201
|
+
owner_account: ::String,
|
202
|
+
new_private_virtual_interface_allocation: {
|
203
|
+
virtual_interface_name: ::String,
|
204
|
+
vlan: ::Integer,
|
205
|
+
asn: ::Integer,
|
206
|
+
mtu: ::Integer?,
|
207
|
+
auth_key: ::String?,
|
208
|
+
amazon_address: ::String?,
|
209
|
+
address_family: ("ipv4" | "ipv6")?,
|
210
|
+
customer_address: ::String?,
|
211
|
+
tags: Array[
|
212
|
+
{
|
213
|
+
key: ::String,
|
214
|
+
value: ::String?
|
215
|
+
},
|
216
|
+
]?
|
217
|
+
}
|
218
|
+
) -> _AllocatePrivateVirtualInterfaceResponseSuccess
|
219
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AllocatePrivateVirtualInterfaceResponseSuccess
|
220
|
+
|
221
|
+
interface _AllocatePublicVirtualInterfaceResponseSuccess
|
222
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VirtualInterface]
|
223
|
+
def owner_account: () -> ::String
|
224
|
+
def virtual_interface_id: () -> ::String
|
225
|
+
def location: () -> ::String
|
226
|
+
def connection_id: () -> ::String
|
227
|
+
def virtual_interface_type: () -> ::String
|
228
|
+
def virtual_interface_name: () -> ::String
|
229
|
+
def vlan: () -> ::Integer
|
230
|
+
def asn: () -> ::Integer
|
231
|
+
def amazon_side_asn: () -> ::Integer
|
232
|
+
def auth_key: () -> ::String
|
233
|
+
def amazon_address: () -> ::String
|
234
|
+
def customer_address: () -> ::String
|
235
|
+
def address_family: () -> ("ipv4" | "ipv6")
|
236
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
237
|
+
def customer_router_config: () -> ::String
|
238
|
+
def mtu: () -> ::Integer
|
239
|
+
def jumbo_frame_capable: () -> bool
|
240
|
+
def virtual_gateway_id: () -> ::String
|
241
|
+
def direct_connect_gateway_id: () -> ::String
|
242
|
+
def route_filter_prefixes: () -> ::Array[Types::RouteFilterPrefix]
|
243
|
+
def bgp_peers: () -> ::Array[Types::BGPPeer]
|
244
|
+
def region: () -> ::String
|
245
|
+
def aws_device_v2: () -> ::String
|
246
|
+
def aws_logical_device_id: () -> ::String
|
247
|
+
def tags: () -> ::Array[Types::Tag]
|
248
|
+
def site_link_enabled: () -> bool
|
249
|
+
end
|
250
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#allocate_public_virtual_interface-instance_method
|
251
|
+
def allocate_public_virtual_interface: (
|
252
|
+
connection_id: ::String,
|
253
|
+
owner_account: ::String,
|
254
|
+
new_public_virtual_interface_allocation: {
|
255
|
+
virtual_interface_name: ::String,
|
256
|
+
vlan: ::Integer,
|
257
|
+
asn: ::Integer,
|
258
|
+
auth_key: ::String?,
|
259
|
+
amazon_address: ::String?,
|
260
|
+
customer_address: ::String?,
|
261
|
+
address_family: ("ipv4" | "ipv6")?,
|
262
|
+
route_filter_prefixes: Array[
|
263
|
+
{
|
264
|
+
cidr: ::String?
|
265
|
+
},
|
266
|
+
]?,
|
267
|
+
tags: Array[
|
268
|
+
{
|
269
|
+
key: ::String,
|
270
|
+
value: ::String?
|
271
|
+
},
|
272
|
+
]?
|
273
|
+
}
|
274
|
+
) -> _AllocatePublicVirtualInterfaceResponseSuccess
|
275
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AllocatePublicVirtualInterfaceResponseSuccess
|
276
|
+
|
277
|
+
interface _AllocateTransitVirtualInterfaceResponseSuccess
|
278
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AllocateTransitVirtualInterfaceResult]
|
279
|
+
def virtual_interface: () -> Types::VirtualInterface
|
280
|
+
end
|
281
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#allocate_transit_virtual_interface-instance_method
|
282
|
+
def allocate_transit_virtual_interface: (
|
283
|
+
connection_id: ::String,
|
284
|
+
owner_account: ::String,
|
285
|
+
new_transit_virtual_interface_allocation: {
|
286
|
+
virtual_interface_name: ::String?,
|
287
|
+
vlan: ::Integer?,
|
288
|
+
asn: ::Integer?,
|
289
|
+
mtu: ::Integer?,
|
290
|
+
auth_key: ::String?,
|
291
|
+
amazon_address: ::String?,
|
292
|
+
customer_address: ::String?,
|
293
|
+
address_family: ("ipv4" | "ipv6")?,
|
294
|
+
tags: Array[
|
295
|
+
{
|
296
|
+
key: ::String,
|
297
|
+
value: ::String?
|
298
|
+
},
|
299
|
+
]?
|
300
|
+
}
|
301
|
+
) -> _AllocateTransitVirtualInterfaceResponseSuccess
|
302
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AllocateTransitVirtualInterfaceResponseSuccess
|
303
|
+
|
304
|
+
interface _AssociateConnectionWithLagResponseSuccess
|
305
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Connection]
|
306
|
+
def owner_account: () -> ::String
|
307
|
+
def connection_id: () -> ::String
|
308
|
+
def connection_name: () -> ::String
|
309
|
+
def connection_state: () -> ("ordering" | "requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
310
|
+
def region: () -> ::String
|
311
|
+
def location: () -> ::String
|
312
|
+
def bandwidth: () -> ::String
|
313
|
+
def vlan: () -> ::Integer
|
314
|
+
def partner_name: () -> ::String
|
315
|
+
def loa_issue_time: () -> ::Time
|
316
|
+
def lag_id: () -> ::String
|
317
|
+
def aws_device: () -> ::String
|
318
|
+
def jumbo_frame_capable: () -> bool
|
319
|
+
def aws_device_v2: () -> ::String
|
320
|
+
def aws_logical_device_id: () -> ::String
|
321
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
322
|
+
def tags: () -> ::Array[Types::Tag]
|
323
|
+
def provider_name: () -> ::String
|
324
|
+
def mac_sec_capable: () -> bool
|
325
|
+
def port_encryption_status: () -> ::String
|
326
|
+
def encryption_mode: () -> ::String
|
327
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
328
|
+
end
|
329
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#associate_connection_with_lag-instance_method
|
330
|
+
def associate_connection_with_lag: (
|
331
|
+
connection_id: ::String,
|
332
|
+
lag_id: ::String
|
333
|
+
) -> _AssociateConnectionWithLagResponseSuccess
|
334
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateConnectionWithLagResponseSuccess
|
335
|
+
|
336
|
+
interface _AssociateHostedConnectionResponseSuccess
|
337
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Connection]
|
338
|
+
def owner_account: () -> ::String
|
339
|
+
def connection_id: () -> ::String
|
340
|
+
def connection_name: () -> ::String
|
341
|
+
def connection_state: () -> ("ordering" | "requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
342
|
+
def region: () -> ::String
|
343
|
+
def location: () -> ::String
|
344
|
+
def bandwidth: () -> ::String
|
345
|
+
def vlan: () -> ::Integer
|
346
|
+
def partner_name: () -> ::String
|
347
|
+
def loa_issue_time: () -> ::Time
|
348
|
+
def lag_id: () -> ::String
|
349
|
+
def aws_device: () -> ::String
|
350
|
+
def jumbo_frame_capable: () -> bool
|
351
|
+
def aws_device_v2: () -> ::String
|
352
|
+
def aws_logical_device_id: () -> ::String
|
353
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
354
|
+
def tags: () -> ::Array[Types::Tag]
|
355
|
+
def provider_name: () -> ::String
|
356
|
+
def mac_sec_capable: () -> bool
|
357
|
+
def port_encryption_status: () -> ::String
|
358
|
+
def encryption_mode: () -> ::String
|
359
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
360
|
+
end
|
361
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#associate_hosted_connection-instance_method
|
362
|
+
def associate_hosted_connection: (
|
363
|
+
connection_id: ::String,
|
364
|
+
parent_connection_id: ::String
|
365
|
+
) -> _AssociateHostedConnectionResponseSuccess
|
366
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateHostedConnectionResponseSuccess
|
367
|
+
|
368
|
+
interface _AssociateMacSecKeyResponseSuccess
|
369
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateMacSecKeyResponse]
|
370
|
+
def connection_id: () -> ::String
|
371
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
372
|
+
end
|
373
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#associate_mac_sec_key-instance_method
|
374
|
+
def associate_mac_sec_key: (
|
375
|
+
connection_id: ::String,
|
376
|
+
?secret_arn: ::String,
|
377
|
+
?ckn: ::String,
|
378
|
+
?cak: ::String
|
379
|
+
) -> _AssociateMacSecKeyResponseSuccess
|
380
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateMacSecKeyResponseSuccess
|
381
|
+
|
382
|
+
interface _AssociateVirtualInterfaceResponseSuccess
|
383
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VirtualInterface]
|
384
|
+
def owner_account: () -> ::String
|
385
|
+
def virtual_interface_id: () -> ::String
|
386
|
+
def location: () -> ::String
|
387
|
+
def connection_id: () -> ::String
|
388
|
+
def virtual_interface_type: () -> ::String
|
389
|
+
def virtual_interface_name: () -> ::String
|
390
|
+
def vlan: () -> ::Integer
|
391
|
+
def asn: () -> ::Integer
|
392
|
+
def amazon_side_asn: () -> ::Integer
|
393
|
+
def auth_key: () -> ::String
|
394
|
+
def amazon_address: () -> ::String
|
395
|
+
def customer_address: () -> ::String
|
396
|
+
def address_family: () -> ("ipv4" | "ipv6")
|
397
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
398
|
+
def customer_router_config: () -> ::String
|
399
|
+
def mtu: () -> ::Integer
|
400
|
+
def jumbo_frame_capable: () -> bool
|
401
|
+
def virtual_gateway_id: () -> ::String
|
402
|
+
def direct_connect_gateway_id: () -> ::String
|
403
|
+
def route_filter_prefixes: () -> ::Array[Types::RouteFilterPrefix]
|
404
|
+
def bgp_peers: () -> ::Array[Types::BGPPeer]
|
405
|
+
def region: () -> ::String
|
406
|
+
def aws_device_v2: () -> ::String
|
407
|
+
def aws_logical_device_id: () -> ::String
|
408
|
+
def tags: () -> ::Array[Types::Tag]
|
409
|
+
def site_link_enabled: () -> bool
|
410
|
+
end
|
411
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#associate_virtual_interface-instance_method
|
412
|
+
def associate_virtual_interface: (
|
413
|
+
virtual_interface_id: ::String,
|
414
|
+
connection_id: ::String
|
415
|
+
) -> _AssociateVirtualInterfaceResponseSuccess
|
416
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateVirtualInterfaceResponseSuccess
|
417
|
+
|
418
|
+
interface _ConfirmConnectionResponseSuccess
|
419
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ConfirmConnectionResponse]
|
420
|
+
def connection_state: () -> ("ordering" | "requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
421
|
+
end
|
422
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#confirm_connection-instance_method
|
423
|
+
def confirm_connection: (
|
424
|
+
connection_id: ::String
|
425
|
+
) -> _ConfirmConnectionResponseSuccess
|
426
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ConfirmConnectionResponseSuccess
|
427
|
+
|
428
|
+
interface _ConfirmCustomerAgreementResponseSuccess
|
429
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ConfirmCustomerAgreementResponse]
|
430
|
+
def status: () -> ::String
|
431
|
+
end
|
432
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#confirm_customer_agreement-instance_method
|
433
|
+
def confirm_customer_agreement: (
|
434
|
+
?agreement_name: ::String
|
435
|
+
) -> _ConfirmCustomerAgreementResponseSuccess
|
436
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ConfirmCustomerAgreementResponseSuccess
|
437
|
+
|
438
|
+
interface _ConfirmPrivateVirtualInterfaceResponseSuccess
|
439
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ConfirmPrivateVirtualInterfaceResponse]
|
440
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
441
|
+
end
|
442
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#confirm_private_virtual_interface-instance_method
|
443
|
+
def confirm_private_virtual_interface: (
|
444
|
+
virtual_interface_id: ::String,
|
445
|
+
?virtual_gateway_id: ::String,
|
446
|
+
?direct_connect_gateway_id: ::String
|
447
|
+
) -> _ConfirmPrivateVirtualInterfaceResponseSuccess
|
448
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ConfirmPrivateVirtualInterfaceResponseSuccess
|
449
|
+
|
450
|
+
interface _ConfirmPublicVirtualInterfaceResponseSuccess
|
451
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ConfirmPublicVirtualInterfaceResponse]
|
452
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
453
|
+
end
|
454
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#confirm_public_virtual_interface-instance_method
|
455
|
+
def confirm_public_virtual_interface: (
|
456
|
+
virtual_interface_id: ::String
|
457
|
+
) -> _ConfirmPublicVirtualInterfaceResponseSuccess
|
458
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ConfirmPublicVirtualInterfaceResponseSuccess
|
459
|
+
|
460
|
+
interface _ConfirmTransitVirtualInterfaceResponseSuccess
|
461
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ConfirmTransitVirtualInterfaceResponse]
|
462
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
463
|
+
end
|
464
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#confirm_transit_virtual_interface-instance_method
|
465
|
+
def confirm_transit_virtual_interface: (
|
466
|
+
virtual_interface_id: ::String,
|
467
|
+
direct_connect_gateway_id: ::String
|
468
|
+
) -> _ConfirmTransitVirtualInterfaceResponseSuccess
|
469
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ConfirmTransitVirtualInterfaceResponseSuccess
|
470
|
+
|
471
|
+
interface _CreateBGPPeerResponseSuccess
|
472
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateBGPPeerResponse]
|
473
|
+
def virtual_interface: () -> Types::VirtualInterface
|
474
|
+
end
|
475
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_bgp_peer-instance_method
|
476
|
+
def create_bgp_peer: (
|
477
|
+
?virtual_interface_id: ::String,
|
478
|
+
?new_bgp_peer: {
|
479
|
+
asn: ::Integer?,
|
480
|
+
auth_key: ::String?,
|
481
|
+
address_family: ("ipv4" | "ipv6")?,
|
482
|
+
amazon_address: ::String?,
|
483
|
+
customer_address: ::String?
|
484
|
+
}
|
485
|
+
) -> _CreateBGPPeerResponseSuccess
|
486
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBGPPeerResponseSuccess
|
487
|
+
|
488
|
+
interface _CreateConnectionResponseSuccess
|
489
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Connection]
|
490
|
+
def owner_account: () -> ::String
|
491
|
+
def connection_id: () -> ::String
|
492
|
+
def connection_name: () -> ::String
|
493
|
+
def connection_state: () -> ("ordering" | "requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
494
|
+
def region: () -> ::String
|
495
|
+
def location: () -> ::String
|
496
|
+
def bandwidth: () -> ::String
|
497
|
+
def vlan: () -> ::Integer
|
498
|
+
def partner_name: () -> ::String
|
499
|
+
def loa_issue_time: () -> ::Time
|
500
|
+
def lag_id: () -> ::String
|
501
|
+
def aws_device: () -> ::String
|
502
|
+
def jumbo_frame_capable: () -> bool
|
503
|
+
def aws_device_v2: () -> ::String
|
504
|
+
def aws_logical_device_id: () -> ::String
|
505
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
506
|
+
def tags: () -> ::Array[Types::Tag]
|
507
|
+
def provider_name: () -> ::String
|
508
|
+
def mac_sec_capable: () -> bool
|
509
|
+
def port_encryption_status: () -> ::String
|
510
|
+
def encryption_mode: () -> ::String
|
511
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
512
|
+
end
|
513
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_connection-instance_method
|
514
|
+
def create_connection: (
|
515
|
+
location: ::String,
|
516
|
+
bandwidth: ::String,
|
517
|
+
connection_name: ::String,
|
518
|
+
?lag_id: ::String,
|
519
|
+
?tags: Array[
|
520
|
+
{
|
521
|
+
key: ::String,
|
522
|
+
value: ::String?
|
523
|
+
},
|
524
|
+
],
|
525
|
+
?provider_name: ::String,
|
526
|
+
?request_mac_sec: bool
|
527
|
+
) -> _CreateConnectionResponseSuccess
|
528
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectionResponseSuccess
|
529
|
+
|
530
|
+
interface _CreateDirectConnectGatewayResponseSuccess
|
531
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDirectConnectGatewayResult]
|
532
|
+
def direct_connect_gateway: () -> Types::DirectConnectGateway
|
533
|
+
end
|
534
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_direct_connect_gateway-instance_method
|
535
|
+
def create_direct_connect_gateway: (
|
536
|
+
direct_connect_gateway_name: ::String,
|
537
|
+
?amazon_side_asn: ::Integer
|
538
|
+
) -> _CreateDirectConnectGatewayResponseSuccess
|
539
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDirectConnectGatewayResponseSuccess
|
540
|
+
|
541
|
+
interface _CreateDirectConnectGatewayAssociationResponseSuccess
|
542
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDirectConnectGatewayAssociationResult]
|
543
|
+
def direct_connect_gateway_association: () -> Types::DirectConnectGatewayAssociation
|
544
|
+
end
|
545
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_direct_connect_gateway_association-instance_method
|
546
|
+
def create_direct_connect_gateway_association: (
|
547
|
+
direct_connect_gateway_id: ::String,
|
548
|
+
?gateway_id: ::String,
|
549
|
+
?add_allowed_prefixes_to_direct_connect_gateway: Array[
|
550
|
+
{
|
551
|
+
cidr: ::String?
|
552
|
+
},
|
553
|
+
],
|
554
|
+
?virtual_gateway_id: ::String
|
555
|
+
) -> _CreateDirectConnectGatewayAssociationResponseSuccess
|
556
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDirectConnectGatewayAssociationResponseSuccess
|
557
|
+
|
558
|
+
interface _CreateDirectConnectGatewayAssociationProposalResponseSuccess
|
559
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDirectConnectGatewayAssociationProposalResult]
|
560
|
+
def direct_connect_gateway_association_proposal: () -> Types::DirectConnectGatewayAssociationProposal
|
561
|
+
end
|
562
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_direct_connect_gateway_association_proposal-instance_method
|
563
|
+
def create_direct_connect_gateway_association_proposal: (
|
564
|
+
direct_connect_gateway_id: ::String,
|
565
|
+
direct_connect_gateway_owner_account: ::String,
|
566
|
+
gateway_id: ::String,
|
567
|
+
?add_allowed_prefixes_to_direct_connect_gateway: Array[
|
568
|
+
{
|
569
|
+
cidr: ::String?
|
570
|
+
},
|
571
|
+
],
|
572
|
+
?remove_allowed_prefixes_to_direct_connect_gateway: Array[
|
573
|
+
{
|
574
|
+
cidr: ::String?
|
575
|
+
},
|
576
|
+
]
|
577
|
+
) -> _CreateDirectConnectGatewayAssociationProposalResponseSuccess
|
578
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDirectConnectGatewayAssociationProposalResponseSuccess
|
579
|
+
|
580
|
+
interface _CreateInterconnectResponseSuccess
|
581
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Interconnect]
|
582
|
+
def interconnect_id: () -> ::String
|
583
|
+
def interconnect_name: () -> ::String
|
584
|
+
def interconnect_state: () -> ("requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "unknown")
|
585
|
+
def region: () -> ::String
|
586
|
+
def location: () -> ::String
|
587
|
+
def bandwidth: () -> ::String
|
588
|
+
def loa_issue_time: () -> ::Time
|
589
|
+
def lag_id: () -> ::String
|
590
|
+
def aws_device: () -> ::String
|
591
|
+
def jumbo_frame_capable: () -> bool
|
592
|
+
def aws_device_v2: () -> ::String
|
593
|
+
def aws_logical_device_id: () -> ::String
|
594
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
595
|
+
def tags: () -> ::Array[Types::Tag]
|
596
|
+
def provider_name: () -> ::String
|
597
|
+
end
|
598
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_interconnect-instance_method
|
599
|
+
def create_interconnect: (
|
600
|
+
interconnect_name: ::String,
|
601
|
+
bandwidth: ::String,
|
602
|
+
location: ::String,
|
603
|
+
?lag_id: ::String,
|
604
|
+
?tags: Array[
|
605
|
+
{
|
606
|
+
key: ::String,
|
607
|
+
value: ::String?
|
608
|
+
},
|
609
|
+
],
|
610
|
+
?provider_name: ::String
|
611
|
+
) -> _CreateInterconnectResponseSuccess
|
612
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInterconnectResponseSuccess
|
613
|
+
|
614
|
+
interface _CreateLagResponseSuccess
|
615
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Lag]
|
616
|
+
def connections_bandwidth: () -> ::String
|
617
|
+
def number_of_connections: () -> ::Integer
|
618
|
+
def lag_id: () -> ::String
|
619
|
+
def owner_account: () -> ::String
|
620
|
+
def lag_name: () -> ::String
|
621
|
+
def lag_state: () -> ("requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "unknown")
|
622
|
+
def location: () -> ::String
|
623
|
+
def region: () -> ::String
|
624
|
+
def minimum_links: () -> ::Integer
|
625
|
+
def aws_device: () -> ::String
|
626
|
+
def aws_device_v2: () -> ::String
|
627
|
+
def aws_logical_device_id: () -> ::String
|
628
|
+
def connections: () -> ::Array[Types::Connection]
|
629
|
+
def allows_hosted_connections: () -> bool
|
630
|
+
def jumbo_frame_capable: () -> bool
|
631
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
632
|
+
def tags: () -> ::Array[Types::Tag]
|
633
|
+
def provider_name: () -> ::String
|
634
|
+
def mac_sec_capable: () -> bool
|
635
|
+
def encryption_mode: () -> ::String
|
636
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
637
|
+
end
|
638
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_lag-instance_method
|
639
|
+
def create_lag: (
|
640
|
+
number_of_connections: ::Integer,
|
641
|
+
location: ::String,
|
642
|
+
connections_bandwidth: ::String,
|
643
|
+
lag_name: ::String,
|
644
|
+
?connection_id: ::String,
|
645
|
+
?tags: Array[
|
646
|
+
{
|
647
|
+
key: ::String,
|
648
|
+
value: ::String?
|
649
|
+
},
|
650
|
+
],
|
651
|
+
?child_connection_tags: Array[
|
652
|
+
{
|
653
|
+
key: ::String,
|
654
|
+
value: ::String?
|
655
|
+
},
|
656
|
+
],
|
657
|
+
?provider_name: ::String,
|
658
|
+
?request_mac_sec: bool
|
659
|
+
) -> _CreateLagResponseSuccess
|
660
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLagResponseSuccess
|
661
|
+
|
662
|
+
interface _CreatePrivateVirtualInterfaceResponseSuccess
|
663
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VirtualInterface]
|
664
|
+
def owner_account: () -> ::String
|
665
|
+
def virtual_interface_id: () -> ::String
|
666
|
+
def location: () -> ::String
|
667
|
+
def connection_id: () -> ::String
|
668
|
+
def virtual_interface_type: () -> ::String
|
669
|
+
def virtual_interface_name: () -> ::String
|
670
|
+
def vlan: () -> ::Integer
|
671
|
+
def asn: () -> ::Integer
|
672
|
+
def amazon_side_asn: () -> ::Integer
|
673
|
+
def auth_key: () -> ::String
|
674
|
+
def amazon_address: () -> ::String
|
675
|
+
def customer_address: () -> ::String
|
676
|
+
def address_family: () -> ("ipv4" | "ipv6")
|
677
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
678
|
+
def customer_router_config: () -> ::String
|
679
|
+
def mtu: () -> ::Integer
|
680
|
+
def jumbo_frame_capable: () -> bool
|
681
|
+
def virtual_gateway_id: () -> ::String
|
682
|
+
def direct_connect_gateway_id: () -> ::String
|
683
|
+
def route_filter_prefixes: () -> ::Array[Types::RouteFilterPrefix]
|
684
|
+
def bgp_peers: () -> ::Array[Types::BGPPeer]
|
685
|
+
def region: () -> ::String
|
686
|
+
def aws_device_v2: () -> ::String
|
687
|
+
def aws_logical_device_id: () -> ::String
|
688
|
+
def tags: () -> ::Array[Types::Tag]
|
689
|
+
def site_link_enabled: () -> bool
|
690
|
+
end
|
691
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_private_virtual_interface-instance_method
|
692
|
+
def create_private_virtual_interface: (
|
693
|
+
connection_id: ::String,
|
694
|
+
new_private_virtual_interface: {
|
695
|
+
virtual_interface_name: ::String,
|
696
|
+
vlan: ::Integer,
|
697
|
+
asn: ::Integer,
|
698
|
+
mtu: ::Integer?,
|
699
|
+
auth_key: ::String?,
|
700
|
+
amazon_address: ::String?,
|
701
|
+
customer_address: ::String?,
|
702
|
+
address_family: ("ipv4" | "ipv6")?,
|
703
|
+
virtual_gateway_id: ::String?,
|
704
|
+
direct_connect_gateway_id: ::String?,
|
705
|
+
tags: Array[
|
706
|
+
{
|
707
|
+
key: ::String,
|
708
|
+
value: ::String?
|
709
|
+
},
|
710
|
+
]?,
|
711
|
+
enable_site_link: bool?
|
712
|
+
}
|
713
|
+
) -> _CreatePrivateVirtualInterfaceResponseSuccess
|
714
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePrivateVirtualInterfaceResponseSuccess
|
715
|
+
|
716
|
+
interface _CreatePublicVirtualInterfaceResponseSuccess
|
717
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VirtualInterface]
|
718
|
+
def owner_account: () -> ::String
|
719
|
+
def virtual_interface_id: () -> ::String
|
720
|
+
def location: () -> ::String
|
721
|
+
def connection_id: () -> ::String
|
722
|
+
def virtual_interface_type: () -> ::String
|
723
|
+
def virtual_interface_name: () -> ::String
|
724
|
+
def vlan: () -> ::Integer
|
725
|
+
def asn: () -> ::Integer
|
726
|
+
def amazon_side_asn: () -> ::Integer
|
727
|
+
def auth_key: () -> ::String
|
728
|
+
def amazon_address: () -> ::String
|
729
|
+
def customer_address: () -> ::String
|
730
|
+
def address_family: () -> ("ipv4" | "ipv6")
|
731
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
732
|
+
def customer_router_config: () -> ::String
|
733
|
+
def mtu: () -> ::Integer
|
734
|
+
def jumbo_frame_capable: () -> bool
|
735
|
+
def virtual_gateway_id: () -> ::String
|
736
|
+
def direct_connect_gateway_id: () -> ::String
|
737
|
+
def route_filter_prefixes: () -> ::Array[Types::RouteFilterPrefix]
|
738
|
+
def bgp_peers: () -> ::Array[Types::BGPPeer]
|
739
|
+
def region: () -> ::String
|
740
|
+
def aws_device_v2: () -> ::String
|
741
|
+
def aws_logical_device_id: () -> ::String
|
742
|
+
def tags: () -> ::Array[Types::Tag]
|
743
|
+
def site_link_enabled: () -> bool
|
744
|
+
end
|
745
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_public_virtual_interface-instance_method
|
746
|
+
def create_public_virtual_interface: (
|
747
|
+
connection_id: ::String,
|
748
|
+
new_public_virtual_interface: {
|
749
|
+
virtual_interface_name: ::String,
|
750
|
+
vlan: ::Integer,
|
751
|
+
asn: ::Integer,
|
752
|
+
auth_key: ::String?,
|
753
|
+
amazon_address: ::String?,
|
754
|
+
customer_address: ::String?,
|
755
|
+
address_family: ("ipv4" | "ipv6")?,
|
756
|
+
route_filter_prefixes: Array[
|
757
|
+
{
|
758
|
+
cidr: ::String?
|
759
|
+
},
|
760
|
+
]?,
|
761
|
+
tags: Array[
|
762
|
+
{
|
763
|
+
key: ::String,
|
764
|
+
value: ::String?
|
765
|
+
},
|
766
|
+
]?
|
767
|
+
}
|
768
|
+
) -> _CreatePublicVirtualInterfaceResponseSuccess
|
769
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePublicVirtualInterfaceResponseSuccess
|
770
|
+
|
771
|
+
interface _CreateTransitVirtualInterfaceResponseSuccess
|
772
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTransitVirtualInterfaceResult]
|
773
|
+
def virtual_interface: () -> Types::VirtualInterface
|
774
|
+
end
|
775
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#create_transit_virtual_interface-instance_method
|
776
|
+
def create_transit_virtual_interface: (
|
777
|
+
connection_id: ::String,
|
778
|
+
new_transit_virtual_interface: {
|
779
|
+
virtual_interface_name: ::String?,
|
780
|
+
vlan: ::Integer?,
|
781
|
+
asn: ::Integer?,
|
782
|
+
mtu: ::Integer?,
|
783
|
+
auth_key: ::String?,
|
784
|
+
amazon_address: ::String?,
|
785
|
+
customer_address: ::String?,
|
786
|
+
address_family: ("ipv4" | "ipv6")?,
|
787
|
+
direct_connect_gateway_id: ::String?,
|
788
|
+
tags: Array[
|
789
|
+
{
|
790
|
+
key: ::String,
|
791
|
+
value: ::String?
|
792
|
+
},
|
793
|
+
]?,
|
794
|
+
enable_site_link: bool?
|
795
|
+
}
|
796
|
+
) -> _CreateTransitVirtualInterfaceResponseSuccess
|
797
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTransitVirtualInterfaceResponseSuccess
|
798
|
+
|
799
|
+
interface _DeleteBGPPeerResponseSuccess
|
800
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBGPPeerResponse]
|
801
|
+
def virtual_interface: () -> Types::VirtualInterface
|
802
|
+
end
|
803
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_bgp_peer-instance_method
|
804
|
+
def delete_bgp_peer: (
|
805
|
+
?virtual_interface_id: ::String,
|
806
|
+
?asn: ::Integer,
|
807
|
+
?customer_address: ::String,
|
808
|
+
?bgp_peer_id: ::String
|
809
|
+
) -> _DeleteBGPPeerResponseSuccess
|
810
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBGPPeerResponseSuccess
|
811
|
+
|
812
|
+
interface _DeleteConnectionResponseSuccess
|
813
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Connection]
|
814
|
+
def owner_account: () -> ::String
|
815
|
+
def connection_id: () -> ::String
|
816
|
+
def connection_name: () -> ::String
|
817
|
+
def connection_state: () -> ("ordering" | "requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
818
|
+
def region: () -> ::String
|
819
|
+
def location: () -> ::String
|
820
|
+
def bandwidth: () -> ::String
|
821
|
+
def vlan: () -> ::Integer
|
822
|
+
def partner_name: () -> ::String
|
823
|
+
def loa_issue_time: () -> ::Time
|
824
|
+
def lag_id: () -> ::String
|
825
|
+
def aws_device: () -> ::String
|
826
|
+
def jumbo_frame_capable: () -> bool
|
827
|
+
def aws_device_v2: () -> ::String
|
828
|
+
def aws_logical_device_id: () -> ::String
|
829
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
830
|
+
def tags: () -> ::Array[Types::Tag]
|
831
|
+
def provider_name: () -> ::String
|
832
|
+
def mac_sec_capable: () -> bool
|
833
|
+
def port_encryption_status: () -> ::String
|
834
|
+
def encryption_mode: () -> ::String
|
835
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
836
|
+
end
|
837
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_connection-instance_method
|
838
|
+
def delete_connection: (
|
839
|
+
connection_id: ::String
|
840
|
+
) -> _DeleteConnectionResponseSuccess
|
841
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectionResponseSuccess
|
842
|
+
|
843
|
+
interface _DeleteDirectConnectGatewayResponseSuccess
|
844
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDirectConnectGatewayResult]
|
845
|
+
def direct_connect_gateway: () -> Types::DirectConnectGateway
|
846
|
+
end
|
847
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_direct_connect_gateway-instance_method
|
848
|
+
def delete_direct_connect_gateway: (
|
849
|
+
direct_connect_gateway_id: ::String
|
850
|
+
) -> _DeleteDirectConnectGatewayResponseSuccess
|
851
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDirectConnectGatewayResponseSuccess
|
852
|
+
|
853
|
+
interface _DeleteDirectConnectGatewayAssociationResponseSuccess
|
854
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDirectConnectGatewayAssociationResult]
|
855
|
+
def direct_connect_gateway_association: () -> Types::DirectConnectGatewayAssociation
|
856
|
+
end
|
857
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_direct_connect_gateway_association-instance_method
|
858
|
+
def delete_direct_connect_gateway_association: (
|
859
|
+
?association_id: ::String,
|
860
|
+
?direct_connect_gateway_id: ::String,
|
861
|
+
?virtual_gateway_id: ::String
|
862
|
+
) -> _DeleteDirectConnectGatewayAssociationResponseSuccess
|
863
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDirectConnectGatewayAssociationResponseSuccess
|
864
|
+
|
865
|
+
interface _DeleteDirectConnectGatewayAssociationProposalResponseSuccess
|
866
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDirectConnectGatewayAssociationProposalResult]
|
867
|
+
def direct_connect_gateway_association_proposal: () -> Types::DirectConnectGatewayAssociationProposal
|
868
|
+
end
|
869
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_direct_connect_gateway_association_proposal-instance_method
|
870
|
+
def delete_direct_connect_gateway_association_proposal: (
|
871
|
+
proposal_id: ::String
|
872
|
+
) -> _DeleteDirectConnectGatewayAssociationProposalResponseSuccess
|
873
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDirectConnectGatewayAssociationProposalResponseSuccess
|
874
|
+
|
875
|
+
interface _DeleteInterconnectResponseSuccess
|
876
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteInterconnectResponse]
|
877
|
+
def interconnect_state: () -> ("requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "unknown")
|
878
|
+
end
|
879
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_interconnect-instance_method
|
880
|
+
def delete_interconnect: (
|
881
|
+
interconnect_id: ::String
|
882
|
+
) -> _DeleteInterconnectResponseSuccess
|
883
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInterconnectResponseSuccess
|
884
|
+
|
885
|
+
interface _DeleteLagResponseSuccess
|
886
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Lag]
|
887
|
+
def connections_bandwidth: () -> ::String
|
888
|
+
def number_of_connections: () -> ::Integer
|
889
|
+
def lag_id: () -> ::String
|
890
|
+
def owner_account: () -> ::String
|
891
|
+
def lag_name: () -> ::String
|
892
|
+
def lag_state: () -> ("requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "unknown")
|
893
|
+
def location: () -> ::String
|
894
|
+
def region: () -> ::String
|
895
|
+
def minimum_links: () -> ::Integer
|
896
|
+
def aws_device: () -> ::String
|
897
|
+
def aws_device_v2: () -> ::String
|
898
|
+
def aws_logical_device_id: () -> ::String
|
899
|
+
def connections: () -> ::Array[Types::Connection]
|
900
|
+
def allows_hosted_connections: () -> bool
|
901
|
+
def jumbo_frame_capable: () -> bool
|
902
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
903
|
+
def tags: () -> ::Array[Types::Tag]
|
904
|
+
def provider_name: () -> ::String
|
905
|
+
def mac_sec_capable: () -> bool
|
906
|
+
def encryption_mode: () -> ::String
|
907
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
908
|
+
end
|
909
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_lag-instance_method
|
910
|
+
def delete_lag: (
|
911
|
+
lag_id: ::String
|
912
|
+
) -> _DeleteLagResponseSuccess
|
913
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLagResponseSuccess
|
914
|
+
|
915
|
+
interface _DeleteVirtualInterfaceResponseSuccess
|
916
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVirtualInterfaceResponse]
|
917
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
918
|
+
end
|
919
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#delete_virtual_interface-instance_method
|
920
|
+
def delete_virtual_interface: (
|
921
|
+
virtual_interface_id: ::String
|
922
|
+
) -> _DeleteVirtualInterfaceResponseSuccess
|
923
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVirtualInterfaceResponseSuccess
|
924
|
+
|
925
|
+
interface _DescribeConnectionLoaResponseSuccess
|
926
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConnectionLoaResponse]
|
927
|
+
def loa: () -> Types::Loa
|
928
|
+
end
|
929
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_connection_loa-instance_method
|
930
|
+
def describe_connection_loa: (
|
931
|
+
connection_id: ::String,
|
932
|
+
?provider_name: ::String,
|
933
|
+
?loa_content_type: ("application/pdf")
|
934
|
+
) -> _DescribeConnectionLoaResponseSuccess
|
935
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConnectionLoaResponseSuccess
|
936
|
+
|
937
|
+
interface _DescribeConnectionsResponseSuccess
|
938
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Connections]
|
939
|
+
def connections: () -> ::Array[Types::Connection]
|
940
|
+
end
|
941
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_connections-instance_method
|
942
|
+
def describe_connections: (
|
943
|
+
?connection_id: ::String
|
944
|
+
) -> _DescribeConnectionsResponseSuccess
|
945
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConnectionsResponseSuccess
|
946
|
+
|
947
|
+
interface _DescribeConnectionsOnInterconnectResponseSuccess
|
948
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Connections]
|
949
|
+
def connections: () -> ::Array[Types::Connection]
|
950
|
+
end
|
951
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_connections_on_interconnect-instance_method
|
952
|
+
def describe_connections_on_interconnect: (
|
953
|
+
interconnect_id: ::String
|
954
|
+
) -> _DescribeConnectionsOnInterconnectResponseSuccess
|
955
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConnectionsOnInterconnectResponseSuccess
|
956
|
+
|
957
|
+
interface _DescribeCustomerMetadataResponseSuccess
|
958
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCustomerMetadataResponse]
|
959
|
+
def agreements: () -> ::Array[Types::CustomerAgreement]
|
960
|
+
def nni_partner_type: () -> ("v1" | "v2" | "nonPartner")
|
961
|
+
end
|
962
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_customer_metadata-instance_method
|
963
|
+
def describe_customer_metadata: () -> _DescribeCustomerMetadataResponseSuccess
|
964
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCustomerMetadataResponseSuccess
|
965
|
+
|
966
|
+
interface _DescribeDirectConnectGatewayAssociationProposalsResponseSuccess
|
967
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDirectConnectGatewayAssociationProposalsResult]
|
968
|
+
def direct_connect_gateway_association_proposals: () -> ::Array[Types::DirectConnectGatewayAssociationProposal]
|
969
|
+
def next_token: () -> ::String
|
970
|
+
end
|
971
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_direct_connect_gateway_association_proposals-instance_method
|
972
|
+
def describe_direct_connect_gateway_association_proposals: (
|
973
|
+
?direct_connect_gateway_id: ::String,
|
974
|
+
?proposal_id: ::String,
|
975
|
+
?associated_gateway_id: ::String,
|
976
|
+
?max_results: ::Integer,
|
977
|
+
?next_token: ::String
|
978
|
+
) -> _DescribeDirectConnectGatewayAssociationProposalsResponseSuccess
|
979
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDirectConnectGatewayAssociationProposalsResponseSuccess
|
980
|
+
|
981
|
+
interface _DescribeDirectConnectGatewayAssociationsResponseSuccess
|
982
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDirectConnectGatewayAssociationsResult]
|
983
|
+
def direct_connect_gateway_associations: () -> ::Array[Types::DirectConnectGatewayAssociation]
|
984
|
+
def next_token: () -> ::String
|
985
|
+
end
|
986
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_direct_connect_gateway_associations-instance_method
|
987
|
+
def describe_direct_connect_gateway_associations: (
|
988
|
+
?association_id: ::String,
|
989
|
+
?associated_gateway_id: ::String,
|
990
|
+
?direct_connect_gateway_id: ::String,
|
991
|
+
?max_results: ::Integer,
|
992
|
+
?next_token: ::String,
|
993
|
+
?virtual_gateway_id: ::String
|
994
|
+
) -> _DescribeDirectConnectGatewayAssociationsResponseSuccess
|
995
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDirectConnectGatewayAssociationsResponseSuccess
|
996
|
+
|
997
|
+
interface _DescribeDirectConnectGatewayAttachmentsResponseSuccess
|
998
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDirectConnectGatewayAttachmentsResult]
|
999
|
+
def direct_connect_gateway_attachments: () -> ::Array[Types::DirectConnectGatewayAttachment]
|
1000
|
+
def next_token: () -> ::String
|
1001
|
+
end
|
1002
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_direct_connect_gateway_attachments-instance_method
|
1003
|
+
def describe_direct_connect_gateway_attachments: (
|
1004
|
+
?direct_connect_gateway_id: ::String,
|
1005
|
+
?virtual_interface_id: ::String,
|
1006
|
+
?max_results: ::Integer,
|
1007
|
+
?next_token: ::String
|
1008
|
+
) -> _DescribeDirectConnectGatewayAttachmentsResponseSuccess
|
1009
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDirectConnectGatewayAttachmentsResponseSuccess
|
1010
|
+
|
1011
|
+
interface _DescribeDirectConnectGatewaysResponseSuccess
|
1012
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDirectConnectGatewaysResult]
|
1013
|
+
def direct_connect_gateways: () -> ::Array[Types::DirectConnectGateway]
|
1014
|
+
def next_token: () -> ::String
|
1015
|
+
end
|
1016
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_direct_connect_gateways-instance_method
|
1017
|
+
def describe_direct_connect_gateways: (
|
1018
|
+
?direct_connect_gateway_id: ::String,
|
1019
|
+
?max_results: ::Integer,
|
1020
|
+
?next_token: ::String
|
1021
|
+
) -> _DescribeDirectConnectGatewaysResponseSuccess
|
1022
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDirectConnectGatewaysResponseSuccess
|
1023
|
+
|
1024
|
+
interface _DescribeHostedConnectionsResponseSuccess
|
1025
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Connections]
|
1026
|
+
def connections: () -> ::Array[Types::Connection]
|
1027
|
+
end
|
1028
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_hosted_connections-instance_method
|
1029
|
+
def describe_hosted_connections: (
|
1030
|
+
connection_id: ::String
|
1031
|
+
) -> _DescribeHostedConnectionsResponseSuccess
|
1032
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeHostedConnectionsResponseSuccess
|
1033
|
+
|
1034
|
+
interface _DescribeInterconnectLoaResponseSuccess
|
1035
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInterconnectLoaResponse]
|
1036
|
+
def loa: () -> Types::Loa
|
1037
|
+
end
|
1038
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_interconnect_loa-instance_method
|
1039
|
+
def describe_interconnect_loa: (
|
1040
|
+
interconnect_id: ::String,
|
1041
|
+
?provider_name: ::String,
|
1042
|
+
?loa_content_type: ("application/pdf")
|
1043
|
+
) -> _DescribeInterconnectLoaResponseSuccess
|
1044
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInterconnectLoaResponseSuccess
|
1045
|
+
|
1046
|
+
interface _DescribeInterconnectsResponseSuccess
|
1047
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Interconnects]
|
1048
|
+
def interconnects: () -> ::Array[Types::Interconnect]
|
1049
|
+
end
|
1050
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_interconnects-instance_method
|
1051
|
+
def describe_interconnects: (
|
1052
|
+
?interconnect_id: ::String
|
1053
|
+
) -> _DescribeInterconnectsResponseSuccess
|
1054
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInterconnectsResponseSuccess
|
1055
|
+
|
1056
|
+
interface _DescribeLagsResponseSuccess
|
1057
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Lags]
|
1058
|
+
def lags: () -> ::Array[Types::Lag]
|
1059
|
+
end
|
1060
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_lags-instance_method
|
1061
|
+
def describe_lags: (
|
1062
|
+
?lag_id: ::String
|
1063
|
+
) -> _DescribeLagsResponseSuccess
|
1064
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLagsResponseSuccess
|
1065
|
+
|
1066
|
+
interface _DescribeLoaResponseSuccess
|
1067
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Loa]
|
1068
|
+
def loa_content: () -> ::String
|
1069
|
+
def loa_content_type: () -> ("application/pdf")
|
1070
|
+
end
|
1071
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_loa-instance_method
|
1072
|
+
def describe_loa: (
|
1073
|
+
connection_id: ::String,
|
1074
|
+
?provider_name: ::String,
|
1075
|
+
?loa_content_type: ("application/pdf")
|
1076
|
+
) -> _DescribeLoaResponseSuccess
|
1077
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLoaResponseSuccess
|
1078
|
+
|
1079
|
+
interface _DescribeLocationsResponseSuccess
|
1080
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Locations]
|
1081
|
+
def locations: () -> ::Array[Types::Location]
|
1082
|
+
end
|
1083
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_locations-instance_method
|
1084
|
+
def describe_locations: () -> _DescribeLocationsResponseSuccess
|
1085
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationsResponseSuccess
|
1086
|
+
|
1087
|
+
interface _DescribeRouterConfigurationResponseSuccess
|
1088
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRouterConfigurationResponse]
|
1089
|
+
def customer_router_config: () -> ::String
|
1090
|
+
def router: () -> Types::RouterType
|
1091
|
+
def virtual_interface_id: () -> ::String
|
1092
|
+
def virtual_interface_name: () -> ::String
|
1093
|
+
end
|
1094
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_router_configuration-instance_method
|
1095
|
+
def describe_router_configuration: (
|
1096
|
+
virtual_interface_id: ::String,
|
1097
|
+
?router_type_identifier: ::String
|
1098
|
+
) -> _DescribeRouterConfigurationResponseSuccess
|
1099
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRouterConfigurationResponseSuccess
|
1100
|
+
|
1101
|
+
interface _DescribeTagsResponseSuccess
|
1102
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTagsResponse]
|
1103
|
+
def resource_tags: () -> ::Array[Types::ResourceTag]
|
1104
|
+
end
|
1105
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_tags-instance_method
|
1106
|
+
def describe_tags: (
|
1107
|
+
resource_arns: Array[::String]
|
1108
|
+
) -> _DescribeTagsResponseSuccess
|
1109
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTagsResponseSuccess
|
1110
|
+
|
1111
|
+
interface _DescribeVirtualGatewaysResponseSuccess
|
1112
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VirtualGateways]
|
1113
|
+
def virtual_gateways: () -> ::Array[Types::VirtualGateway]
|
1114
|
+
end
|
1115
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_virtual_gateways-instance_method
|
1116
|
+
def describe_virtual_gateways: () -> _DescribeVirtualGatewaysResponseSuccess
|
1117
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVirtualGatewaysResponseSuccess
|
1118
|
+
|
1119
|
+
interface _DescribeVirtualInterfacesResponseSuccess
|
1120
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VirtualInterfaces]
|
1121
|
+
def virtual_interfaces: () -> ::Array[Types::VirtualInterface]
|
1122
|
+
end
|
1123
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_virtual_interfaces-instance_method
|
1124
|
+
def describe_virtual_interfaces: (
|
1125
|
+
?connection_id: ::String,
|
1126
|
+
?virtual_interface_id: ::String
|
1127
|
+
) -> _DescribeVirtualInterfacesResponseSuccess
|
1128
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVirtualInterfacesResponseSuccess
|
1129
|
+
|
1130
|
+
interface _DisassociateConnectionFromLagResponseSuccess
|
1131
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Connection]
|
1132
|
+
def owner_account: () -> ::String
|
1133
|
+
def connection_id: () -> ::String
|
1134
|
+
def connection_name: () -> ::String
|
1135
|
+
def connection_state: () -> ("ordering" | "requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
1136
|
+
def region: () -> ::String
|
1137
|
+
def location: () -> ::String
|
1138
|
+
def bandwidth: () -> ::String
|
1139
|
+
def vlan: () -> ::Integer
|
1140
|
+
def partner_name: () -> ::String
|
1141
|
+
def loa_issue_time: () -> ::Time
|
1142
|
+
def lag_id: () -> ::String
|
1143
|
+
def aws_device: () -> ::String
|
1144
|
+
def jumbo_frame_capable: () -> bool
|
1145
|
+
def aws_device_v2: () -> ::String
|
1146
|
+
def aws_logical_device_id: () -> ::String
|
1147
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
1148
|
+
def tags: () -> ::Array[Types::Tag]
|
1149
|
+
def provider_name: () -> ::String
|
1150
|
+
def mac_sec_capable: () -> bool
|
1151
|
+
def port_encryption_status: () -> ::String
|
1152
|
+
def encryption_mode: () -> ::String
|
1153
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
1154
|
+
end
|
1155
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#disassociate_connection_from_lag-instance_method
|
1156
|
+
def disassociate_connection_from_lag: (
|
1157
|
+
connection_id: ::String,
|
1158
|
+
lag_id: ::String
|
1159
|
+
) -> _DisassociateConnectionFromLagResponseSuccess
|
1160
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateConnectionFromLagResponseSuccess
|
1161
|
+
|
1162
|
+
interface _DisassociateMacSecKeyResponseSuccess
|
1163
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateMacSecKeyResponse]
|
1164
|
+
def connection_id: () -> ::String
|
1165
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
1166
|
+
end
|
1167
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#disassociate_mac_sec_key-instance_method
|
1168
|
+
def disassociate_mac_sec_key: (
|
1169
|
+
connection_id: ::String,
|
1170
|
+
secret_arn: ::String
|
1171
|
+
) -> _DisassociateMacSecKeyResponseSuccess
|
1172
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateMacSecKeyResponseSuccess
|
1173
|
+
|
1174
|
+
interface _ListVirtualInterfaceTestHistoryResponseSuccess
|
1175
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListVirtualInterfaceTestHistoryResponse]
|
1176
|
+
def virtual_interface_test_history: () -> ::Array[Types::VirtualInterfaceTestHistory]
|
1177
|
+
def next_token: () -> ::String
|
1178
|
+
end
|
1179
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#list_virtual_interface_test_history-instance_method
|
1180
|
+
def list_virtual_interface_test_history: (
|
1181
|
+
?test_id: ::String,
|
1182
|
+
?virtual_interface_id: ::String,
|
1183
|
+
?bgp_peers: Array[::String],
|
1184
|
+
?status: ::String,
|
1185
|
+
?max_results: ::Integer,
|
1186
|
+
?next_token: ::String
|
1187
|
+
) -> _ListVirtualInterfaceTestHistoryResponseSuccess
|
1188
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVirtualInterfaceTestHistoryResponseSuccess
|
1189
|
+
|
1190
|
+
interface _StartBgpFailoverTestResponseSuccess
|
1191
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartBgpFailoverTestResponse]
|
1192
|
+
def virtual_interface_test: () -> Types::VirtualInterfaceTestHistory
|
1193
|
+
end
|
1194
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#start_bgp_failover_test-instance_method
|
1195
|
+
def start_bgp_failover_test: (
|
1196
|
+
virtual_interface_id: ::String,
|
1197
|
+
?bgp_peers: Array[::String],
|
1198
|
+
?test_duration_in_minutes: ::Integer
|
1199
|
+
) -> _StartBgpFailoverTestResponseSuccess
|
1200
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartBgpFailoverTestResponseSuccess
|
1201
|
+
|
1202
|
+
interface _StopBgpFailoverTestResponseSuccess
|
1203
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopBgpFailoverTestResponse]
|
1204
|
+
def virtual_interface_test: () -> Types::VirtualInterfaceTestHistory
|
1205
|
+
end
|
1206
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#stop_bgp_failover_test-instance_method
|
1207
|
+
def stop_bgp_failover_test: (
|
1208
|
+
virtual_interface_id: ::String
|
1209
|
+
) -> _StopBgpFailoverTestResponseSuccess
|
1210
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopBgpFailoverTestResponseSuccess
|
1211
|
+
|
1212
|
+
interface _TagResourceResponseSuccess
|
1213
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
1214
|
+
end
|
1215
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#tag_resource-instance_method
|
1216
|
+
def tag_resource: (
|
1217
|
+
resource_arn: ::String,
|
1218
|
+
tags: Array[
|
1219
|
+
{
|
1220
|
+
key: ::String,
|
1221
|
+
value: ::String?
|
1222
|
+
},
|
1223
|
+
]
|
1224
|
+
) -> _TagResourceResponseSuccess
|
1225
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
1226
|
+
|
1227
|
+
interface _UntagResourceResponseSuccess
|
1228
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
1229
|
+
end
|
1230
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#untag_resource-instance_method
|
1231
|
+
def untag_resource: (
|
1232
|
+
resource_arn: ::String,
|
1233
|
+
tag_keys: Array[::String]
|
1234
|
+
) -> _UntagResourceResponseSuccess
|
1235
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
1236
|
+
|
1237
|
+
interface _UpdateConnectionResponseSuccess
|
1238
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Connection]
|
1239
|
+
def owner_account: () -> ::String
|
1240
|
+
def connection_id: () -> ::String
|
1241
|
+
def connection_name: () -> ::String
|
1242
|
+
def connection_state: () -> ("ordering" | "requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
1243
|
+
def region: () -> ::String
|
1244
|
+
def location: () -> ::String
|
1245
|
+
def bandwidth: () -> ::String
|
1246
|
+
def vlan: () -> ::Integer
|
1247
|
+
def partner_name: () -> ::String
|
1248
|
+
def loa_issue_time: () -> ::Time
|
1249
|
+
def lag_id: () -> ::String
|
1250
|
+
def aws_device: () -> ::String
|
1251
|
+
def jumbo_frame_capable: () -> bool
|
1252
|
+
def aws_device_v2: () -> ::String
|
1253
|
+
def aws_logical_device_id: () -> ::String
|
1254
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
1255
|
+
def tags: () -> ::Array[Types::Tag]
|
1256
|
+
def provider_name: () -> ::String
|
1257
|
+
def mac_sec_capable: () -> bool
|
1258
|
+
def port_encryption_status: () -> ::String
|
1259
|
+
def encryption_mode: () -> ::String
|
1260
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
1261
|
+
end
|
1262
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#update_connection-instance_method
|
1263
|
+
def update_connection: (
|
1264
|
+
connection_id: ::String,
|
1265
|
+
?connection_name: ::String,
|
1266
|
+
?encryption_mode: ::String
|
1267
|
+
) -> _UpdateConnectionResponseSuccess
|
1268
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionResponseSuccess
|
1269
|
+
|
1270
|
+
interface _UpdateDirectConnectGatewayResponseSuccess
|
1271
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDirectConnectGatewayResponse]
|
1272
|
+
def direct_connect_gateway: () -> Types::DirectConnectGateway
|
1273
|
+
end
|
1274
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#update_direct_connect_gateway-instance_method
|
1275
|
+
def update_direct_connect_gateway: (
|
1276
|
+
direct_connect_gateway_id: ::String,
|
1277
|
+
new_direct_connect_gateway_name: ::String
|
1278
|
+
) -> _UpdateDirectConnectGatewayResponseSuccess
|
1279
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDirectConnectGatewayResponseSuccess
|
1280
|
+
|
1281
|
+
interface _UpdateDirectConnectGatewayAssociationResponseSuccess
|
1282
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDirectConnectGatewayAssociationResult]
|
1283
|
+
def direct_connect_gateway_association: () -> Types::DirectConnectGatewayAssociation
|
1284
|
+
end
|
1285
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#update_direct_connect_gateway_association-instance_method
|
1286
|
+
def update_direct_connect_gateway_association: (
|
1287
|
+
?association_id: ::String,
|
1288
|
+
?add_allowed_prefixes_to_direct_connect_gateway: Array[
|
1289
|
+
{
|
1290
|
+
cidr: ::String?
|
1291
|
+
},
|
1292
|
+
],
|
1293
|
+
?remove_allowed_prefixes_to_direct_connect_gateway: Array[
|
1294
|
+
{
|
1295
|
+
cidr: ::String?
|
1296
|
+
},
|
1297
|
+
]
|
1298
|
+
) -> _UpdateDirectConnectGatewayAssociationResponseSuccess
|
1299
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDirectConnectGatewayAssociationResponseSuccess
|
1300
|
+
|
1301
|
+
interface _UpdateLagResponseSuccess
|
1302
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::Lag]
|
1303
|
+
def connections_bandwidth: () -> ::String
|
1304
|
+
def number_of_connections: () -> ::Integer
|
1305
|
+
def lag_id: () -> ::String
|
1306
|
+
def owner_account: () -> ::String
|
1307
|
+
def lag_name: () -> ::String
|
1308
|
+
def lag_state: () -> ("requested" | "pending" | "available" | "down" | "deleting" | "deleted" | "unknown")
|
1309
|
+
def location: () -> ::String
|
1310
|
+
def region: () -> ::String
|
1311
|
+
def minimum_links: () -> ::Integer
|
1312
|
+
def aws_device: () -> ::String
|
1313
|
+
def aws_device_v2: () -> ::String
|
1314
|
+
def aws_logical_device_id: () -> ::String
|
1315
|
+
def connections: () -> ::Array[Types::Connection]
|
1316
|
+
def allows_hosted_connections: () -> bool
|
1317
|
+
def jumbo_frame_capable: () -> bool
|
1318
|
+
def has_logical_redundancy: () -> ("unknown" | "yes" | "no")
|
1319
|
+
def tags: () -> ::Array[Types::Tag]
|
1320
|
+
def provider_name: () -> ::String
|
1321
|
+
def mac_sec_capable: () -> bool
|
1322
|
+
def encryption_mode: () -> ::String
|
1323
|
+
def mac_sec_keys: () -> ::Array[Types::MacSecKey]
|
1324
|
+
end
|
1325
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#update_lag-instance_method
|
1326
|
+
def update_lag: (
|
1327
|
+
lag_id: ::String,
|
1328
|
+
?lag_name: ::String,
|
1329
|
+
?minimum_links: ::Integer,
|
1330
|
+
?encryption_mode: ::String
|
1331
|
+
) -> _UpdateLagResponseSuccess
|
1332
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLagResponseSuccess
|
1333
|
+
|
1334
|
+
interface _UpdateVirtualInterfaceAttributesResponseSuccess
|
1335
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VirtualInterface]
|
1336
|
+
def owner_account: () -> ::String
|
1337
|
+
def virtual_interface_id: () -> ::String
|
1338
|
+
def location: () -> ::String
|
1339
|
+
def connection_id: () -> ::String
|
1340
|
+
def virtual_interface_type: () -> ::String
|
1341
|
+
def virtual_interface_name: () -> ::String
|
1342
|
+
def vlan: () -> ::Integer
|
1343
|
+
def asn: () -> ::Integer
|
1344
|
+
def amazon_side_asn: () -> ::Integer
|
1345
|
+
def auth_key: () -> ::String
|
1346
|
+
def amazon_address: () -> ::String
|
1347
|
+
def customer_address: () -> ::String
|
1348
|
+
def address_family: () -> ("ipv4" | "ipv6")
|
1349
|
+
def virtual_interface_state: () -> ("confirming" | "verifying" | "pending" | "available" | "down" | "deleting" | "deleted" | "rejected" | "unknown")
|
1350
|
+
def customer_router_config: () -> ::String
|
1351
|
+
def mtu: () -> ::Integer
|
1352
|
+
def jumbo_frame_capable: () -> bool
|
1353
|
+
def virtual_gateway_id: () -> ::String
|
1354
|
+
def direct_connect_gateway_id: () -> ::String
|
1355
|
+
def route_filter_prefixes: () -> ::Array[Types::RouteFilterPrefix]
|
1356
|
+
def bgp_peers: () -> ::Array[Types::BGPPeer]
|
1357
|
+
def region: () -> ::String
|
1358
|
+
def aws_device_v2: () -> ::String
|
1359
|
+
def aws_logical_device_id: () -> ::String
|
1360
|
+
def tags: () -> ::Array[Types::Tag]
|
1361
|
+
def site_link_enabled: () -> bool
|
1362
|
+
end
|
1363
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#update_virtual_interface_attributes-instance_method
|
1364
|
+
def update_virtual_interface_attributes: (
|
1365
|
+
virtual_interface_id: ::String,
|
1366
|
+
?mtu: ::Integer,
|
1367
|
+
?enable_site_link: bool,
|
1368
|
+
?virtual_interface_name: ::String
|
1369
|
+
) -> _UpdateVirtualInterfaceAttributesResponseSuccess
|
1370
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVirtualInterfaceAttributesResponseSuccess
|
1371
|
+
end
|
1372
|
+
end
|
1373
|
+
end
|
1374
|
+
|