aws-sdk-directconnect 1.47.0 → 1.51.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 +228 -45
- data/lib/aws-sdk-directconnect/client_api.rb +107 -0
- data/lib/aws-sdk-directconnect/types.rb +290 -30
- data/lib/aws-sdk-directconnect.rb +1 -1
- metadata +4 -4
@@ -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
|
@@ -1489,6 +1526,7 @@ module Aws::DirectConnect
|
|
1489
1526
|
# value: "TagValue",
|
1490
1527
|
# },
|
1491
1528
|
# ],
|
1529
|
+
# enable_site_link: false,
|
1492
1530
|
# },
|
1493
1531
|
# }
|
1494
1532
|
#
|
@@ -1574,6 +1612,7 @@ module Aws::DirectConnect
|
|
1574
1612
|
# value: "TagValue",
|
1575
1613
|
# },
|
1576
1614
|
# ],
|
1615
|
+
# enable_site_link: false,
|
1577
1616
|
# },
|
1578
1617
|
# }
|
1579
1618
|
#
|
@@ -1606,6 +1645,26 @@ module Aws::DirectConnect
|
|
1606
1645
|
include Aws::Structure
|
1607
1646
|
end
|
1608
1647
|
|
1648
|
+
# The name and status of a customer agreement.
|
1649
|
+
#
|
1650
|
+
# @!attribute [rw] agreement_name
|
1651
|
+
# The name of the agreement.
|
1652
|
+
# @return [String]
|
1653
|
+
#
|
1654
|
+
# @!attribute [rw] status
|
1655
|
+
# The status of the customer agreement. This will be either `signed`
|
1656
|
+
# or `unsigned`
|
1657
|
+
# @return [String]
|
1658
|
+
#
|
1659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CustomerAgreement AWS API Documentation
|
1660
|
+
#
|
1661
|
+
class CustomerAgreement < Struct.new(
|
1662
|
+
:agreement_name,
|
1663
|
+
:status)
|
1664
|
+
SENSITIVE = []
|
1665
|
+
include Aws::Structure
|
1666
|
+
end
|
1667
|
+
|
1609
1668
|
# @note When making an API call, you may pass DeleteBGPPeerRequest
|
1610
1669
|
# data as a hash:
|
1611
1670
|
#
|
@@ -1998,6 +2057,32 @@ module Aws::DirectConnect
|
|
1998
2057
|
include Aws::Structure
|
1999
2058
|
end
|
2000
2059
|
|
2060
|
+
# @!attribute [rw] agreements
|
2061
|
+
# The list of customer agreements.
|
2062
|
+
# @return [Array<Types::CustomerAgreement>]
|
2063
|
+
#
|
2064
|
+
# @!attribute [rw] nni_partner_type
|
2065
|
+
# The type of network-to-network interface (NNI) partner. The partner
|
2066
|
+
# type will be one of the following:
|
2067
|
+
#
|
2068
|
+
# * V1: This partner can only allocate 50Mbps, 100Mbps, 200Mbps,
|
2069
|
+
# 300Mbps, 400Mbps, or 500Mbps subgigabit connections.
|
2070
|
+
#
|
2071
|
+
# * V2: This partner can only allocate 1GB, 2GB, 5GB, or 10GB hosted
|
2072
|
+
# connections.
|
2073
|
+
#
|
2074
|
+
# * nonPartner: The customer is not a partner.
|
2075
|
+
# @return [String]
|
2076
|
+
#
|
2077
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeCustomerMetadataResponse AWS API Documentation
|
2078
|
+
#
|
2079
|
+
class DescribeCustomerMetadataResponse < Struct.new(
|
2080
|
+
:agreements,
|
2081
|
+
:nni_partner_type)
|
2082
|
+
SENSITIVE = []
|
2083
|
+
include Aws::Structure
|
2084
|
+
end
|
2085
|
+
|
2001
2086
|
# @note When making an API call, you may pass DescribeDirectConnectGatewayAssociationProposalsRequest
|
2002
2087
|
# data as a hash:
|
2003
2088
|
#
|
@@ -2387,6 +2472,62 @@ module Aws::DirectConnect
|
|
2387
2472
|
include Aws::Structure
|
2388
2473
|
end
|
2389
2474
|
|
2475
|
+
# Provides the details about a virtual interface's router.
|
2476
|
+
#
|
2477
|
+
# @note When making an API call, you may pass DescribeRouterConfigurationRequest
|
2478
|
+
# data as a hash:
|
2479
|
+
#
|
2480
|
+
# {
|
2481
|
+
# virtual_interface_id: "VirtualInterfaceId", # required
|
2482
|
+
# router_type_identifier: "RouterTypeIdentifier",
|
2483
|
+
# }
|
2484
|
+
#
|
2485
|
+
# @!attribute [rw] virtual_interface_id
|
2486
|
+
# The ID of the virtual interface.
|
2487
|
+
# @return [String]
|
2488
|
+
#
|
2489
|
+
# @!attribute [rw] router_type_identifier
|
2490
|
+
# Identifies the router by a combination of vendor, platform, and
|
2491
|
+
# software version. For example,
|
2492
|
+
# `CiscoSystemsInc-2900SeriesRouters-IOS124`.
|
2493
|
+
# @return [String]
|
2494
|
+
#
|
2495
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeRouterConfigurationRequest AWS API Documentation
|
2496
|
+
#
|
2497
|
+
class DescribeRouterConfigurationRequest < Struct.new(
|
2498
|
+
:virtual_interface_id,
|
2499
|
+
:router_type_identifier)
|
2500
|
+
SENSITIVE = []
|
2501
|
+
include Aws::Structure
|
2502
|
+
end
|
2503
|
+
|
2504
|
+
# @!attribute [rw] customer_router_config
|
2505
|
+
# The customer router configuration.
|
2506
|
+
# @return [String]
|
2507
|
+
#
|
2508
|
+
# @!attribute [rw] router
|
2509
|
+
# The details about the router.
|
2510
|
+
# @return [Types::RouterType]
|
2511
|
+
#
|
2512
|
+
# @!attribute [rw] virtual_interface_id
|
2513
|
+
# The ID assigned to the virtual interface.
|
2514
|
+
# @return [String]
|
2515
|
+
#
|
2516
|
+
# @!attribute [rw] virtual_interface_name
|
2517
|
+
# Provides the details about a virtual interface's router.
|
2518
|
+
# @return [String]
|
2519
|
+
#
|
2520
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeRouterConfigurationResponse AWS API Documentation
|
2521
|
+
#
|
2522
|
+
class DescribeRouterConfigurationResponse < Struct.new(
|
2523
|
+
:customer_router_config,
|
2524
|
+
:router,
|
2525
|
+
:virtual_interface_id,
|
2526
|
+
:virtual_interface_name)
|
2527
|
+
SENSITIVE = []
|
2528
|
+
include Aws::Structure
|
2529
|
+
end
|
2530
|
+
|
2390
2531
|
# @note When making an API call, you may pass DescribeTagsRequest
|
2391
2532
|
# data as a hash:
|
2392
2533
|
#
|
@@ -2474,7 +2615,8 @@ module Aws::DirectConnect
|
|
2474
2615
|
# @return [Integer]
|
2475
2616
|
#
|
2476
2617
|
# @!attribute [rw] owner_account
|
2477
|
-
# The ID of the account that owns the Direct
|
2618
|
+
# The ID of the Amazon Web Services account that owns the Direct
|
2619
|
+
# Connect gateway.
|
2478
2620
|
# @return [String]
|
2479
2621
|
#
|
2480
2622
|
# @!attribute [rw] direct_connect_gateway_state
|
@@ -2518,7 +2660,8 @@ module Aws::DirectConnect
|
|
2518
2660
|
# @return [String]
|
2519
2661
|
#
|
2520
2662
|
# @!attribute [rw] direct_connect_gateway_owner_account
|
2521
|
-
# The ID of the account that owns the associated
|
2663
|
+
# The ID of the Amazon Web Services account that owns the associated
|
2664
|
+
# gateway.
|
2522
2665
|
# @return [String]
|
2523
2666
|
#
|
2524
2667
|
# @!attribute [rw] association_state
|
@@ -2562,11 +2705,13 @@ module Aws::DirectConnect
|
|
2562
2705
|
# @return [String]
|
2563
2706
|
#
|
2564
2707
|
# @!attribute [rw] virtual_gateway_region
|
2565
|
-
# The Region where the virtual private gateway is
|
2708
|
+
# The Amazon Web Services Region where the virtual private gateway is
|
2709
|
+
# located.
|
2566
2710
|
# @return [String]
|
2567
2711
|
#
|
2568
2712
|
# @!attribute [rw] virtual_gateway_owner_account
|
2569
|
-
# The ID of the account that owns the virtual
|
2713
|
+
# The ID of the Amazon Web Services account that owns the virtual
|
2714
|
+
# private gateway.
|
2570
2715
|
# @return [String]
|
2571
2716
|
#
|
2572
2717
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DirectConnectGatewayAssociation AWS API Documentation
|
@@ -2598,7 +2743,8 @@ module Aws::DirectConnect
|
|
2598
2743
|
# @return [String]
|
2599
2744
|
#
|
2600
2745
|
# @!attribute [rw] direct_connect_gateway_owner_account
|
2601
|
-
# The ID of the account that owns the Direct
|
2746
|
+
# The ID of the Amazon Web Services account that owns the Direct
|
2747
|
+
# Connect gateway.
|
2602
2748
|
# @return [String]
|
2603
2749
|
#
|
2604
2750
|
# @!attribute [rw] proposal_state
|
@@ -2654,11 +2800,13 @@ module Aws::DirectConnect
|
|
2654
2800
|
# @return [String]
|
2655
2801
|
#
|
2656
2802
|
# @!attribute [rw] virtual_interface_region
|
2657
|
-
# The Region where the virtual interface is
|
2803
|
+
# The Amazon Web Services Region where the virtual interface is
|
2804
|
+
# located.
|
2658
2805
|
# @return [String]
|
2659
2806
|
#
|
2660
2807
|
# @!attribute [rw] virtual_interface_owner_account
|
2661
|
-
# The ID of the account that owns the virtual
|
2808
|
+
# The ID of the Amazon Web Services account that owns the virtual
|
2809
|
+
# interface.
|
2662
2810
|
# @return [String]
|
2663
2811
|
#
|
2664
2812
|
# @!attribute [rw] attachment_state
|
@@ -2830,7 +2978,7 @@ module Aws::DirectConnect
|
|
2830
2978
|
# @return [String]
|
2831
2979
|
#
|
2832
2980
|
# @!attribute [rw] region
|
2833
|
-
# The Region where the connection is located.
|
2981
|
+
# The Amazon Web Services Region where the connection is located.
|
2834
2982
|
# @return [String]
|
2835
2983
|
#
|
2836
2984
|
# @!attribute [rw] location
|
@@ -2932,7 +3080,7 @@ module Aws::DirectConnect
|
|
2932
3080
|
# @return [String]
|
2933
3081
|
#
|
2934
3082
|
# @!attribute [rw] owner_account
|
2935
|
-
# The ID of the account that owns the LAG.
|
3083
|
+
# The ID of the Amazon Web Services account that owns the LAG.
|
2936
3084
|
# @return [String]
|
2937
3085
|
#
|
2938
3086
|
# @!attribute [rw] lag_name
|
@@ -2965,7 +3113,7 @@ module Aws::DirectConnect
|
|
2965
3113
|
# @return [String]
|
2966
3114
|
#
|
2967
3115
|
# @!attribute [rw] region
|
2968
|
-
# The Region where the connection is located.
|
3116
|
+
# The Amazon Web Services Region where the connection is located.
|
2969
3117
|
# @return [String]
|
2970
3118
|
#
|
2971
3119
|
# @!attribute [rw] minimum_links
|
@@ -3173,7 +3321,7 @@ module Aws::DirectConnect
|
|
3173
3321
|
# @return [String]
|
3174
3322
|
#
|
3175
3323
|
# @!attribute [rw] region
|
3176
|
-
# The Region for the location.
|
3324
|
+
# The Amazon Web Services Region for the location.
|
3177
3325
|
# @return [String]
|
3178
3326
|
#
|
3179
3327
|
# @!attribute [rw] available_port_speeds
|
@@ -3328,6 +3476,7 @@ module Aws::DirectConnect
|
|
3328
3476
|
# value: "TagValue",
|
3329
3477
|
# },
|
3330
3478
|
# ],
|
3479
|
+
# enable_site_link: false,
|
3331
3480
|
# }
|
3332
3481
|
#
|
3333
3482
|
# @!attribute [rw] virtual_interface_name
|
@@ -3382,6 +3531,10 @@ module Aws::DirectConnect
|
|
3382
3531
|
# The tags associated with the private virtual interface.
|
3383
3532
|
# @return [Array<Types::Tag>]
|
3384
3533
|
#
|
3534
|
+
# @!attribute [rw] enable_site_link
|
3535
|
+
# Indicates whether to enable or disable SiteLink.
|
3536
|
+
# @return [Boolean]
|
3537
|
+
#
|
3385
3538
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/NewPrivateVirtualInterface AWS API Documentation
|
3386
3539
|
#
|
3387
3540
|
class NewPrivateVirtualInterface < Struct.new(
|
@@ -3395,7 +3548,8 @@ module Aws::DirectConnect
|
|
3395
3548
|
:address_family,
|
3396
3549
|
:virtual_gateway_id,
|
3397
3550
|
:direct_connect_gateway_id,
|
3398
|
-
:tags
|
3551
|
+
:tags,
|
3552
|
+
:enable_site_link)
|
3399
3553
|
SENSITIVE = []
|
3400
3554
|
include Aws::Structure
|
3401
3555
|
end
|
@@ -3677,6 +3831,7 @@ module Aws::DirectConnect
|
|
3677
3831
|
# value: "TagValue",
|
3678
3832
|
# },
|
3679
3833
|
# ],
|
3834
|
+
# enable_site_link: false,
|
3680
3835
|
# }
|
3681
3836
|
#
|
3682
3837
|
# @!attribute [rw] virtual_interface_name
|
@@ -3727,6 +3882,10 @@ module Aws::DirectConnect
|
|
3727
3882
|
# The tags associated with the transitive virtual interface.
|
3728
3883
|
# @return [Array<Types::Tag>]
|
3729
3884
|
#
|
3885
|
+
# @!attribute [rw] enable_site_link
|
3886
|
+
# Indicates whether to enable or disable SiteLink.
|
3887
|
+
# @return [Boolean]
|
3888
|
+
#
|
3730
3889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/NewTransitVirtualInterface AWS API Documentation
|
3731
3890
|
#
|
3732
3891
|
class NewTransitVirtualInterface < Struct.new(
|
@@ -3739,7 +3898,8 @@ module Aws::DirectConnect
|
|
3739
3898
|
:customer_address,
|
3740
3899
|
:address_family,
|
3741
3900
|
:direct_connect_gateway_id,
|
3742
|
-
:tags
|
3901
|
+
:tags,
|
3902
|
+
:enable_site_link)
|
3743
3903
|
SENSITIVE = []
|
3744
3904
|
include Aws::Structure
|
3745
3905
|
end
|
@@ -3869,6 +4029,48 @@ module Aws::DirectConnect
|
|
3869
4029
|
include Aws::Structure
|
3870
4030
|
end
|
3871
4031
|
|
4032
|
+
# Information about the virtual router.
|
4033
|
+
#
|
4034
|
+
# @!attribute [rw] vendor
|
4035
|
+
# The vendor for the virtual interface's router.
|
4036
|
+
# @return [String]
|
4037
|
+
#
|
4038
|
+
# @!attribute [rw] platform
|
4039
|
+
# The virtual interface router platform.
|
4040
|
+
# @return [String]
|
4041
|
+
#
|
4042
|
+
# @!attribute [rw] software
|
4043
|
+
# The router software.
|
4044
|
+
# @return [String]
|
4045
|
+
#
|
4046
|
+
# @!attribute [rw] xslt_template_name
|
4047
|
+
# The template for the virtual interface's router.
|
4048
|
+
# @return [String]
|
4049
|
+
#
|
4050
|
+
# @!attribute [rw] xslt_template_name_for_mac_sec
|
4051
|
+
# The MAC Security (MACsec) template for the virtual interface's
|
4052
|
+
# router.
|
4053
|
+
# @return [String]
|
4054
|
+
#
|
4055
|
+
# @!attribute [rw] router_type_identifier
|
4056
|
+
# Identifies the router by a combination of vendor, platform, and
|
4057
|
+
# software version. For example,
|
4058
|
+
# `CiscoSystemsInc-2900SeriesRouters-IOS124`.
|
4059
|
+
# @return [String]
|
4060
|
+
#
|
4061
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/RouterType AWS API Documentation
|
4062
|
+
#
|
4063
|
+
class RouterType < Struct.new(
|
4064
|
+
:vendor,
|
4065
|
+
:platform,
|
4066
|
+
:software,
|
4067
|
+
:xslt_template_name,
|
4068
|
+
:xslt_template_name_for_mac_sec,
|
4069
|
+
:router_type_identifier)
|
4070
|
+
SENSITIVE = []
|
4071
|
+
include Aws::Structure
|
4072
|
+
end
|
4073
|
+
|
3872
4074
|
# @note When making an API call, you may pass StartBgpFailoverTestRequest
|
3873
4075
|
# data as a hash:
|
3874
4076
|
#
|
@@ -4133,6 +4335,45 @@ module Aws::DirectConnect
|
|
4133
4335
|
include Aws::Structure
|
4134
4336
|
end
|
4135
4337
|
|
4338
|
+
# @note When making an API call, you may pass UpdateDirectConnectGatewayRequest
|
4339
|
+
# data as a hash:
|
4340
|
+
#
|
4341
|
+
# {
|
4342
|
+
# direct_connect_gateway_id: "DirectConnectGatewayId", # required
|
4343
|
+
# new_direct_connect_gateway_name: "DirectConnectGatewayName", # required
|
4344
|
+
# }
|
4345
|
+
#
|
4346
|
+
# @!attribute [rw] direct_connect_gateway_id
|
4347
|
+
# The ID of the Direct Connect gateway to update.
|
4348
|
+
# @return [String]
|
4349
|
+
#
|
4350
|
+
# @!attribute [rw] new_direct_connect_gateway_name
|
4351
|
+
# The new name for the Direct Connect gateway.
|
4352
|
+
# @return [String]
|
4353
|
+
#
|
4354
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateDirectConnectGatewayRequest AWS API Documentation
|
4355
|
+
#
|
4356
|
+
class UpdateDirectConnectGatewayRequest < Struct.new(
|
4357
|
+
:direct_connect_gateway_id,
|
4358
|
+
:new_direct_connect_gateway_name)
|
4359
|
+
SENSITIVE = []
|
4360
|
+
include Aws::Structure
|
4361
|
+
end
|
4362
|
+
|
4363
|
+
# @!attribute [rw] direct_connect_gateway
|
4364
|
+
# Information about a Direct Connect gateway, which enables you to
|
4365
|
+
# connect virtual interfaces and virtual private gateway or transit
|
4366
|
+
# gateways.
|
4367
|
+
# @return [Types::DirectConnectGateway]
|
4368
|
+
#
|
4369
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateDirectConnectGatewayResponse AWS API Documentation
|
4370
|
+
#
|
4371
|
+
class UpdateDirectConnectGatewayResponse < Struct.new(
|
4372
|
+
:direct_connect_gateway)
|
4373
|
+
SENSITIVE = []
|
4374
|
+
include Aws::Structure
|
4375
|
+
end
|
4376
|
+
|
4136
4377
|
# @note When making an API call, you may pass UpdateLagRequest
|
4137
4378
|
# data as a hash:
|
4138
4379
|
#
|
@@ -4180,6 +4421,8 @@ module Aws::DirectConnect
|
|
4180
4421
|
# {
|
4181
4422
|
# virtual_interface_id: "VirtualInterfaceId", # required
|
4182
4423
|
# mtu: 1,
|
4424
|
+
# enable_site_link: false,
|
4425
|
+
# virtual_interface_name: "VirtualInterfaceName",
|
4183
4426
|
# }
|
4184
4427
|
#
|
4185
4428
|
# @!attribute [rw] virtual_interface_id
|
@@ -4191,11 +4434,21 @@ module Aws::DirectConnect
|
|
4191
4434
|
# are 1500 and 9001. The default value is 1500.
|
4192
4435
|
# @return [Integer]
|
4193
4436
|
#
|
4437
|
+
# @!attribute [rw] enable_site_link
|
4438
|
+
# Indicates whether to enable or disable SiteLink.
|
4439
|
+
# @return [Boolean]
|
4440
|
+
#
|
4441
|
+
# @!attribute [rw] virtual_interface_name
|
4442
|
+
# The name of the virtual private interface.
|
4443
|
+
# @return [String]
|
4444
|
+
#
|
4194
4445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateVirtualInterfaceAttributesRequest AWS API Documentation
|
4195
4446
|
#
|
4196
4447
|
class UpdateVirtualInterfaceAttributesRequest < Struct.new(
|
4197
4448
|
:virtual_interface_id,
|
4198
|
-
:mtu
|
4449
|
+
:mtu,
|
4450
|
+
:enable_site_link,
|
4451
|
+
:virtual_interface_name)
|
4199
4452
|
SENSITIVE = []
|
4200
4453
|
include Aws::Structure
|
4201
4454
|
end
|
@@ -4247,7 +4500,8 @@ module Aws::DirectConnect
|
|
4247
4500
|
# Information about a virtual interface.
|
4248
4501
|
#
|
4249
4502
|
# @!attribute [rw] owner_account
|
4250
|
-
# The ID of the account that owns the virtual
|
4503
|
+
# The ID of the Amazon Web Services account that owns the virtual
|
4504
|
+
# interface.
|
4251
4505
|
# @return [String]
|
4252
4506
|
#
|
4253
4507
|
# @!attribute [rw] virtual_interface_id
|
@@ -4375,7 +4629,8 @@ module Aws::DirectConnect
|
|
4375
4629
|
# @return [Array<Types::BGPPeer>]
|
4376
4630
|
#
|
4377
4631
|
# @!attribute [rw] region
|
4378
|
-
# The Region where the virtual interface is
|
4632
|
+
# The Amazon Web Services Region where the virtual interface is
|
4633
|
+
# located.
|
4379
4634
|
# @return [String]
|
4380
4635
|
#
|
4381
4636
|
# @!attribute [rw] aws_device_v2
|
@@ -4392,6 +4647,10 @@ module Aws::DirectConnect
|
|
4392
4647
|
# The tags associated with the virtual interface.
|
4393
4648
|
# @return [Array<Types::Tag>]
|
4394
4649
|
#
|
4650
|
+
# @!attribute [rw] site_link_enabled
|
4651
|
+
# Indicates whether SiteLink is enabled.
|
4652
|
+
# @return [Boolean]
|
4653
|
+
#
|
4395
4654
|
# @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/VirtualInterface AWS API Documentation
|
4396
4655
|
#
|
4397
4656
|
class VirtualInterface < Struct.new(
|
@@ -4419,7 +4678,8 @@ module Aws::DirectConnect
|
|
4419
4678
|
:region,
|
4420
4679
|
:aws_device_v2,
|
4421
4680
|
:aws_logical_device_id,
|
4422
|
-
:tags
|
4681
|
+
:tags,
|
4682
|
+
:site_link_enabled)
|
4423
4683
|
SENSITIVE = []
|
4424
4684
|
include Aws::Structure
|
4425
4685
|
end
|
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.51.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-12-01 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
|