aws-sdk-directconnect 1.96.0 → 1.97.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-directconnect/client.rb +153 -6
- data/lib/aws-sdk-directconnect/client_api.rb +28 -4
- data/lib/aws-sdk-directconnect/types.rb +391 -37
- data/lib/aws-sdk-directconnect.rb +1 -1
- data/sig/client.rbs +39 -9
- data/sig/types.rbs +24 -0
- metadata +1 -1
@@ -351,6 +351,7 @@ module Aws::DirectConnect
|
|
351
351
|
|
352
352
|
BGPPeer.add_member(:bgp_peer_id, Shapes::ShapeRef.new(shape: BGPPeerId, location_name: "bgpPeerId"))
|
353
353
|
BGPPeer.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
|
354
|
+
BGPPeer.add_member(:asn_long, Shapes::ShapeRef.new(shape: LongAsn, location_name: "asnLong"))
|
354
355
|
BGPPeer.add_member(:auth_key, Shapes::ShapeRef.new(shape: BGPAuthKey, location_name: "authKey"))
|
355
356
|
BGPPeer.add_member(:address_family, Shapes::ShapeRef.new(shape: AddressFamily, location_name: "addressFamily"))
|
356
357
|
BGPPeer.add_member(:amazon_address, Shapes::ShapeRef.new(shape: AmazonAddress, location_name: "amazonAddress"))
|
@@ -426,6 +427,7 @@ module Aws::DirectConnect
|
|
426
427
|
ConnectionList.member = Shapes::ShapeRef.new(shape: Connection)
|
427
428
|
|
428
429
|
Connections.add_member(:connections, Shapes::ShapeRef.new(shape: ConnectionList, location_name: "connections"))
|
430
|
+
Connections.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
429
431
|
Connections.struct_class = Types::Connections
|
430
432
|
|
431
433
|
CreateBGPPeerRequest.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, location_name: "virtualInterfaceId"))
|
@@ -512,6 +514,7 @@ module Aws::DirectConnect
|
|
512
514
|
|
513
515
|
DeleteBGPPeerRequest.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, location_name: "virtualInterfaceId"))
|
514
516
|
DeleteBGPPeerRequest.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
|
517
|
+
DeleteBGPPeerRequest.add_member(:asn_long, Shapes::ShapeRef.new(shape: LongAsn, location_name: "asnLong"))
|
515
518
|
DeleteBGPPeerRequest.add_member(:customer_address, Shapes::ShapeRef.new(shape: CustomerAddress, location_name: "customerAddress"))
|
516
519
|
DeleteBGPPeerRequest.add_member(:bgp_peer_id, Shapes::ShapeRef.new(shape: BGPPeerId, location_name: "bgpPeerId"))
|
517
520
|
DeleteBGPPeerRequest.struct_class = Types::DeleteBGPPeerRequest
|
@@ -569,6 +572,8 @@ module Aws::DirectConnect
|
|
569
572
|
DescribeConnectionsOnInterconnectRequest.struct_class = Types::DescribeConnectionsOnInterconnectRequest
|
570
573
|
|
571
574
|
DescribeConnectionsRequest.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, location_name: "connectionId"))
|
575
|
+
DescribeConnectionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultSetSize, location_name: "maxResults"))
|
576
|
+
DescribeConnectionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
572
577
|
DescribeConnectionsRequest.struct_class = Types::DescribeConnectionsRequest
|
573
578
|
|
574
579
|
DescribeCustomerMetadataResponse.add_member(:agreements, Shapes::ShapeRef.new(shape: AgreementList, location_name: "agreements"))
|
@@ -618,6 +623,8 @@ module Aws::DirectConnect
|
|
618
623
|
DescribeDirectConnectGatewaysResult.struct_class = Types::DescribeDirectConnectGatewaysResult
|
619
624
|
|
620
625
|
DescribeHostedConnectionsRequest.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
|
626
|
+
DescribeHostedConnectionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultSetSize, location_name: "maxResults"))
|
627
|
+
DescribeHostedConnectionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
621
628
|
DescribeHostedConnectionsRequest.struct_class = Types::DescribeHostedConnectionsRequest
|
622
629
|
|
623
630
|
DescribeInterconnectLoaRequest.add_member(:interconnect_id, Shapes::ShapeRef.new(shape: InterconnectId, required: true, location_name: "interconnectId"))
|
@@ -629,9 +636,13 @@ module Aws::DirectConnect
|
|
629
636
|
DescribeInterconnectLoaResponse.struct_class = Types::DescribeInterconnectLoaResponse
|
630
637
|
|
631
638
|
DescribeInterconnectsRequest.add_member(:interconnect_id, Shapes::ShapeRef.new(shape: InterconnectId, location_name: "interconnectId"))
|
639
|
+
DescribeInterconnectsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultSetSize, location_name: "maxResults"))
|
640
|
+
DescribeInterconnectsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
632
641
|
DescribeInterconnectsRequest.struct_class = Types::DescribeInterconnectsRequest
|
633
642
|
|
634
643
|
DescribeLagsRequest.add_member(:lag_id, Shapes::ShapeRef.new(shape: LagId, location_name: "lagId"))
|
644
|
+
DescribeLagsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultSetSize, location_name: "maxResults"))
|
645
|
+
DescribeLagsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
635
646
|
DescribeLagsRequest.struct_class = Types::DescribeLagsRequest
|
636
647
|
|
637
648
|
DescribeLoaRequest.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
|
@@ -657,6 +668,8 @@ module Aws::DirectConnect
|
|
657
668
|
|
658
669
|
DescribeVirtualInterfacesRequest.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, location_name: "connectionId"))
|
659
670
|
DescribeVirtualInterfacesRequest.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, location_name: "virtualInterfaceId"))
|
671
|
+
DescribeVirtualInterfacesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultSetSize, location_name: "maxResults"))
|
672
|
+
DescribeVirtualInterfacesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
660
673
|
DescribeVirtualInterfacesRequest.struct_class = Types::DescribeVirtualInterfacesRequest
|
661
674
|
|
662
675
|
DirectConnectClientException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -751,6 +764,7 @@ module Aws::DirectConnect
|
|
751
764
|
InterconnectList.member = Shapes::ShapeRef.new(shape: Interconnect)
|
752
765
|
|
753
766
|
Interconnects.add_member(:interconnects, Shapes::ShapeRef.new(shape: InterconnectList, location_name: "interconnects"))
|
767
|
+
Interconnects.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
754
768
|
Interconnects.struct_class = Types::Interconnects
|
755
769
|
|
756
770
|
Lag.add_member(:connections_bandwidth, Shapes::ShapeRef.new(shape: Bandwidth, location_name: "connectionsBandwidth"))
|
@@ -779,6 +793,7 @@ module Aws::DirectConnect
|
|
779
793
|
LagList.member = Shapes::ShapeRef.new(shape: Lag)
|
780
794
|
|
781
795
|
Lags.add_member(:lags, Shapes::ShapeRef.new(shape: LagList, location_name: "lags"))
|
796
|
+
Lags.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
782
797
|
Lags.struct_class = Types::Lags
|
783
798
|
|
784
799
|
ListVirtualInterfaceTestHistoryRequest.add_member(:test_id, Shapes::ShapeRef.new(shape: TestId, location_name: "testId"))
|
@@ -819,6 +834,7 @@ module Aws::DirectConnect
|
|
819
834
|
MacSecKeyList.member = Shapes::ShapeRef.new(shape: MacSecKey)
|
820
835
|
|
821
836
|
NewBGPPeer.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
|
837
|
+
NewBGPPeer.add_member(:asn_long, Shapes::ShapeRef.new(shape: LongAsn, location_name: "asnLong"))
|
822
838
|
NewBGPPeer.add_member(:auth_key, Shapes::ShapeRef.new(shape: BGPAuthKey, location_name: "authKey"))
|
823
839
|
NewBGPPeer.add_member(:address_family, Shapes::ShapeRef.new(shape: AddressFamily, location_name: "addressFamily"))
|
824
840
|
NewBGPPeer.add_member(:amazon_address, Shapes::ShapeRef.new(shape: AmazonAddress, location_name: "amazonAddress"))
|
@@ -827,7 +843,8 @@ module Aws::DirectConnect
|
|
827
843
|
|
828
844
|
NewPrivateVirtualInterface.add_member(:virtual_interface_name, Shapes::ShapeRef.new(shape: VirtualInterfaceName, required: true, location_name: "virtualInterfaceName"))
|
829
845
|
NewPrivateVirtualInterface.add_member(:vlan, Shapes::ShapeRef.new(shape: VLAN, required: true, location_name: "vlan"))
|
830
|
-
NewPrivateVirtualInterface.add_member(:asn, Shapes::ShapeRef.new(shape: ASN,
|
846
|
+
NewPrivateVirtualInterface.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
|
847
|
+
NewPrivateVirtualInterface.add_member(:asn_long, Shapes::ShapeRef.new(shape: LongAsn, location_name: "asnLong"))
|
831
848
|
NewPrivateVirtualInterface.add_member(:mtu, Shapes::ShapeRef.new(shape: MTU, location_name: "mtu"))
|
832
849
|
NewPrivateVirtualInterface.add_member(:auth_key, Shapes::ShapeRef.new(shape: BGPAuthKey, location_name: "authKey"))
|
833
850
|
NewPrivateVirtualInterface.add_member(:amazon_address, Shapes::ShapeRef.new(shape: AmazonAddress, location_name: "amazonAddress"))
|
@@ -841,7 +858,8 @@ module Aws::DirectConnect
|
|
841
858
|
|
842
859
|
NewPrivateVirtualInterfaceAllocation.add_member(:virtual_interface_name, Shapes::ShapeRef.new(shape: VirtualInterfaceName, required: true, location_name: "virtualInterfaceName"))
|
843
860
|
NewPrivateVirtualInterfaceAllocation.add_member(:vlan, Shapes::ShapeRef.new(shape: VLAN, required: true, location_name: "vlan"))
|
844
|
-
NewPrivateVirtualInterfaceAllocation.add_member(:asn, Shapes::ShapeRef.new(shape: ASN,
|
861
|
+
NewPrivateVirtualInterfaceAllocation.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
|
862
|
+
NewPrivateVirtualInterfaceAllocation.add_member(:asn_long, Shapes::ShapeRef.new(shape: LongAsn, location_name: "asnLong"))
|
845
863
|
NewPrivateVirtualInterfaceAllocation.add_member(:mtu, Shapes::ShapeRef.new(shape: MTU, location_name: "mtu"))
|
846
864
|
NewPrivateVirtualInterfaceAllocation.add_member(:auth_key, Shapes::ShapeRef.new(shape: BGPAuthKey, location_name: "authKey"))
|
847
865
|
NewPrivateVirtualInterfaceAllocation.add_member(:amazon_address, Shapes::ShapeRef.new(shape: AmazonAddress, location_name: "amazonAddress"))
|
@@ -852,7 +870,8 @@ module Aws::DirectConnect
|
|
852
870
|
|
853
871
|
NewPublicVirtualInterface.add_member(:virtual_interface_name, Shapes::ShapeRef.new(shape: VirtualInterfaceName, required: true, location_name: "virtualInterfaceName"))
|
854
872
|
NewPublicVirtualInterface.add_member(:vlan, Shapes::ShapeRef.new(shape: VLAN, required: true, location_name: "vlan"))
|
855
|
-
NewPublicVirtualInterface.add_member(:asn, Shapes::ShapeRef.new(shape: ASN,
|
873
|
+
NewPublicVirtualInterface.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
|
874
|
+
NewPublicVirtualInterface.add_member(:asn_long, Shapes::ShapeRef.new(shape: LongAsn, location_name: "asnLong"))
|
856
875
|
NewPublicVirtualInterface.add_member(:auth_key, Shapes::ShapeRef.new(shape: BGPAuthKey, location_name: "authKey"))
|
857
876
|
NewPublicVirtualInterface.add_member(:amazon_address, Shapes::ShapeRef.new(shape: AmazonAddress, location_name: "amazonAddress"))
|
858
877
|
NewPublicVirtualInterface.add_member(:customer_address, Shapes::ShapeRef.new(shape: CustomerAddress, location_name: "customerAddress"))
|
@@ -863,7 +882,8 @@ module Aws::DirectConnect
|
|
863
882
|
|
864
883
|
NewPublicVirtualInterfaceAllocation.add_member(:virtual_interface_name, Shapes::ShapeRef.new(shape: VirtualInterfaceName, required: true, location_name: "virtualInterfaceName"))
|
865
884
|
NewPublicVirtualInterfaceAllocation.add_member(:vlan, Shapes::ShapeRef.new(shape: VLAN, required: true, location_name: "vlan"))
|
866
|
-
NewPublicVirtualInterfaceAllocation.add_member(:asn, Shapes::ShapeRef.new(shape: ASN,
|
885
|
+
NewPublicVirtualInterfaceAllocation.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
|
886
|
+
NewPublicVirtualInterfaceAllocation.add_member(:asn_long, Shapes::ShapeRef.new(shape: LongAsn, location_name: "asnLong"))
|
867
887
|
NewPublicVirtualInterfaceAllocation.add_member(:auth_key, Shapes::ShapeRef.new(shape: BGPAuthKey, location_name: "authKey"))
|
868
888
|
NewPublicVirtualInterfaceAllocation.add_member(:amazon_address, Shapes::ShapeRef.new(shape: AmazonAddress, location_name: "amazonAddress"))
|
869
889
|
NewPublicVirtualInterfaceAllocation.add_member(:customer_address, Shapes::ShapeRef.new(shape: CustomerAddress, location_name: "customerAddress"))
|
@@ -875,6 +895,7 @@ module Aws::DirectConnect
|
|
875
895
|
NewTransitVirtualInterface.add_member(:virtual_interface_name, Shapes::ShapeRef.new(shape: VirtualInterfaceName, location_name: "virtualInterfaceName"))
|
876
896
|
NewTransitVirtualInterface.add_member(:vlan, Shapes::ShapeRef.new(shape: VLAN, location_name: "vlan"))
|
877
897
|
NewTransitVirtualInterface.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
|
898
|
+
NewTransitVirtualInterface.add_member(:asn_long, Shapes::ShapeRef.new(shape: LongAsn, location_name: "asnLong"))
|
878
899
|
NewTransitVirtualInterface.add_member(:mtu, Shapes::ShapeRef.new(shape: MTU, location_name: "mtu"))
|
879
900
|
NewTransitVirtualInterface.add_member(:auth_key, Shapes::ShapeRef.new(shape: BGPAuthKey, location_name: "authKey"))
|
880
901
|
NewTransitVirtualInterface.add_member(:amazon_address, Shapes::ShapeRef.new(shape: AmazonAddress, location_name: "amazonAddress"))
|
@@ -888,6 +909,7 @@ module Aws::DirectConnect
|
|
888
909
|
NewTransitVirtualInterfaceAllocation.add_member(:virtual_interface_name, Shapes::ShapeRef.new(shape: VirtualInterfaceName, location_name: "virtualInterfaceName"))
|
889
910
|
NewTransitVirtualInterfaceAllocation.add_member(:vlan, Shapes::ShapeRef.new(shape: VLAN, location_name: "vlan"))
|
890
911
|
NewTransitVirtualInterfaceAllocation.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
|
912
|
+
NewTransitVirtualInterfaceAllocation.add_member(:asn_long, Shapes::ShapeRef.new(shape: LongAsn, location_name: "asnLong"))
|
891
913
|
NewTransitVirtualInterfaceAllocation.add_member(:mtu, Shapes::ShapeRef.new(shape: MTU, location_name: "mtu"))
|
892
914
|
NewTransitVirtualInterfaceAllocation.add_member(:auth_key, Shapes::ShapeRef.new(shape: BGPAuthKey, location_name: "authKey"))
|
893
915
|
NewTransitVirtualInterfaceAllocation.add_member(:amazon_address, Shapes::ShapeRef.new(shape: AmazonAddress, location_name: "amazonAddress"))
|
@@ -1004,6 +1026,7 @@ module Aws::DirectConnect
|
|
1004
1026
|
VirtualInterface.add_member(:virtual_interface_name, Shapes::ShapeRef.new(shape: VirtualInterfaceName, location_name: "virtualInterfaceName"))
|
1005
1027
|
VirtualInterface.add_member(:vlan, Shapes::ShapeRef.new(shape: VLAN, location_name: "vlan"))
|
1006
1028
|
VirtualInterface.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
|
1029
|
+
VirtualInterface.add_member(:asn_long, Shapes::ShapeRef.new(shape: LongAsn, location_name: "asnLong"))
|
1007
1030
|
VirtualInterface.add_member(:amazon_side_asn, Shapes::ShapeRef.new(shape: LongAsn, location_name: "amazonSideAsn"))
|
1008
1031
|
VirtualInterface.add_member(:auth_key, Shapes::ShapeRef.new(shape: BGPAuthKey, location_name: "authKey"))
|
1009
1032
|
VirtualInterface.add_member(:amazon_address, Shapes::ShapeRef.new(shape: AmazonAddress, location_name: "amazonAddress"))
|
@@ -1039,6 +1062,7 @@ module Aws::DirectConnect
|
|
1039
1062
|
VirtualInterfaceTestHistoryList.member = Shapes::ShapeRef.new(shape: VirtualInterfaceTestHistory)
|
1040
1063
|
|
1041
1064
|
VirtualInterfaces.add_member(:virtual_interfaces, Shapes::ShapeRef.new(shape: VirtualInterfaceList, location_name: "virtualInterfaces"))
|
1065
|
+
VirtualInterfaces.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
1042
1066
|
VirtualInterfaces.struct_class = Types::VirtualInterfaces
|
1043
1067
|
|
1044
1068
|
|