aws-sdk-directconnect 1.45.0 → 1.49.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/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-directconnect/client.rb +198 -44
- data/lib/aws-sdk-directconnect/client_api.rb +100 -0
- data/lib/aws-sdk-directconnect/types.rb +255 -26
- data/lib/aws-sdk-directconnect.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd8ceb942a0188aa92ab99eb02410082b5407f3ebc1f98bab58f922d436bb786
|
|
4
|
+
data.tar.gz: c3cf22521a38936e21baff0447b5c3aa66b7eff34f1aecc2c1cff596be63b331
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 849024da9e0a14bbed40bcd6a0a712d653d5301a5dd6410823d62b3b1221b07f948b7163a4b335c74bed024877a9972da2febef1b00316ea186c5add6ff9a87e
|
|
7
|
+
data.tar.gz: '0520308063ff05b524cb4ad004cefb2172b8ca22d907f11b5246b4525e6eb1459e53c0fe1f85abd713cbb8e50ea033f3c17ca4b11e3b48fc05e84063b053af3c'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.49.0 (2021-11-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.48.0 (2021-10-20)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds 4 new APIS, which needs to be public able
|
|
13
|
+
|
|
14
|
+
1.47.0 (2021-10-18)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.46.0 (2021-09-01)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
23
|
+
|
|
4
24
|
1.45.0 (2021-07-30)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.49.0
|
|
@@ -285,6 +285,15 @@ module Aws::DirectConnect
|
|
|
285
285
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
286
286
|
# requests are made, and retries are disabled.
|
|
287
287
|
#
|
|
288
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
|
289
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
|
290
|
+
# will be used if available.
|
|
291
|
+
#
|
|
292
|
+
# @option options [Boolean] :use_fips_endpoint
|
|
293
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
|
294
|
+
# When a `fips` region is used, the region is normalized and this config
|
|
295
|
+
# is set to `true`.
|
|
296
|
+
#
|
|
288
297
|
# @option options [Boolean] :validate_params (true)
|
|
289
298
|
# When `true`, request parameters are validated before
|
|
290
299
|
# sending the request.
|
|
@@ -347,8 +356,8 @@ module Aws::DirectConnect
|
|
|
347
356
|
# The ID of the request proposal.
|
|
348
357
|
#
|
|
349
358
|
# @option params [required, String] :associated_gateway_owner_account
|
|
350
|
-
# The ID of the account that owns the virtual
|
|
351
|
-
# gateway.
|
|
359
|
+
# The ID of the Amazon Web Services account that owns the virtual
|
|
360
|
+
# private gateway or transit gateway.
|
|
352
361
|
#
|
|
353
362
|
# @option params [Array<Types::RouteFilterPrefix>] :override_allowed_prefixes_to_direct_connect_gateway
|
|
354
363
|
# Overrides the Amazon VPC prefixes advertised to the Direct Connect
|
|
@@ -426,8 +435,8 @@ module Aws::DirectConnect
|
|
|
426
435
|
# The name of the provisioned connection.
|
|
427
436
|
#
|
|
428
437
|
# @option params [required, String] :owner_account
|
|
429
|
-
# The ID of the account of the customer for whom the
|
|
430
|
-
# provisioned.
|
|
438
|
+
# The ID of the Amazon Web Services account of the customer for whom the
|
|
439
|
+
# connection will be provisioned.
|
|
431
440
|
#
|
|
432
441
|
# @option params [required, String] :interconnect_id
|
|
433
442
|
# The ID of the interconnect on which the connection will be
|
|
@@ -528,7 +537,8 @@ module Aws::DirectConnect
|
|
|
528
537
|
# The ID of the interconnect or LAG.
|
|
529
538
|
#
|
|
530
539
|
# @option params [required, String] :owner_account
|
|
531
|
-
# The ID of the account ID of the customer for the
|
|
540
|
+
# The ID of the Amazon Web Services account ID of the customer for the
|
|
541
|
+
# connection.
|
|
532
542
|
#
|
|
533
543
|
# @option params [required, String] :bandwidth
|
|
534
544
|
# The bandwidth of the connection. The possible values are 50Mbps,
|
|
@@ -628,7 +638,7 @@ module Aws::DirectConnect
|
|
|
628
638
|
end
|
|
629
639
|
|
|
630
640
|
# Provisions a private virtual interface to be owned by the specified
|
|
631
|
-
# account.
|
|
641
|
+
# Amazon Web Services account.
|
|
632
642
|
#
|
|
633
643
|
# Virtual interfaces created using this action must be confirmed by the
|
|
634
644
|
# owner using ConfirmPrivateVirtualInterface. Until then, the virtual
|
|
@@ -640,7 +650,8 @@ module Aws::DirectConnect
|
|
|
640
650
|
# provisioned.
|
|
641
651
|
#
|
|
642
652
|
# @option params [required, String] :owner_account
|
|
643
|
-
# The ID of the account that owns the virtual
|
|
653
|
+
# The ID of the Amazon Web Services account that owns the virtual
|
|
654
|
+
# private interface.
|
|
644
655
|
#
|
|
645
656
|
# @option params [required, Types::NewPrivateVirtualInterfaceAllocation] :new_private_virtual_interface_allocation
|
|
646
657
|
# Information about the private virtual interface.
|
|
@@ -747,10 +758,11 @@ module Aws::DirectConnect
|
|
|
747
758
|
end
|
|
748
759
|
|
|
749
760
|
# Provisions a public virtual interface to be owned by the specified
|
|
750
|
-
# account.
|
|
761
|
+
# Amazon Web Services account.
|
|
751
762
|
#
|
|
752
763
|
# The owner of a connection calls this function to provision a public
|
|
753
|
-
# virtual interface to be owned by the specified
|
|
764
|
+
# virtual interface to be owned by the specified Amazon Web Services
|
|
765
|
+
# account.
|
|
754
766
|
#
|
|
755
767
|
# Virtual interfaces created using this function must be confirmed by
|
|
756
768
|
# the owner using ConfirmPublicVirtualInterface. Until this step has
|
|
@@ -767,7 +779,8 @@ module Aws::DirectConnect
|
|
|
767
779
|
# provisioned.
|
|
768
780
|
#
|
|
769
781
|
# @option params [required, String] :owner_account
|
|
770
|
-
# The ID of the account that owns the public virtual
|
|
782
|
+
# The ID of the Amazon Web Services account that owns the public virtual
|
|
783
|
+
# interface.
|
|
771
784
|
#
|
|
772
785
|
# @option params [required, Types::NewPublicVirtualInterfaceAllocation] :new_public_virtual_interface_allocation
|
|
773
786
|
# Information about the public virtual interface.
|
|
@@ -878,11 +891,11 @@ module Aws::DirectConnect
|
|
|
878
891
|
end
|
|
879
892
|
|
|
880
893
|
# Provisions a transit virtual interface to be owned by the specified
|
|
881
|
-
# account. Use this type of interface to connect a
|
|
882
|
-
# your Direct Connect gateway.
|
|
894
|
+
# Amazon Web Services account. Use this type of interface to connect a
|
|
895
|
+
# transit gateway to your Direct Connect gateway.
|
|
883
896
|
#
|
|
884
897
|
# The owner of a connection provisions a transit virtual interface to be
|
|
885
|
-
# owned by the specified account.
|
|
898
|
+
# owned by the specified Amazon Web Services account.
|
|
886
899
|
#
|
|
887
900
|
# After you create a transit virtual interface, it must be confirmed by
|
|
888
901
|
# the owner using ConfirmTransitVirtualInterface. Until this step has
|
|
@@ -894,7 +907,8 @@ module Aws::DirectConnect
|
|
|
894
907
|
# provisioned.
|
|
895
908
|
#
|
|
896
909
|
# @option params [required, String] :owner_account
|
|
897
|
-
# The ID of the account that owns the transit
|
|
910
|
+
# The ID of the Amazon Web Services account that owns the transit
|
|
911
|
+
# virtual interface.
|
|
898
912
|
#
|
|
899
913
|
# @option params [required, Types::NewTransitVirtualInterfaceAllocation] :new_transit_virtual_interface_allocation
|
|
900
914
|
# Information about the transit virtual interface.
|
|
@@ -1390,8 +1404,37 @@ module Aws::DirectConnect
|
|
|
1390
1404
|
req.send_request(options)
|
|
1391
1405
|
end
|
|
1392
1406
|
|
|
1407
|
+
# The confirmation of the terms of agreement when creating the
|
|
1408
|
+
# connection/link aggregation group (LAG).
|
|
1409
|
+
#
|
|
1410
|
+
# @option params [String] :agreement_name
|
|
1411
|
+
# The name of the customer agreement.
|
|
1412
|
+
#
|
|
1413
|
+
# @return [Types::ConfirmCustomerAgreementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1414
|
+
#
|
|
1415
|
+
# * {Types::ConfirmCustomerAgreementResponse#status #status} => String
|
|
1416
|
+
#
|
|
1417
|
+
# @example Request syntax with placeholder values
|
|
1418
|
+
#
|
|
1419
|
+
# resp = client.confirm_customer_agreement({
|
|
1420
|
+
# agreement_name: "AgreementName",
|
|
1421
|
+
# })
|
|
1422
|
+
#
|
|
1423
|
+
# @example Response structure
|
|
1424
|
+
#
|
|
1425
|
+
# resp.status #=> String
|
|
1426
|
+
#
|
|
1427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ConfirmCustomerAgreement AWS API Documentation
|
|
1428
|
+
#
|
|
1429
|
+
# @overload confirm_customer_agreement(params = {})
|
|
1430
|
+
# @param [Hash] params ({})
|
|
1431
|
+
def confirm_customer_agreement(params = {}, options = {})
|
|
1432
|
+
req = build_request(:confirm_customer_agreement, params)
|
|
1433
|
+
req.send_request(options)
|
|
1434
|
+
end
|
|
1435
|
+
|
|
1393
1436
|
# Accepts ownership of a private virtual interface created by another
|
|
1394
|
-
# account.
|
|
1437
|
+
# Amazon Web Services account.
|
|
1395
1438
|
#
|
|
1396
1439
|
# After the virtual interface owner makes this call, the virtual
|
|
1397
1440
|
# interface is created and attached to the specified virtual private
|
|
@@ -1433,7 +1476,7 @@ module Aws::DirectConnect
|
|
|
1433
1476
|
end
|
|
1434
1477
|
|
|
1435
1478
|
# Accepts ownership of a public virtual interface created by another
|
|
1436
|
-
# account.
|
|
1479
|
+
# Amazon Web Services account.
|
|
1437
1480
|
#
|
|
1438
1481
|
# After the virtual interface owner makes this call, the specified
|
|
1439
1482
|
# virtual interface is created and made available to handle traffic.
|
|
@@ -1465,7 +1508,7 @@ module Aws::DirectConnect
|
|
|
1465
1508
|
end
|
|
1466
1509
|
|
|
1467
1510
|
# Accepts ownership of a transit virtual interface created by another
|
|
1468
|
-
# account.
|
|
1511
|
+
# Amazon Web Services account.
|
|
1469
1512
|
#
|
|
1470
1513
|
# After the owner of the transit virtual interface makes this call, the
|
|
1471
1514
|
# specified transit virtual interface is created and made available to
|
|
@@ -1722,12 +1765,13 @@ module Aws::DirectConnect
|
|
|
1722
1765
|
|
|
1723
1766
|
# Creates a Direct Connect gateway, which is an intermediate object that
|
|
1724
1767
|
# enables you to connect a set of virtual interfaces and virtual private
|
|
1725
|
-
# gateways. A Direct Connect gateway is global and visible in any
|
|
1726
|
-
# after it is created. The virtual interfaces and
|
|
1727
|
-
# gateways that are connected through a Direct Connect
|
|
1728
|
-
#
|
|
1729
|
-
#
|
|
1730
|
-
# and pass traffic between
|
|
1768
|
+
# gateways. A Direct Connect gateway is global and visible in any Amazon
|
|
1769
|
+
# Web Services Region after it is created. The virtual interfaces and
|
|
1770
|
+
# virtual private gateways that are connected through a Direct Connect
|
|
1771
|
+
# gateway can be in different Amazon Web Services Regions. This enables
|
|
1772
|
+
# you to connect to a VPC in any Region, regardless of the Region in
|
|
1773
|
+
# which the virtual interfaces are located, and pass traffic between
|
|
1774
|
+
# them.
|
|
1731
1775
|
#
|
|
1732
1776
|
# @option params [required, String] :direct_connect_gateway_name
|
|
1733
1777
|
# The name of the Direct Connect gateway.
|
|
@@ -1840,13 +1884,14 @@ module Aws::DirectConnect
|
|
|
1840
1884
|
# or transit gateway with the specified Direct Connect gateway.
|
|
1841
1885
|
#
|
|
1842
1886
|
# You can associate a Direct Connect gateway and virtual private gateway
|
|
1843
|
-
# or transit gateway that is owned by any account.
|
|
1887
|
+
# or transit gateway that is owned by any Amazon Web Services account.
|
|
1844
1888
|
#
|
|
1845
1889
|
# @option params [required, String] :direct_connect_gateway_id
|
|
1846
1890
|
# The ID of the Direct Connect gateway.
|
|
1847
1891
|
#
|
|
1848
1892
|
# @option params [required, String] :direct_connect_gateway_owner_account
|
|
1849
|
-
# The ID of the account that owns the Direct Connect
|
|
1893
|
+
# The ID of the Amazon Web Services account that owns the Direct Connect
|
|
1894
|
+
# gateway.
|
|
1850
1895
|
#
|
|
1851
1896
|
# @option params [required, String] :gateway_id
|
|
1852
1897
|
# The ID of the virtual private gateway or transit gateway.
|
|
@@ -2034,10 +2079,10 @@ module Aws::DirectConnect
|
|
|
2034
2079
|
# with the dedicated connection are automatically disassociated and
|
|
2035
2080
|
# re-associated with the LAG. The connection ID does not change.
|
|
2036
2081
|
#
|
|
2037
|
-
# If the account used to create a LAG is a
|
|
2038
|
-
# Partner, the LAG is automatically enabled to
|
|
2039
|
-
# a LAG owned by a partner, any associated
|
|
2040
|
-
# directly configured.
|
|
2082
|
+
# If the Amazon Web Services account used to create a LAG is a
|
|
2083
|
+
# registered Direct Connect Partner, the LAG is automatically enabled to
|
|
2084
|
+
# host sub-connections. For a LAG owned by a partner, any associated
|
|
2085
|
+
# virtual interfaces cannot be directly configured.
|
|
2041
2086
|
#
|
|
2042
2087
|
# @option params [required, Integer] :number_of_connections
|
|
2043
2088
|
# The number of physical dedicated connections initially provisioned and
|
|
@@ -2198,9 +2243,9 @@ module Aws::DirectConnect
|
|
|
2198
2243
|
# can be connected to either a Direct Connect gateway or a Virtual
|
|
2199
2244
|
# Private Gateway (VGW). Connecting the private virtual interface to a
|
|
2200
2245
|
# Direct Connect gateway enables the possibility for connecting to
|
|
2201
|
-
# multiple VPCs, including VPCs in different
|
|
2202
|
-
# private virtual interface to a VGW only
|
|
2203
|
-
# VPC within the same Region.
|
|
2246
|
+
# multiple VPCs, including VPCs in different Amazon Web Services
|
|
2247
|
+
# Regions. Connecting the private virtual interface to a VGW only
|
|
2248
|
+
# provides access to a single VPC within the same Region.
|
|
2204
2249
|
#
|
|
2205
2250
|
# Setting the MTU of a virtual interface to 9001 (jumbo frames) can
|
|
2206
2251
|
# cause an update to the underlying physical connection if it wasn't
|
|
@@ -3171,6 +3216,31 @@ module Aws::DirectConnect
|
|
|
3171
3216
|
req.send_request(options)
|
|
3172
3217
|
end
|
|
3173
3218
|
|
|
3219
|
+
# Get and view a list of customer agreements, along with their signed
|
|
3220
|
+
# status and whether the customer is an NNIPartner, NNIPartnerV2, or a
|
|
3221
|
+
# nonPartner.
|
|
3222
|
+
#
|
|
3223
|
+
# @return [Types::DescribeCustomerMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3224
|
+
#
|
|
3225
|
+
# * {Types::DescribeCustomerMetadataResponse#agreements #agreements} => Array<Types::CustomerAgreement>
|
|
3226
|
+
# * {Types::DescribeCustomerMetadataResponse#nni_partner_type #nni_partner_type} => String
|
|
3227
|
+
#
|
|
3228
|
+
# @example Response structure
|
|
3229
|
+
#
|
|
3230
|
+
# resp.agreements #=> Array
|
|
3231
|
+
# resp.agreements[0].agreement_name #=> String
|
|
3232
|
+
# resp.agreements[0].status #=> String
|
|
3233
|
+
# resp.nni_partner_type #=> String, one of "v1", "v2", "nonPartner"
|
|
3234
|
+
#
|
|
3235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeCustomerMetadata AWS API Documentation
|
|
3236
|
+
#
|
|
3237
|
+
# @overload describe_customer_metadata(params = {})
|
|
3238
|
+
# @param [Hash] params ({})
|
|
3239
|
+
def describe_customer_metadata(params = {}, options = {})
|
|
3240
|
+
req = build_request(:describe_customer_metadata, params)
|
|
3241
|
+
req.send_request(options)
|
|
3242
|
+
end
|
|
3243
|
+
|
|
3174
3244
|
# Describes one or more association proposals for connection between a
|
|
3175
3245
|
# virtual private gateway or transit gateway and a Direct Connect
|
|
3176
3246
|
# gateway.
|
|
@@ -3555,8 +3625,8 @@ module Aws::DirectConnect
|
|
|
3555
3625
|
req.send_request(options)
|
|
3556
3626
|
end
|
|
3557
3627
|
|
|
3558
|
-
# Lists the interconnects owned by the
|
|
3559
|
-
# interconnect.
|
|
3628
|
+
# Lists the interconnects owned by the Amazon Web Services account or
|
|
3629
|
+
# only the specified interconnect.
|
|
3560
3630
|
#
|
|
3561
3631
|
# @option params [String] :interconnect_id
|
|
3562
3632
|
# The ID of the interconnect.
|
|
@@ -3737,9 +3807,9 @@ module Aws::DirectConnect
|
|
|
3737
3807
|
req.send_request(options)
|
|
3738
3808
|
end
|
|
3739
3809
|
|
|
3740
|
-
# Lists the Direct Connect locations in the current
|
|
3741
|
-
# the locations that can be selected when calling
|
|
3742
|
-
# CreateInterconnect.
|
|
3810
|
+
# Lists the Direct Connect locations in the current Amazon Web Services
|
|
3811
|
+
# Region. These are the locations that can be selected when calling
|
|
3812
|
+
# CreateConnection or CreateInterconnect.
|
|
3743
3813
|
#
|
|
3744
3814
|
# @return [Types::Locations] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3745
3815
|
#
|
|
@@ -3767,6 +3837,51 @@ module Aws::DirectConnect
|
|
|
3767
3837
|
req.send_request(options)
|
|
3768
3838
|
end
|
|
3769
3839
|
|
|
3840
|
+
# Details about the router.
|
|
3841
|
+
#
|
|
3842
|
+
# @option params [required, String] :virtual_interface_id
|
|
3843
|
+
# The ID of the virtual interface.
|
|
3844
|
+
#
|
|
3845
|
+
# @option params [String] :router_type_identifier
|
|
3846
|
+
# Identifies the router by a combination of vendor, platform, and
|
|
3847
|
+
# software version. For example,
|
|
3848
|
+
# `CiscoSystemsInc-2900SeriesRouters-IOS124`.
|
|
3849
|
+
#
|
|
3850
|
+
# @return [Types::DescribeRouterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3851
|
+
#
|
|
3852
|
+
# * {Types::DescribeRouterConfigurationResponse#customer_router_config #customer_router_config} => String
|
|
3853
|
+
# * {Types::DescribeRouterConfigurationResponse#router #router} => Types::RouterType
|
|
3854
|
+
# * {Types::DescribeRouterConfigurationResponse#virtual_interface_id #virtual_interface_id} => String
|
|
3855
|
+
# * {Types::DescribeRouterConfigurationResponse#virtual_interface_name #virtual_interface_name} => String
|
|
3856
|
+
#
|
|
3857
|
+
# @example Request syntax with placeholder values
|
|
3858
|
+
#
|
|
3859
|
+
# resp = client.describe_router_configuration({
|
|
3860
|
+
# virtual_interface_id: "VirtualInterfaceId", # required
|
|
3861
|
+
# router_type_identifier: "RouterTypeIdentifier",
|
|
3862
|
+
# })
|
|
3863
|
+
#
|
|
3864
|
+
# @example Response structure
|
|
3865
|
+
#
|
|
3866
|
+
# resp.customer_router_config #=> String
|
|
3867
|
+
# resp.router.vendor #=> String
|
|
3868
|
+
# resp.router.platform #=> String
|
|
3869
|
+
# resp.router.software #=> String
|
|
3870
|
+
# resp.router.xslt_template_name #=> String
|
|
3871
|
+
# resp.router.xslt_template_name_for_mac_sec #=> String
|
|
3872
|
+
# resp.router.router_type_identifier #=> String
|
|
3873
|
+
# resp.virtual_interface_id #=> String
|
|
3874
|
+
# resp.virtual_interface_name #=> String
|
|
3875
|
+
#
|
|
3876
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeRouterConfiguration AWS API Documentation
|
|
3877
|
+
#
|
|
3878
|
+
# @overload describe_router_configuration(params = {})
|
|
3879
|
+
# @param [Hash] params ({})
|
|
3880
|
+
def describe_router_configuration(params = {}, options = {})
|
|
3881
|
+
req = build_request(:describe_router_configuration, params)
|
|
3882
|
+
req.send_request(options)
|
|
3883
|
+
end
|
|
3884
|
+
|
|
3770
3885
|
# Describes the tags associated with the specified Direct Connect
|
|
3771
3886
|
# resources.
|
|
3772
3887
|
#
|
|
@@ -3800,7 +3915,8 @@ module Aws::DirectConnect
|
|
|
3800
3915
|
req.send_request(options)
|
|
3801
3916
|
end
|
|
3802
3917
|
|
|
3803
|
-
# Lists the virtual private gateways owned by the
|
|
3918
|
+
# Lists the virtual private gateways owned by the Amazon Web Services
|
|
3919
|
+
# account.
|
|
3804
3920
|
#
|
|
3805
3921
|
# You can create one or more Direct Connect private virtual interfaces
|
|
3806
3922
|
# linked to a virtual private gateway.
|
|
@@ -3824,11 +3940,12 @@ module Aws::DirectConnect
|
|
|
3824
3940
|
req.send_request(options)
|
|
3825
3941
|
end
|
|
3826
3942
|
|
|
3827
|
-
# Displays all virtual interfaces for an account.
|
|
3828
|
-
# deleted fewer than 15 minutes before you make the
|
|
3829
|
-
# returned. If you specify a connection ID, only the
|
|
3830
|
-
# associated with the connection are returned. If you
|
|
3831
|
-
# interface ID, then only a single virtual interface
|
|
3943
|
+
# Displays all virtual interfaces for an Amazon Web Services account.
|
|
3944
|
+
# Virtual interfaces deleted fewer than 15 minutes before you make the
|
|
3945
|
+
# request are also returned. If you specify a connection ID, only the
|
|
3946
|
+
# virtual interfaces associated with the connection are returned. If you
|
|
3947
|
+
# specify a virtual interface ID, then only a single virtual interface
|
|
3948
|
+
# is returned.
|
|
3832
3949
|
#
|
|
3833
3950
|
# A virtual interface (VLAN) transmits the traffic between the Direct
|
|
3834
3951
|
# Connect location and the customer network.
|
|
@@ -4364,6 +4481,43 @@ module Aws::DirectConnect
|
|
|
4364
4481
|
req.send_request(options)
|
|
4365
4482
|
end
|
|
4366
4483
|
|
|
4484
|
+
# Updates the name of a current Direct Connect gateway.
|
|
4485
|
+
#
|
|
4486
|
+
# @option params [required, String] :direct_connect_gateway_id
|
|
4487
|
+
# The ID of the Direct Connect gateway to update.
|
|
4488
|
+
#
|
|
4489
|
+
# @option params [required, String] :new_direct_connect_gateway_name
|
|
4490
|
+
# The new name for the Direct Connect gateway.
|
|
4491
|
+
#
|
|
4492
|
+
# @return [Types::UpdateDirectConnectGatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4493
|
+
#
|
|
4494
|
+
# * {Types::UpdateDirectConnectGatewayResponse#direct_connect_gateway #direct_connect_gateway} => Types::DirectConnectGateway
|
|
4495
|
+
#
|
|
4496
|
+
# @example Request syntax with placeholder values
|
|
4497
|
+
#
|
|
4498
|
+
# resp = client.update_direct_connect_gateway({
|
|
4499
|
+
# direct_connect_gateway_id: "DirectConnectGatewayId", # required
|
|
4500
|
+
# new_direct_connect_gateway_name: "DirectConnectGatewayName", # required
|
|
4501
|
+
# })
|
|
4502
|
+
#
|
|
4503
|
+
# @example Response structure
|
|
4504
|
+
#
|
|
4505
|
+
# resp.direct_connect_gateway.direct_connect_gateway_id #=> String
|
|
4506
|
+
# resp.direct_connect_gateway.direct_connect_gateway_name #=> String
|
|
4507
|
+
# resp.direct_connect_gateway.amazon_side_asn #=> Integer
|
|
4508
|
+
# resp.direct_connect_gateway.owner_account #=> String
|
|
4509
|
+
# resp.direct_connect_gateway.direct_connect_gateway_state #=> String, one of "pending", "available", "deleting", "deleted"
|
|
4510
|
+
# resp.direct_connect_gateway.state_change_error #=> String
|
|
4511
|
+
#
|
|
4512
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateDirectConnectGateway AWS API Documentation
|
|
4513
|
+
#
|
|
4514
|
+
# @overload update_direct_connect_gateway(params = {})
|
|
4515
|
+
# @param [Hash] params ({})
|
|
4516
|
+
def update_direct_connect_gateway(params = {}, options = {})
|
|
4517
|
+
req = build_request(:update_direct_connect_gateway, params)
|
|
4518
|
+
req.send_request(options)
|
|
4519
|
+
end
|
|
4520
|
+
|
|
4367
4521
|
# Updates the specified attributes of the Direct Connect gateway
|
|
4368
4522
|
# association.
|
|
4369
4523
|
#
|
|
@@ -4680,7 +4834,7 @@ module Aws::DirectConnect
|
|
|
4680
4834
|
params: params,
|
|
4681
4835
|
config: config)
|
|
4682
4836
|
context[:gem_name] = 'aws-sdk-directconnect'
|
|
4683
|
-
context[:gem_version] = '1.
|
|
4837
|
+
context[:gem_version] = '1.49.0'
|
|
4684
4838
|
Seahorse::Client::Request.new(handlers, context)
|
|
4685
4839
|
end
|
|
4686
4840
|
|
|
@@ -17,6 +17,8 @@ module Aws::DirectConnect
|
|
|
17
17
|
AcceptDirectConnectGatewayAssociationProposalRequest = Shapes::StructureShape.new(name: 'AcceptDirectConnectGatewayAssociationProposalRequest')
|
|
18
18
|
AcceptDirectConnectGatewayAssociationProposalResult = Shapes::StructureShape.new(name: 'AcceptDirectConnectGatewayAssociationProposalResult')
|
|
19
19
|
AddressFamily = Shapes::StringShape.new(name: 'AddressFamily')
|
|
20
|
+
AgreementList = Shapes::ListShape.new(name: 'AgreementList')
|
|
21
|
+
AgreementName = Shapes::StringShape.new(name: 'AgreementName')
|
|
20
22
|
AllocateConnectionOnInterconnectRequest = Shapes::StructureShape.new(name: 'AllocateConnectionOnInterconnectRequest')
|
|
21
23
|
AllocateHostedConnectionRequest = Shapes::StructureShape.new(name: 'AllocateHostedConnectionRequest')
|
|
22
24
|
AllocatePrivateVirtualInterfaceRequest = Shapes::StructureShape.new(name: 'AllocatePrivateVirtualInterfaceRequest')
|
|
@@ -50,6 +52,8 @@ module Aws::DirectConnect
|
|
|
50
52
|
Ckn = Shapes::StringShape.new(name: 'Ckn')
|
|
51
53
|
ConfirmConnectionRequest = Shapes::StructureShape.new(name: 'ConfirmConnectionRequest')
|
|
52
54
|
ConfirmConnectionResponse = Shapes::StructureShape.new(name: 'ConfirmConnectionResponse')
|
|
55
|
+
ConfirmCustomerAgreementRequest = Shapes::StructureShape.new(name: 'ConfirmCustomerAgreementRequest')
|
|
56
|
+
ConfirmCustomerAgreementResponse = Shapes::StructureShape.new(name: 'ConfirmCustomerAgreementResponse')
|
|
53
57
|
ConfirmPrivateVirtualInterfaceRequest = Shapes::StructureShape.new(name: 'ConfirmPrivateVirtualInterfaceRequest')
|
|
54
58
|
ConfirmPrivateVirtualInterfaceResponse = Shapes::StructureShape.new(name: 'ConfirmPrivateVirtualInterfaceResponse')
|
|
55
59
|
ConfirmPublicVirtualInterfaceRequest = Shapes::StructureShape.new(name: 'ConfirmPublicVirtualInterfaceRequest')
|
|
@@ -79,6 +83,7 @@ module Aws::DirectConnect
|
|
|
79
83
|
CreateTransitVirtualInterfaceRequest = Shapes::StructureShape.new(name: 'CreateTransitVirtualInterfaceRequest')
|
|
80
84
|
CreateTransitVirtualInterfaceResult = Shapes::StructureShape.new(name: 'CreateTransitVirtualInterfaceResult')
|
|
81
85
|
CustomerAddress = Shapes::StringShape.new(name: 'CustomerAddress')
|
|
86
|
+
CustomerAgreement = Shapes::StructureShape.new(name: 'CustomerAgreement')
|
|
82
87
|
DeleteBGPPeerRequest = Shapes::StructureShape.new(name: 'DeleteBGPPeerRequest')
|
|
83
88
|
DeleteBGPPeerResponse = Shapes::StructureShape.new(name: 'DeleteBGPPeerResponse')
|
|
84
89
|
DeleteConnectionRequest = Shapes::StructureShape.new(name: 'DeleteConnectionRequest')
|
|
@@ -97,6 +102,7 @@ module Aws::DirectConnect
|
|
|
97
102
|
DescribeConnectionLoaResponse = Shapes::StructureShape.new(name: 'DescribeConnectionLoaResponse')
|
|
98
103
|
DescribeConnectionsOnInterconnectRequest = Shapes::StructureShape.new(name: 'DescribeConnectionsOnInterconnectRequest')
|
|
99
104
|
DescribeConnectionsRequest = Shapes::StructureShape.new(name: 'DescribeConnectionsRequest')
|
|
105
|
+
DescribeCustomerMetadataResponse = Shapes::StructureShape.new(name: 'DescribeCustomerMetadataResponse')
|
|
100
106
|
DescribeDirectConnectGatewayAssociationProposalsRequest = Shapes::StructureShape.new(name: 'DescribeDirectConnectGatewayAssociationProposalsRequest')
|
|
101
107
|
DescribeDirectConnectGatewayAssociationProposalsResult = Shapes::StructureShape.new(name: 'DescribeDirectConnectGatewayAssociationProposalsResult')
|
|
102
108
|
DescribeDirectConnectGatewayAssociationsRequest = Shapes::StructureShape.new(name: 'DescribeDirectConnectGatewayAssociationsRequest')
|
|
@@ -111,6 +117,8 @@ module Aws::DirectConnect
|
|
|
111
117
|
DescribeInterconnectsRequest = Shapes::StructureShape.new(name: 'DescribeInterconnectsRequest')
|
|
112
118
|
DescribeLagsRequest = Shapes::StructureShape.new(name: 'DescribeLagsRequest')
|
|
113
119
|
DescribeLoaRequest = Shapes::StructureShape.new(name: 'DescribeLoaRequest')
|
|
120
|
+
DescribeRouterConfigurationRequest = Shapes::StructureShape.new(name: 'DescribeRouterConfigurationRequest')
|
|
121
|
+
DescribeRouterConfigurationResponse = Shapes::StructureShape.new(name: 'DescribeRouterConfigurationResponse')
|
|
114
122
|
DescribeTagsRequest = Shapes::StructureShape.new(name: 'DescribeTagsRequest')
|
|
115
123
|
DescribeTagsResponse = Shapes::StructureShape.new(name: 'DescribeTagsResponse')
|
|
116
124
|
DescribeVirtualInterfacesRequest = Shapes::StructureShape.new(name: 'DescribeVirtualInterfacesRequest')
|
|
@@ -182,9 +190,11 @@ module Aws::DirectConnect
|
|
|
182
190
|
NewPublicVirtualInterfaceAllocation = Shapes::StructureShape.new(name: 'NewPublicVirtualInterfaceAllocation')
|
|
183
191
|
NewTransitVirtualInterface = Shapes::StructureShape.new(name: 'NewTransitVirtualInterface')
|
|
184
192
|
NewTransitVirtualInterfaceAllocation = Shapes::StructureShape.new(name: 'NewTransitVirtualInterfaceAllocation')
|
|
193
|
+
NniPartnerType = Shapes::StringShape.new(name: 'NniPartnerType')
|
|
185
194
|
OwnerAccount = Shapes::StringShape.new(name: 'OwnerAccount')
|
|
186
195
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
|
187
196
|
PartnerName = Shapes::StringShape.new(name: 'PartnerName')
|
|
197
|
+
Platform = Shapes::StringShape.new(name: 'Platform')
|
|
188
198
|
PortEncryptionStatus = Shapes::StringShape.new(name: 'PortEncryptionStatus')
|
|
189
199
|
PortSpeed = Shapes::StringShape.new(name: 'PortSpeed')
|
|
190
200
|
ProviderList = Shapes::ListShape.new(name: 'ProviderList')
|
|
@@ -198,13 +208,17 @@ module Aws::DirectConnect
|
|
|
198
208
|
RouteFilterPrefix = Shapes::StructureShape.new(name: 'RouteFilterPrefix')
|
|
199
209
|
RouteFilterPrefixList = Shapes::ListShape.new(name: 'RouteFilterPrefixList')
|
|
200
210
|
RouterConfig = Shapes::StringShape.new(name: 'RouterConfig')
|
|
211
|
+
RouterType = Shapes::StructureShape.new(name: 'RouterType')
|
|
212
|
+
RouterTypeIdentifier = Shapes::StringShape.new(name: 'RouterTypeIdentifier')
|
|
201
213
|
SecretARN = Shapes::StringShape.new(name: 'SecretARN')
|
|
214
|
+
Software = Shapes::StringShape.new(name: 'Software')
|
|
202
215
|
StartBgpFailoverTestRequest = Shapes::StructureShape.new(name: 'StartBgpFailoverTestRequest')
|
|
203
216
|
StartBgpFailoverTestResponse = Shapes::StructureShape.new(name: 'StartBgpFailoverTestResponse')
|
|
204
217
|
StartOnDate = Shapes::StringShape.new(name: 'StartOnDate')
|
|
205
218
|
StartTime = Shapes::TimestampShape.new(name: 'StartTime')
|
|
206
219
|
State = Shapes::StringShape.new(name: 'State')
|
|
207
220
|
StateChangeError = Shapes::StringShape.new(name: 'StateChangeError')
|
|
221
|
+
Status = Shapes::StringShape.new(name: 'Status')
|
|
208
222
|
StopBgpFailoverTestRequest = Shapes::StructureShape.new(name: 'StopBgpFailoverTestRequest')
|
|
209
223
|
StopBgpFailoverTestResponse = Shapes::StructureShape.new(name: 'StopBgpFailoverTestResponse')
|
|
210
224
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
|
@@ -222,9 +236,12 @@ module Aws::DirectConnect
|
|
|
222
236
|
UpdateConnectionRequest = Shapes::StructureShape.new(name: 'UpdateConnectionRequest')
|
|
223
237
|
UpdateDirectConnectGatewayAssociationRequest = Shapes::StructureShape.new(name: 'UpdateDirectConnectGatewayAssociationRequest')
|
|
224
238
|
UpdateDirectConnectGatewayAssociationResult = Shapes::StructureShape.new(name: 'UpdateDirectConnectGatewayAssociationResult')
|
|
239
|
+
UpdateDirectConnectGatewayRequest = Shapes::StructureShape.new(name: 'UpdateDirectConnectGatewayRequest')
|
|
240
|
+
UpdateDirectConnectGatewayResponse = Shapes::StructureShape.new(name: 'UpdateDirectConnectGatewayResponse')
|
|
225
241
|
UpdateLagRequest = Shapes::StructureShape.new(name: 'UpdateLagRequest')
|
|
226
242
|
UpdateVirtualInterfaceAttributesRequest = Shapes::StructureShape.new(name: 'UpdateVirtualInterfaceAttributesRequest')
|
|
227
243
|
VLAN = Shapes::IntegerShape.new(name: 'VLAN')
|
|
244
|
+
Vendor = Shapes::StringShape.new(name: 'Vendor')
|
|
228
245
|
VirtualGateway = Shapes::StructureShape.new(name: 'VirtualGateway')
|
|
229
246
|
VirtualGatewayId = Shapes::StringShape.new(name: 'VirtualGatewayId')
|
|
230
247
|
VirtualGatewayList = Shapes::ListShape.new(name: 'VirtualGatewayList')
|
|
@@ -241,6 +258,8 @@ module Aws::DirectConnect
|
|
|
241
258
|
VirtualInterfaceTestHistoryList = Shapes::ListShape.new(name: 'VirtualInterfaceTestHistoryList')
|
|
242
259
|
VirtualInterfaceType = Shapes::StringShape.new(name: 'VirtualInterfaceType')
|
|
243
260
|
VirtualInterfaces = Shapes::StructureShape.new(name: 'VirtualInterfaces')
|
|
261
|
+
XsltTemplateName = Shapes::StringShape.new(name: 'XsltTemplateName')
|
|
262
|
+
XsltTemplateNameForMacSec = Shapes::StringShape.new(name: 'XsltTemplateNameForMacSec')
|
|
244
263
|
|
|
245
264
|
AcceptDirectConnectGatewayAssociationProposalRequest.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, required: true, location_name: "directConnectGatewayId"))
|
|
246
265
|
AcceptDirectConnectGatewayAssociationProposalRequest.add_member(:proposal_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationProposalId, required: true, location_name: "proposalId"))
|
|
@@ -251,6 +270,8 @@ module Aws::DirectConnect
|
|
|
251
270
|
AcceptDirectConnectGatewayAssociationProposalResult.add_member(:direct_connect_gateway_association, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociation, location_name: "directConnectGatewayAssociation"))
|
|
252
271
|
AcceptDirectConnectGatewayAssociationProposalResult.struct_class = Types::AcceptDirectConnectGatewayAssociationProposalResult
|
|
253
272
|
|
|
273
|
+
AgreementList.member = Shapes::ShapeRef.new(shape: CustomerAgreement)
|
|
274
|
+
|
|
254
275
|
AllocateConnectionOnInterconnectRequest.add_member(:bandwidth, Shapes::ShapeRef.new(shape: Bandwidth, required: true, location_name: "bandwidth"))
|
|
255
276
|
AllocateConnectionOnInterconnectRequest.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, required: true, location_name: "connectionName"))
|
|
256
277
|
AllocateConnectionOnInterconnectRequest.add_member(:owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, required: true, location_name: "ownerAccount"))
|
|
@@ -338,6 +359,12 @@ module Aws::DirectConnect
|
|
|
338
359
|
ConfirmConnectionResponse.add_member(:connection_state, Shapes::ShapeRef.new(shape: ConnectionState, location_name: "connectionState"))
|
|
339
360
|
ConfirmConnectionResponse.struct_class = Types::ConfirmConnectionResponse
|
|
340
361
|
|
|
362
|
+
ConfirmCustomerAgreementRequest.add_member(:agreement_name, Shapes::ShapeRef.new(shape: AgreementName, location_name: "agreementName"))
|
|
363
|
+
ConfirmCustomerAgreementRequest.struct_class = Types::ConfirmCustomerAgreementRequest
|
|
364
|
+
|
|
365
|
+
ConfirmCustomerAgreementResponse.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
|
366
|
+
ConfirmCustomerAgreementResponse.struct_class = Types::ConfirmCustomerAgreementResponse
|
|
367
|
+
|
|
341
368
|
ConfirmPrivateVirtualInterfaceRequest.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, required: true, location_name: "virtualInterfaceId"))
|
|
342
369
|
ConfirmPrivateVirtualInterfaceRequest.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, location_name: "virtualGatewayId"))
|
|
343
370
|
ConfirmPrivateVirtualInterfaceRequest.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
|
|
@@ -464,6 +491,10 @@ module Aws::DirectConnect
|
|
|
464
491
|
CreateTransitVirtualInterfaceResult.add_member(:virtual_interface, Shapes::ShapeRef.new(shape: VirtualInterface, location_name: "virtualInterface"))
|
|
465
492
|
CreateTransitVirtualInterfaceResult.struct_class = Types::CreateTransitVirtualInterfaceResult
|
|
466
493
|
|
|
494
|
+
CustomerAgreement.add_member(:agreement_name, Shapes::ShapeRef.new(shape: AgreementName, location_name: "agreementName"))
|
|
495
|
+
CustomerAgreement.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
|
496
|
+
CustomerAgreement.struct_class = Types::CustomerAgreement
|
|
497
|
+
|
|
467
498
|
DeleteBGPPeerRequest.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, location_name: "virtualInterfaceId"))
|
|
468
499
|
DeleteBGPPeerRequest.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
|
|
469
500
|
DeleteBGPPeerRequest.add_member(:customer_address, Shapes::ShapeRef.new(shape: CustomerAddress, location_name: "customerAddress"))
|
|
@@ -525,6 +556,10 @@ module Aws::DirectConnect
|
|
|
525
556
|
DescribeConnectionsRequest.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, location_name: "connectionId"))
|
|
526
557
|
DescribeConnectionsRequest.struct_class = Types::DescribeConnectionsRequest
|
|
527
558
|
|
|
559
|
+
DescribeCustomerMetadataResponse.add_member(:agreements, Shapes::ShapeRef.new(shape: AgreementList, location_name: "agreements"))
|
|
560
|
+
DescribeCustomerMetadataResponse.add_member(:nni_partner_type, Shapes::ShapeRef.new(shape: NniPartnerType, location_name: "nniPartnerType"))
|
|
561
|
+
DescribeCustomerMetadataResponse.struct_class = Types::DescribeCustomerMetadataResponse
|
|
562
|
+
|
|
528
563
|
DescribeDirectConnectGatewayAssociationProposalsRequest.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, location_name: "directConnectGatewayId"))
|
|
529
564
|
DescribeDirectConnectGatewayAssociationProposalsRequest.add_member(:proposal_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationProposalId, location_name: "proposalId"))
|
|
530
565
|
DescribeDirectConnectGatewayAssociationProposalsRequest.add_member(:associated_gateway_id, Shapes::ShapeRef.new(shape: AssociatedGatewayId, location_name: "associatedGatewayId"))
|
|
@@ -589,6 +624,16 @@ module Aws::DirectConnect
|
|
|
589
624
|
DescribeLoaRequest.add_member(:loa_content_type, Shapes::ShapeRef.new(shape: LoaContentType, location_name: "loaContentType"))
|
|
590
625
|
DescribeLoaRequest.struct_class = Types::DescribeLoaRequest
|
|
591
626
|
|
|
627
|
+
DescribeRouterConfigurationRequest.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, required: true, location_name: "virtualInterfaceId"))
|
|
628
|
+
DescribeRouterConfigurationRequest.add_member(:router_type_identifier, Shapes::ShapeRef.new(shape: RouterTypeIdentifier, location_name: "routerTypeIdentifier"))
|
|
629
|
+
DescribeRouterConfigurationRequest.struct_class = Types::DescribeRouterConfigurationRequest
|
|
630
|
+
|
|
631
|
+
DescribeRouterConfigurationResponse.add_member(:customer_router_config, Shapes::ShapeRef.new(shape: RouterConfig, location_name: "customerRouterConfig"))
|
|
632
|
+
DescribeRouterConfigurationResponse.add_member(:router, Shapes::ShapeRef.new(shape: RouterType, location_name: "router"))
|
|
633
|
+
DescribeRouterConfigurationResponse.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, location_name: "virtualInterfaceId"))
|
|
634
|
+
DescribeRouterConfigurationResponse.add_member(:virtual_interface_name, Shapes::ShapeRef.new(shape: VirtualInterfaceName, location_name: "virtualInterfaceName"))
|
|
635
|
+
DescribeRouterConfigurationResponse.struct_class = Types::DescribeRouterConfigurationResponse
|
|
636
|
+
|
|
592
637
|
DescribeTagsRequest.add_member(:resource_arns, Shapes::ShapeRef.new(shape: ResourceArnList, required: true, location_name: "resourceArns"))
|
|
593
638
|
DescribeTagsRequest.struct_class = Types::DescribeTagsRequest
|
|
594
639
|
|
|
@@ -843,6 +888,14 @@ module Aws::DirectConnect
|
|
|
843
888
|
|
|
844
889
|
RouteFilterPrefixList.member = Shapes::ShapeRef.new(shape: RouteFilterPrefix)
|
|
845
890
|
|
|
891
|
+
RouterType.add_member(:vendor, Shapes::ShapeRef.new(shape: Vendor, location_name: "vendor"))
|
|
892
|
+
RouterType.add_member(:platform, Shapes::ShapeRef.new(shape: Platform, location_name: "platform"))
|
|
893
|
+
RouterType.add_member(:software, Shapes::ShapeRef.new(shape: Software, location_name: "software"))
|
|
894
|
+
RouterType.add_member(:xslt_template_name, Shapes::ShapeRef.new(shape: XsltTemplateName, location_name: "xsltTemplateName"))
|
|
895
|
+
RouterType.add_member(:xslt_template_name_for_mac_sec, Shapes::ShapeRef.new(shape: XsltTemplateNameForMacSec, location_name: "xsltTemplateNameForMacSec"))
|
|
896
|
+
RouterType.add_member(:router_type_identifier, Shapes::ShapeRef.new(shape: RouterTypeIdentifier, location_name: "routerTypeIdentifier"))
|
|
897
|
+
RouterType.struct_class = Types::RouterType
|
|
898
|
+
|
|
846
899
|
StartBgpFailoverTestRequest.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, required: true, location_name: "virtualInterfaceId"))
|
|
847
900
|
StartBgpFailoverTestRequest.add_member(:bgp_peers, Shapes::ShapeRef.new(shape: BGPPeerIdList, location_name: "bgpPeers"))
|
|
848
901
|
StartBgpFailoverTestRequest.add_member(:test_duration_in_minutes, Shapes::ShapeRef.new(shape: TestDuration, location_name: "testDurationInMinutes"))
|
|
@@ -892,6 +945,13 @@ module Aws::DirectConnect
|
|
|
892
945
|
UpdateDirectConnectGatewayAssociationResult.add_member(:direct_connect_gateway_association, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociation, location_name: "directConnectGatewayAssociation"))
|
|
893
946
|
UpdateDirectConnectGatewayAssociationResult.struct_class = Types::UpdateDirectConnectGatewayAssociationResult
|
|
894
947
|
|
|
948
|
+
UpdateDirectConnectGatewayRequest.add_member(:direct_connect_gateway_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayId, required: true, location_name: "directConnectGatewayId"))
|
|
949
|
+
UpdateDirectConnectGatewayRequest.add_member(:new_direct_connect_gateway_name, Shapes::ShapeRef.new(shape: DirectConnectGatewayName, required: true, location_name: "newDirectConnectGatewayName"))
|
|
950
|
+
UpdateDirectConnectGatewayRequest.struct_class = Types::UpdateDirectConnectGatewayRequest
|
|
951
|
+
|
|
952
|
+
UpdateDirectConnectGatewayResponse.add_member(:direct_connect_gateway, Shapes::ShapeRef.new(shape: DirectConnectGateway, location_name: "directConnectGateway"))
|
|
953
|
+
UpdateDirectConnectGatewayResponse.struct_class = Types::UpdateDirectConnectGatewayResponse
|
|
954
|
+
|
|
895
955
|
UpdateLagRequest.add_member(:lag_id, Shapes::ShapeRef.new(shape: LagId, required: true, location_name: "lagId"))
|
|
896
956
|
UpdateLagRequest.add_member(:lag_name, Shapes::ShapeRef.new(shape: LagName, location_name: "lagName"))
|
|
897
957
|
UpdateLagRequest.add_member(:minimum_links, Shapes::ShapeRef.new(shape: Count, location_name: "minimumLinks"))
|
|
@@ -1092,6 +1152,16 @@ module Aws::DirectConnect
|
|
|
1092
1152
|
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
|
1093
1153
|
end)
|
|
1094
1154
|
|
|
1155
|
+
api.add_operation(:confirm_customer_agreement, Seahorse::Model::Operation.new.tap do |o|
|
|
1156
|
+
o.name = "ConfirmCustomerAgreement"
|
|
1157
|
+
o.http_method = "POST"
|
|
1158
|
+
o.http_request_uri = "/"
|
|
1159
|
+
o.input = Shapes::ShapeRef.new(shape: ConfirmCustomerAgreementRequest)
|
|
1160
|
+
o.output = Shapes::ShapeRef.new(shape: ConfirmCustomerAgreementResponse)
|
|
1161
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectServerException)
|
|
1162
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
|
1163
|
+
end)
|
|
1164
|
+
|
|
1095
1165
|
api.add_operation(:confirm_private_virtual_interface, Seahorse::Model::Operation.new.tap do |o|
|
|
1096
1166
|
o.name = "ConfirmPrivateVirtualInterface"
|
|
1097
1167
|
o.http_method = "POST"
|
|
@@ -1346,6 +1416,16 @@ module Aws::DirectConnect
|
|
|
1346
1416
|
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
|
1347
1417
|
end)
|
|
1348
1418
|
|
|
1419
|
+
api.add_operation(:describe_customer_metadata, Seahorse::Model::Operation.new.tap do |o|
|
|
1420
|
+
o.name = "DescribeCustomerMetadata"
|
|
1421
|
+
o.http_method = "POST"
|
|
1422
|
+
o.http_request_uri = "/"
|
|
1423
|
+
o.input = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
1424
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeCustomerMetadataResponse)
|
|
1425
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectServerException)
|
|
1426
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
|
1427
|
+
end)
|
|
1428
|
+
|
|
1349
1429
|
api.add_operation(:describe_direct_connect_gateway_association_proposals, Seahorse::Model::Operation.new.tap do |o|
|
|
1350
1430
|
o.name = "DescribeDirectConnectGatewayAssociationProposals"
|
|
1351
1431
|
o.http_method = "POST"
|
|
@@ -1447,6 +1527,16 @@ module Aws::DirectConnect
|
|
|
1447
1527
|
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
|
1448
1528
|
end)
|
|
1449
1529
|
|
|
1530
|
+
api.add_operation(:describe_router_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
1531
|
+
o.name = "DescribeRouterConfiguration"
|
|
1532
|
+
o.http_method = "POST"
|
|
1533
|
+
o.http_request_uri = "/"
|
|
1534
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeRouterConfigurationRequest)
|
|
1535
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeRouterConfigurationResponse)
|
|
1536
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectServerException)
|
|
1537
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
|
1538
|
+
end)
|
|
1539
|
+
|
|
1450
1540
|
api.add_operation(:describe_tags, Seahorse::Model::Operation.new.tap do |o|
|
|
1451
1541
|
o.name = "DescribeTags"
|
|
1452
1542
|
o.http_method = "POST"
|
|
@@ -1559,6 +1649,16 @@ module Aws::DirectConnect
|
|
|
1559
1649
|
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
|
1560
1650
|
end)
|
|
1561
1651
|
|
|
1652
|
+
api.add_operation(:update_direct_connect_gateway, Seahorse::Model::Operation.new.tap do |o|
|
|
1653
|
+
o.name = "UpdateDirectConnectGateway"
|
|
1654
|
+
o.http_method = "POST"
|
|
1655
|
+
o.http_request_uri = "/"
|
|
1656
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateDirectConnectGatewayRequest)
|
|
1657
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateDirectConnectGatewayResponse)
|
|
1658
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectServerException)
|
|
1659
|
+
o.errors << Shapes::ShapeRef.new(shape: DirectConnectClientException)
|
|
1660
|
+
end)
|
|
1661
|
+
|
|
1562
1662
|
api.add_operation(:update_direct_connect_gateway_association, Seahorse::Model::Operation.new.tap do |o|
|
|
1563
1663
|
o.name = "UpdateDirectConnectGatewayAssociation"
|
|
1564
1664
|
o.http_method = "POST"
|
|
@@ -33,8 +33,8 @@ module Aws::DirectConnect
|
|
|
33
33
|
# @return [String]
|
|
34
34
|
#
|
|
35
35
|
# @!attribute [rw] associated_gateway_owner_account
|
|
36
|
-
# The ID of the account that owns the virtual
|
|
37
|
-
# transit gateway.
|
|
36
|
+
# The ID of the Amazon Web Services account that owns the virtual
|
|
37
|
+
# private gateway or transit gateway.
|
|
38
38
|
# @return [String]
|
|
39
39
|
#
|
|
40
40
|
# @!attribute [rw] override_allowed_prefixes_to_direct_connect_gateway
|
|
@@ -97,8 +97,8 @@ module Aws::DirectConnect
|
|
|
97
97
|
# @return [String]
|
|
98
98
|
#
|
|
99
99
|
# @!attribute [rw] owner_account
|
|
100
|
-
# The ID of the account of the customer for whom
|
|
101
|
-
# be provisioned.
|
|
100
|
+
# The ID of the Amazon Web Services account of the customer for whom
|
|
101
|
+
# the connection will be provisioned.
|
|
102
102
|
# @return [String]
|
|
103
103
|
#
|
|
104
104
|
# @!attribute [rw] interconnect_id
|
|
@@ -144,7 +144,8 @@ module Aws::DirectConnect
|
|
|
144
144
|
# @return [String]
|
|
145
145
|
#
|
|
146
146
|
# @!attribute [rw] owner_account
|
|
147
|
-
# The ID of the account ID of the customer for the
|
|
147
|
+
# The ID of the Amazon Web Services account ID of the customer for the
|
|
148
|
+
# connection.
|
|
148
149
|
# @return [String]
|
|
149
150
|
#
|
|
150
151
|
# @!attribute [rw] bandwidth
|
|
@@ -210,7 +211,8 @@ module Aws::DirectConnect
|
|
|
210
211
|
# @return [String]
|
|
211
212
|
#
|
|
212
213
|
# @!attribute [rw] owner_account
|
|
213
|
-
# The ID of the account that owns the virtual
|
|
214
|
+
# The ID of the Amazon Web Services account that owns the virtual
|
|
215
|
+
# private interface.
|
|
214
216
|
# @return [String]
|
|
215
217
|
#
|
|
216
218
|
# @!attribute [rw] new_private_virtual_interface_allocation
|
|
@@ -261,7 +263,8 @@ module Aws::DirectConnect
|
|
|
261
263
|
# @return [String]
|
|
262
264
|
#
|
|
263
265
|
# @!attribute [rw] owner_account
|
|
264
|
-
# The ID of the account that owns the public
|
|
266
|
+
# The ID of the Amazon Web Services account that owns the public
|
|
267
|
+
# virtual interface.
|
|
265
268
|
# @return [String]
|
|
266
269
|
#
|
|
267
270
|
# @!attribute [rw] new_public_virtual_interface_allocation
|
|
@@ -308,7 +311,8 @@ module Aws::DirectConnect
|
|
|
308
311
|
# @return [String]
|
|
309
312
|
#
|
|
310
313
|
# @!attribute [rw] owner_account
|
|
311
|
-
# The ID of the account that owns the transit
|
|
314
|
+
# The ID of the Amazon Web Services account that owns the transit
|
|
315
|
+
# virtual interface.
|
|
312
316
|
# @return [String]
|
|
313
317
|
#
|
|
314
318
|
# @!attribute [rw] new_transit_virtual_interface_allocation
|
|
@@ -506,8 +510,8 @@ module Aws::DirectConnect
|
|
|
506
510
|
# @return [String]
|
|
507
511
|
#
|
|
508
512
|
# @!attribute [rw] owner_account
|
|
509
|
-
# The ID of the account that owns the associated
|
|
510
|
-
# gateway or transit gateway.
|
|
513
|
+
# The ID of the Amazon Web Services account that owns the associated
|
|
514
|
+
# virtual private gateway or transit gateway.
|
|
511
515
|
# @return [String]
|
|
512
516
|
#
|
|
513
517
|
# @!attribute [rw] region
|
|
@@ -667,6 +671,38 @@ module Aws::DirectConnect
|
|
|
667
671
|
include Aws::Structure
|
|
668
672
|
end
|
|
669
673
|
|
|
674
|
+
# @note When making an API call, you may pass ConfirmCustomerAgreementRequest
|
|
675
|
+
# data as a hash:
|
|
676
|
+
#
|
|
677
|
+
# {
|
|
678
|
+
# agreement_name: "AgreementName",
|
|
679
|
+
# }
|
|
680
|
+
#
|
|
681
|
+
# @!attribute [rw] agreement_name
|
|
682
|
+
# The name of the customer agreement.
|
|
683
|
+
# @return [String]
|
|
684
|
+
#
|
|
685
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ConfirmCustomerAgreementRequest AWS API Documentation
|
|
686
|
+
#
|
|
687
|
+
class ConfirmCustomerAgreementRequest < Struct.new(
|
|
688
|
+
:agreement_name)
|
|
689
|
+
SENSITIVE = []
|
|
690
|
+
include Aws::Structure
|
|
691
|
+
end
|
|
692
|
+
|
|
693
|
+
# @!attribute [rw] status
|
|
694
|
+
# The status of the customer agreement when the connection was
|
|
695
|
+
# created. This will be either `signed` or `unsigned`.
|
|
696
|
+
# @return [String]
|
|
697
|
+
#
|
|
698
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/ConfirmCustomerAgreementResponse AWS API Documentation
|
|
699
|
+
#
|
|
700
|
+
class ConfirmCustomerAgreementResponse < Struct.new(
|
|
701
|
+
:status)
|
|
702
|
+
SENSITIVE = []
|
|
703
|
+
include Aws::Structure
|
|
704
|
+
end
|
|
705
|
+
|
|
670
706
|
# @note When making an API call, you may pass ConfirmPrivateVirtualInterfaceRequest
|
|
671
707
|
# data as a hash:
|
|
672
708
|
#
|
|
@@ -877,7 +913,7 @@ module Aws::DirectConnect
|
|
|
877
913
|
# Information about an Direct Connect connection.
|
|
878
914
|
#
|
|
879
915
|
# @!attribute [rw] owner_account
|
|
880
|
-
# The ID of the account that owns the connection.
|
|
916
|
+
# The ID of the Amazon Web Services account that owns the connection.
|
|
881
917
|
# @return [String]
|
|
882
918
|
#
|
|
883
919
|
# @!attribute [rw] connection_id
|
|
@@ -919,7 +955,7 @@ module Aws::DirectConnect
|
|
|
919
955
|
# @return [String]
|
|
920
956
|
#
|
|
921
957
|
# @!attribute [rw] region
|
|
922
|
-
# The Region where the connection is located.
|
|
958
|
+
# The Amazon Web Services Region where the connection is located.
|
|
923
959
|
# @return [String]
|
|
924
960
|
#
|
|
925
961
|
# @!attribute [rw] location
|
|
@@ -1180,7 +1216,8 @@ module Aws::DirectConnect
|
|
|
1180
1216
|
# @return [String]
|
|
1181
1217
|
#
|
|
1182
1218
|
# @!attribute [rw] direct_connect_gateway_owner_account
|
|
1183
|
-
# The ID of the account that owns the Direct
|
|
1219
|
+
# The ID of the Amazon Web Services account that owns the Direct
|
|
1220
|
+
# Connect gateway.
|
|
1184
1221
|
# @return [String]
|
|
1185
1222
|
#
|
|
1186
1223
|
# @!attribute [rw] gateway_id
|
|
@@ -1606,6 +1643,26 @@ module Aws::DirectConnect
|
|
|
1606
1643
|
include Aws::Structure
|
|
1607
1644
|
end
|
|
1608
1645
|
|
|
1646
|
+
# The name and status of a customer agreement.
|
|
1647
|
+
#
|
|
1648
|
+
# @!attribute [rw] agreement_name
|
|
1649
|
+
# The name of the agreement.
|
|
1650
|
+
# @return [String]
|
|
1651
|
+
#
|
|
1652
|
+
# @!attribute [rw] status
|
|
1653
|
+
# The status of the customer agreement. This will be either `signed`
|
|
1654
|
+
# or `unsigned`
|
|
1655
|
+
# @return [String]
|
|
1656
|
+
#
|
|
1657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CustomerAgreement AWS API Documentation
|
|
1658
|
+
#
|
|
1659
|
+
class CustomerAgreement < Struct.new(
|
|
1660
|
+
:agreement_name,
|
|
1661
|
+
:status)
|
|
1662
|
+
SENSITIVE = []
|
|
1663
|
+
include Aws::Structure
|
|
1664
|
+
end
|
|
1665
|
+
|
|
1609
1666
|
# @note When making an API call, you may pass DeleteBGPPeerRequest
|
|
1610
1667
|
# data as a hash:
|
|
1611
1668
|
#
|
|
@@ -1998,6 +2055,32 @@ module Aws::DirectConnect
|
|
|
1998
2055
|
include Aws::Structure
|
|
1999
2056
|
end
|
|
2000
2057
|
|
|
2058
|
+
# @!attribute [rw] agreements
|
|
2059
|
+
# The list of customer agreements.
|
|
2060
|
+
# @return [Array<Types::CustomerAgreement>]
|
|
2061
|
+
#
|
|
2062
|
+
# @!attribute [rw] nni_partner_type
|
|
2063
|
+
# The type of network-to-network interface (NNI) partner. The partner
|
|
2064
|
+
# type will be one of the following:
|
|
2065
|
+
#
|
|
2066
|
+
# * V1: This partner can only allocate 50Mbps, 100Mbps, 200Mbps,
|
|
2067
|
+
# 300Mbps, 400Mbps, or 500Mbps subgigabit connections.
|
|
2068
|
+
#
|
|
2069
|
+
# * V2: This partner can only allocate 1GB, 2GB, 5GB, or 10GB hosted
|
|
2070
|
+
# connections.
|
|
2071
|
+
#
|
|
2072
|
+
# * nonPartner: The customer is not a partner.
|
|
2073
|
+
# @return [String]
|
|
2074
|
+
#
|
|
2075
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeCustomerMetadataResponse AWS API Documentation
|
|
2076
|
+
#
|
|
2077
|
+
class DescribeCustomerMetadataResponse < Struct.new(
|
|
2078
|
+
:agreements,
|
|
2079
|
+
:nni_partner_type)
|
|
2080
|
+
SENSITIVE = []
|
|
2081
|
+
include Aws::Structure
|
|
2082
|
+
end
|
|
2083
|
+
|
|
2001
2084
|
# @note When making an API call, you may pass DescribeDirectConnectGatewayAssociationProposalsRequest
|
|
2002
2085
|
# data as a hash:
|
|
2003
2086
|
#
|
|
@@ -2387,6 +2470,62 @@ module Aws::DirectConnect
|
|
|
2387
2470
|
include Aws::Structure
|
|
2388
2471
|
end
|
|
2389
2472
|
|
|
2473
|
+
# Provides the details about a virtual interface's router.
|
|
2474
|
+
#
|
|
2475
|
+
# @note When making an API call, you may pass DescribeRouterConfigurationRequest
|
|
2476
|
+
# data as a hash:
|
|
2477
|
+
#
|
|
2478
|
+
# {
|
|
2479
|
+
# virtual_interface_id: "VirtualInterfaceId", # required
|
|
2480
|
+
# router_type_identifier: "RouterTypeIdentifier",
|
|
2481
|
+
# }
|
|
2482
|
+
#
|
|
2483
|
+
# @!attribute [rw] virtual_interface_id
|
|
2484
|
+
# The ID of the virtual interface.
|
|
2485
|
+
# @return [String]
|
|
2486
|
+
#
|
|
2487
|
+
# @!attribute [rw] router_type_identifier
|
|
2488
|
+
# Identifies the router by a combination of vendor, platform, and
|
|
2489
|
+
# software version. For example,
|
|
2490
|
+
# `CiscoSystemsInc-2900SeriesRouters-IOS124`.
|
|
2491
|
+
# @return [String]
|
|
2492
|
+
#
|
|
2493
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeRouterConfigurationRequest AWS API Documentation
|
|
2494
|
+
#
|
|
2495
|
+
class DescribeRouterConfigurationRequest < Struct.new(
|
|
2496
|
+
:virtual_interface_id,
|
|
2497
|
+
:router_type_identifier)
|
|
2498
|
+
SENSITIVE = []
|
|
2499
|
+
include Aws::Structure
|
|
2500
|
+
end
|
|
2501
|
+
|
|
2502
|
+
# @!attribute [rw] customer_router_config
|
|
2503
|
+
# The customer router configuration.
|
|
2504
|
+
# @return [String]
|
|
2505
|
+
#
|
|
2506
|
+
# @!attribute [rw] router
|
|
2507
|
+
# The details about the router.
|
|
2508
|
+
# @return [Types::RouterType]
|
|
2509
|
+
#
|
|
2510
|
+
# @!attribute [rw] virtual_interface_id
|
|
2511
|
+
# The ID assigned to the virtual interface.
|
|
2512
|
+
# @return [String]
|
|
2513
|
+
#
|
|
2514
|
+
# @!attribute [rw] virtual_interface_name
|
|
2515
|
+
# The name of the virtual interface assigned by the customer network.
|
|
2516
|
+
# @return [String]
|
|
2517
|
+
#
|
|
2518
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeRouterConfigurationResponse AWS API Documentation
|
|
2519
|
+
#
|
|
2520
|
+
class DescribeRouterConfigurationResponse < Struct.new(
|
|
2521
|
+
:customer_router_config,
|
|
2522
|
+
:router,
|
|
2523
|
+
:virtual_interface_id,
|
|
2524
|
+
:virtual_interface_name)
|
|
2525
|
+
SENSITIVE = []
|
|
2526
|
+
include Aws::Structure
|
|
2527
|
+
end
|
|
2528
|
+
|
|
2390
2529
|
# @note When making an API call, you may pass DescribeTagsRequest
|
|
2391
2530
|
# data as a hash:
|
|
2392
2531
|
#
|
|
@@ -2474,7 +2613,8 @@ module Aws::DirectConnect
|
|
|
2474
2613
|
# @return [Integer]
|
|
2475
2614
|
#
|
|
2476
2615
|
# @!attribute [rw] owner_account
|
|
2477
|
-
# The ID of the account that owns the Direct
|
|
2616
|
+
# The ID of the Amazon Web Services account that owns the Direct
|
|
2617
|
+
# Connect gateway.
|
|
2478
2618
|
# @return [String]
|
|
2479
2619
|
#
|
|
2480
2620
|
# @!attribute [rw] direct_connect_gateway_state
|
|
@@ -2518,7 +2658,8 @@ module Aws::DirectConnect
|
|
|
2518
2658
|
# @return [String]
|
|
2519
2659
|
#
|
|
2520
2660
|
# @!attribute [rw] direct_connect_gateway_owner_account
|
|
2521
|
-
# The ID of the account that owns the associated
|
|
2661
|
+
# The ID of the Amazon Web Services account that owns the associated
|
|
2662
|
+
# gateway.
|
|
2522
2663
|
# @return [String]
|
|
2523
2664
|
#
|
|
2524
2665
|
# @!attribute [rw] association_state
|
|
@@ -2562,11 +2703,13 @@ module Aws::DirectConnect
|
|
|
2562
2703
|
# @return [String]
|
|
2563
2704
|
#
|
|
2564
2705
|
# @!attribute [rw] virtual_gateway_region
|
|
2565
|
-
# The Region where the virtual private gateway is
|
|
2706
|
+
# The Amazon Web Services Region where the virtual private gateway is
|
|
2707
|
+
# located.
|
|
2566
2708
|
# @return [String]
|
|
2567
2709
|
#
|
|
2568
2710
|
# @!attribute [rw] virtual_gateway_owner_account
|
|
2569
|
-
# The ID of the account that owns the virtual
|
|
2711
|
+
# The ID of the Amazon Web Services account that owns the virtual
|
|
2712
|
+
# private gateway.
|
|
2570
2713
|
# @return [String]
|
|
2571
2714
|
#
|
|
2572
2715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DirectConnectGatewayAssociation AWS API Documentation
|
|
@@ -2598,7 +2741,8 @@ module Aws::DirectConnect
|
|
|
2598
2741
|
# @return [String]
|
|
2599
2742
|
#
|
|
2600
2743
|
# @!attribute [rw] direct_connect_gateway_owner_account
|
|
2601
|
-
# The ID of the account that owns the Direct
|
|
2744
|
+
# The ID of the Amazon Web Services account that owns the Direct
|
|
2745
|
+
# Connect gateway.
|
|
2602
2746
|
# @return [String]
|
|
2603
2747
|
#
|
|
2604
2748
|
# @!attribute [rw] proposal_state
|
|
@@ -2654,11 +2798,13 @@ module Aws::DirectConnect
|
|
|
2654
2798
|
# @return [String]
|
|
2655
2799
|
#
|
|
2656
2800
|
# @!attribute [rw] virtual_interface_region
|
|
2657
|
-
# The Region where the virtual interface is
|
|
2801
|
+
# The Amazon Web Services Region where the virtual interface is
|
|
2802
|
+
# located.
|
|
2658
2803
|
# @return [String]
|
|
2659
2804
|
#
|
|
2660
2805
|
# @!attribute [rw] virtual_interface_owner_account
|
|
2661
|
-
# The ID of the account that owns the virtual
|
|
2806
|
+
# The ID of the Amazon Web Services account that owns the virtual
|
|
2807
|
+
# interface.
|
|
2662
2808
|
# @return [String]
|
|
2663
2809
|
#
|
|
2664
2810
|
# @!attribute [rw] attachment_state
|
|
@@ -2830,7 +2976,7 @@ module Aws::DirectConnect
|
|
|
2830
2976
|
# @return [String]
|
|
2831
2977
|
#
|
|
2832
2978
|
# @!attribute [rw] region
|
|
2833
|
-
# The Region where the connection is located.
|
|
2979
|
+
# The Amazon Web Services Region where the connection is located.
|
|
2834
2980
|
# @return [String]
|
|
2835
2981
|
#
|
|
2836
2982
|
# @!attribute [rw] location
|
|
@@ -2932,7 +3078,7 @@ module Aws::DirectConnect
|
|
|
2932
3078
|
# @return [String]
|
|
2933
3079
|
#
|
|
2934
3080
|
# @!attribute [rw] owner_account
|
|
2935
|
-
# The ID of the account that owns the LAG.
|
|
3081
|
+
# The ID of the Amazon Web Services account that owns the LAG.
|
|
2936
3082
|
# @return [String]
|
|
2937
3083
|
#
|
|
2938
3084
|
# @!attribute [rw] lag_name
|
|
@@ -2965,7 +3111,7 @@ module Aws::DirectConnect
|
|
|
2965
3111
|
# @return [String]
|
|
2966
3112
|
#
|
|
2967
3113
|
# @!attribute [rw] region
|
|
2968
|
-
# The Region where the connection is located.
|
|
3114
|
+
# The Amazon Web Services Region where the connection is located.
|
|
2969
3115
|
# @return [String]
|
|
2970
3116
|
#
|
|
2971
3117
|
# @!attribute [rw] minimum_links
|
|
@@ -3173,7 +3319,7 @@ module Aws::DirectConnect
|
|
|
3173
3319
|
# @return [String]
|
|
3174
3320
|
#
|
|
3175
3321
|
# @!attribute [rw] region
|
|
3176
|
-
# The Region for the location.
|
|
3322
|
+
# The Amazon Web Services Region for the location.
|
|
3177
3323
|
# @return [String]
|
|
3178
3324
|
#
|
|
3179
3325
|
# @!attribute [rw] available_port_speeds
|
|
@@ -3869,6 +4015,48 @@ module Aws::DirectConnect
|
|
|
3869
4015
|
include Aws::Structure
|
|
3870
4016
|
end
|
|
3871
4017
|
|
|
4018
|
+
# Information about the virtual router.
|
|
4019
|
+
#
|
|
4020
|
+
# @!attribute [rw] vendor
|
|
4021
|
+
# The vendor for the virtual interface's router.
|
|
4022
|
+
# @return [String]
|
|
4023
|
+
#
|
|
4024
|
+
# @!attribute [rw] platform
|
|
4025
|
+
# The virtual interface router platform.
|
|
4026
|
+
# @return [String]
|
|
4027
|
+
#
|
|
4028
|
+
# @!attribute [rw] software
|
|
4029
|
+
# The router software.
|
|
4030
|
+
# @return [String]
|
|
4031
|
+
#
|
|
4032
|
+
# @!attribute [rw] xslt_template_name
|
|
4033
|
+
# The template for the virtual interface's router.
|
|
4034
|
+
# @return [String]
|
|
4035
|
+
#
|
|
4036
|
+
# @!attribute [rw] xslt_template_name_for_mac_sec
|
|
4037
|
+
# The MAC Security (MACsec) template for the virtual interface's
|
|
4038
|
+
# router.
|
|
4039
|
+
# @return [String]
|
|
4040
|
+
#
|
|
4041
|
+
# @!attribute [rw] router_type_identifier
|
|
4042
|
+
# Identifies the router by a combination of vendor, platform, and
|
|
4043
|
+
# software version. For example,
|
|
4044
|
+
# `CiscoSystemsInc-2900SeriesRouters-IOS124`.
|
|
4045
|
+
# @return [String]
|
|
4046
|
+
#
|
|
4047
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/RouterType AWS API Documentation
|
|
4048
|
+
#
|
|
4049
|
+
class RouterType < Struct.new(
|
|
4050
|
+
:vendor,
|
|
4051
|
+
:platform,
|
|
4052
|
+
:software,
|
|
4053
|
+
:xslt_template_name,
|
|
4054
|
+
:xslt_template_name_for_mac_sec,
|
|
4055
|
+
:router_type_identifier)
|
|
4056
|
+
SENSITIVE = []
|
|
4057
|
+
include Aws::Structure
|
|
4058
|
+
end
|
|
4059
|
+
|
|
3872
4060
|
# @note When making an API call, you may pass StartBgpFailoverTestRequest
|
|
3873
4061
|
# data as a hash:
|
|
3874
4062
|
#
|
|
@@ -4133,6 +4321,45 @@ module Aws::DirectConnect
|
|
|
4133
4321
|
include Aws::Structure
|
|
4134
4322
|
end
|
|
4135
4323
|
|
|
4324
|
+
# @note When making an API call, you may pass UpdateDirectConnectGatewayRequest
|
|
4325
|
+
# data as a hash:
|
|
4326
|
+
#
|
|
4327
|
+
# {
|
|
4328
|
+
# direct_connect_gateway_id: "DirectConnectGatewayId", # required
|
|
4329
|
+
# new_direct_connect_gateway_name: "DirectConnectGatewayName", # required
|
|
4330
|
+
# }
|
|
4331
|
+
#
|
|
4332
|
+
# @!attribute [rw] direct_connect_gateway_id
|
|
4333
|
+
# The ID of the Direct Connect gateway to update.
|
|
4334
|
+
# @return [String]
|
|
4335
|
+
#
|
|
4336
|
+
# @!attribute [rw] new_direct_connect_gateway_name
|
|
4337
|
+
# The new name for the Direct Connect gateway.
|
|
4338
|
+
# @return [String]
|
|
4339
|
+
#
|
|
4340
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateDirectConnectGatewayRequest AWS API Documentation
|
|
4341
|
+
#
|
|
4342
|
+
class UpdateDirectConnectGatewayRequest < Struct.new(
|
|
4343
|
+
:direct_connect_gateway_id,
|
|
4344
|
+
:new_direct_connect_gateway_name)
|
|
4345
|
+
SENSITIVE = []
|
|
4346
|
+
include Aws::Structure
|
|
4347
|
+
end
|
|
4348
|
+
|
|
4349
|
+
# @!attribute [rw] direct_connect_gateway
|
|
4350
|
+
# Information about a Direct Connect gateway, which enables you to
|
|
4351
|
+
# connect virtual interfaces and virtual private gateway or transit
|
|
4352
|
+
# gateways.
|
|
4353
|
+
# @return [Types::DirectConnectGateway]
|
|
4354
|
+
#
|
|
4355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateDirectConnectGatewayResponse AWS API Documentation
|
|
4356
|
+
#
|
|
4357
|
+
class UpdateDirectConnectGatewayResponse < Struct.new(
|
|
4358
|
+
:direct_connect_gateway)
|
|
4359
|
+
SENSITIVE = []
|
|
4360
|
+
include Aws::Structure
|
|
4361
|
+
end
|
|
4362
|
+
|
|
4136
4363
|
# @note When making an API call, you may pass UpdateLagRequest
|
|
4137
4364
|
# data as a hash:
|
|
4138
4365
|
#
|
|
@@ -4247,7 +4474,8 @@ module Aws::DirectConnect
|
|
|
4247
4474
|
# Information about a virtual interface.
|
|
4248
4475
|
#
|
|
4249
4476
|
# @!attribute [rw] owner_account
|
|
4250
|
-
# The ID of the account that owns the virtual
|
|
4477
|
+
# The ID of the Amazon Web Services account that owns the virtual
|
|
4478
|
+
# interface.
|
|
4251
4479
|
# @return [String]
|
|
4252
4480
|
#
|
|
4253
4481
|
# @!attribute [rw] virtual_interface_id
|
|
@@ -4375,7 +4603,8 @@ module Aws::DirectConnect
|
|
|
4375
4603
|
# @return [Array<Types::BGPPeer>]
|
|
4376
4604
|
#
|
|
4377
4605
|
# @!attribute [rw] region
|
|
4378
|
-
# The Region where the virtual interface is
|
|
4606
|
+
# The Amazon Web Services Region where the virtual interface is
|
|
4607
|
+
# located.
|
|
4379
4608
|
# @return [String]
|
|
4380
4609
|
#
|
|
4381
4610
|
# @!attribute [rw] aws_device_v2
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-directconnect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.49.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.122.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.122.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
76
76
|
requirements:
|
|
77
77
|
- - ">="
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
|
-
version: '
|
|
79
|
+
version: '2.3'
|
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
requirements:
|
|
82
82
|
- - ">="
|