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.
data/sig/client.rbs CHANGED
@@ -184,6 +184,7 @@ module Aws
184
184
  def virtual_interface_name: () -> ::String
185
185
  def vlan: () -> ::Integer
186
186
  def asn: () -> ::Integer
187
+ def asn_long: () -> ::Integer
187
188
  def amazon_side_asn: () -> ::Integer
188
189
  def auth_key: () -> ::String
189
190
  def amazon_address: () -> ::String
@@ -210,7 +211,8 @@ module Aws
210
211
  new_private_virtual_interface_allocation: {
211
212
  virtual_interface_name: ::String,
212
213
  vlan: ::Integer,
213
- asn: ::Integer,
214
+ asn: ::Integer?,
215
+ asn_long: ::Integer?,
214
216
  mtu: ::Integer?,
215
217
  auth_key: ::String?,
216
218
  amazon_address: ::String?,
@@ -236,6 +238,7 @@ module Aws
236
238
  def virtual_interface_name: () -> ::String
237
239
  def vlan: () -> ::Integer
238
240
  def asn: () -> ::Integer
241
+ def asn_long: () -> ::Integer
239
242
  def amazon_side_asn: () -> ::Integer
240
243
  def auth_key: () -> ::String
241
244
  def amazon_address: () -> ::String
@@ -262,7 +265,8 @@ module Aws
262
265
  new_public_virtual_interface_allocation: {
263
266
  virtual_interface_name: ::String,
264
267
  vlan: ::Integer,
265
- asn: ::Integer,
268
+ asn: ::Integer?,
269
+ asn_long: ::Integer?,
266
270
  auth_key: ::String?,
267
271
  amazon_address: ::String?,
268
272
  customer_address: ::String?,
@@ -294,6 +298,7 @@ module Aws
294
298
  virtual_interface_name: ::String?,
295
299
  vlan: ::Integer?,
296
300
  asn: ::Integer?,
301
+ asn_long: ::Integer?,
297
302
  mtu: ::Integer?,
298
303
  auth_key: ::String?,
299
304
  amazon_address: ::String?,
@@ -399,6 +404,7 @@ module Aws
399
404
  def virtual_interface_name: () -> ::String
400
405
  def vlan: () -> ::Integer
401
406
  def asn: () -> ::Integer
407
+ def asn_long: () -> ::Integer
402
408
  def amazon_side_asn: () -> ::Integer
403
409
  def auth_key: () -> ::String
404
410
  def amazon_address: () -> ::String
@@ -487,6 +493,7 @@ module Aws
487
493
  ?virtual_interface_id: ::String,
488
494
  ?new_bgp_peer: {
489
495
  asn: ::Integer?,
496
+ asn_long: ::Integer?,
490
497
  auth_key: ::String?,
491
498
  address_family: ("ipv4" | "ipv6")?,
492
499
  amazon_address: ::String?,
@@ -691,6 +698,7 @@ module Aws
691
698
  def virtual_interface_name: () -> ::String
692
699
  def vlan: () -> ::Integer
693
700
  def asn: () -> ::Integer
701
+ def asn_long: () -> ::Integer
694
702
  def amazon_side_asn: () -> ::Integer
695
703
  def auth_key: () -> ::String
696
704
  def amazon_address: () -> ::String
@@ -716,7 +724,8 @@ module Aws
716
724
  new_private_virtual_interface: {
717
725
  virtual_interface_name: ::String,
718
726
  vlan: ::Integer,
719
- asn: ::Integer,
727
+ asn: ::Integer?,
728
+ asn_long: ::Integer?,
720
729
  mtu: ::Integer?,
721
730
  auth_key: ::String?,
722
731
  amazon_address: ::String?,
@@ -745,6 +754,7 @@ module Aws
745
754
  def virtual_interface_name: () -> ::String
746
755
  def vlan: () -> ::Integer
747
756
  def asn: () -> ::Integer
757
+ def asn_long: () -> ::Integer
748
758
  def amazon_side_asn: () -> ::Integer
749
759
  def auth_key: () -> ::String
750
760
  def amazon_address: () -> ::String
@@ -770,7 +780,8 @@ module Aws
770
780
  new_public_virtual_interface: {
771
781
  virtual_interface_name: ::String,
772
782
  vlan: ::Integer,
773
- asn: ::Integer,
783
+ asn: ::Integer?,
784
+ asn_long: ::Integer?,
774
785
  auth_key: ::String?,
775
786
  amazon_address: ::String?,
776
787
  customer_address: ::String?,
@@ -801,6 +812,7 @@ module Aws
801
812
  virtual_interface_name: ::String?,
802
813
  vlan: ::Integer?,
803
814
  asn: ::Integer?,
815
+ asn_long: ::Integer?,
804
816
  mtu: ::Integer?,
805
817
  auth_key: ::String?,
806
818
  amazon_address: ::String?,
@@ -826,6 +838,7 @@ module Aws
826
838
  def delete_bgp_peer: (
827
839
  ?virtual_interface_id: ::String,
828
840
  ?asn: ::Integer,
841
+ ?asn_long: ::Integer,
829
842
  ?customer_address: ::String,
830
843
  ?bgp_peer_id: ::String
831
844
  ) -> _DeleteBGPPeerResponseSuccess
@@ -960,16 +973,20 @@ module Aws
960
973
  interface _DescribeConnectionsResponseSuccess
961
974
  include ::Seahorse::Client::_ResponseSuccess[Types::Connections]
962
975
  def connections: () -> ::Array[Types::Connection]
976
+ def next_token: () -> ::String
963
977
  end
964
978
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_connections-instance_method
965
979
  def describe_connections: (
966
- ?connection_id: ::String
980
+ ?connection_id: ::String,
981
+ ?max_results: ::Integer,
982
+ ?next_token: ::String
967
983
  ) -> _DescribeConnectionsResponseSuccess
968
984
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConnectionsResponseSuccess
969
985
 
970
986
  interface _DescribeConnectionsOnInterconnectResponseSuccess
971
987
  include ::Seahorse::Client::_ResponseSuccess[Types::Connections]
972
988
  def connections: () -> ::Array[Types::Connection]
989
+ def next_token: () -> ::String
973
990
  end
974
991
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_connections_on_interconnect-instance_method
975
992
  def describe_connections_on_interconnect: (
@@ -1047,10 +1064,13 @@ module Aws
1047
1064
  interface _DescribeHostedConnectionsResponseSuccess
1048
1065
  include ::Seahorse::Client::_ResponseSuccess[Types::Connections]
1049
1066
  def connections: () -> ::Array[Types::Connection]
1067
+ def next_token: () -> ::String
1050
1068
  end
1051
1069
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_hosted_connections-instance_method
1052
1070
  def describe_hosted_connections: (
1053
- connection_id: ::String
1071
+ connection_id: ::String,
1072
+ ?max_results: ::Integer,
1073
+ ?next_token: ::String
1054
1074
  ) -> _DescribeHostedConnectionsResponseSuccess
1055
1075
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeHostedConnectionsResponseSuccess
1056
1076
 
@@ -1069,20 +1089,26 @@ module Aws
1069
1089
  interface _DescribeInterconnectsResponseSuccess
1070
1090
  include ::Seahorse::Client::_ResponseSuccess[Types::Interconnects]
1071
1091
  def interconnects: () -> ::Array[Types::Interconnect]
1092
+ def next_token: () -> ::String
1072
1093
  end
1073
1094
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_interconnects-instance_method
1074
1095
  def describe_interconnects: (
1075
- ?interconnect_id: ::String
1096
+ ?interconnect_id: ::String,
1097
+ ?max_results: ::Integer,
1098
+ ?next_token: ::String
1076
1099
  ) -> _DescribeInterconnectsResponseSuccess
1077
1100
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInterconnectsResponseSuccess
1078
1101
 
1079
1102
  interface _DescribeLagsResponseSuccess
1080
1103
  include ::Seahorse::Client::_ResponseSuccess[Types::Lags]
1081
1104
  def lags: () -> ::Array[Types::Lag]
1105
+ def next_token: () -> ::String
1082
1106
  end
1083
1107
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_lags-instance_method
1084
1108
  def describe_lags: (
1085
- ?lag_id: ::String
1109
+ ?lag_id: ::String,
1110
+ ?max_results: ::Integer,
1111
+ ?next_token: ::String
1086
1112
  ) -> _DescribeLagsResponseSuccess
1087
1113
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLagsResponseSuccess
1088
1114
 
@@ -1142,11 +1168,14 @@ module Aws
1142
1168
  interface _DescribeVirtualInterfacesResponseSuccess
1143
1169
  include ::Seahorse::Client::_ResponseSuccess[Types::VirtualInterfaces]
1144
1170
  def virtual_interfaces: () -> ::Array[Types::VirtualInterface]
1171
+ def next_token: () -> ::String
1145
1172
  end
1146
1173
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectConnect/Client.html#describe_virtual_interfaces-instance_method
1147
1174
  def describe_virtual_interfaces: (
1148
1175
  ?connection_id: ::String,
1149
- ?virtual_interface_id: ::String
1176
+ ?virtual_interface_id: ::String,
1177
+ ?max_results: ::Integer,
1178
+ ?next_token: ::String
1150
1179
  ) -> _DescribeVirtualInterfacesResponseSuccess
1151
1180
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVirtualInterfacesResponseSuccess
1152
1181
 
@@ -1366,6 +1395,7 @@ module Aws
1366
1395
  def virtual_interface_name: () -> ::String
1367
1396
  def vlan: () -> ::Integer
1368
1397
  def asn: () -> ::Integer
1398
+ def asn_long: () -> ::Integer
1369
1399
  def amazon_side_asn: () -> ::Integer
1370
1400
  def auth_key: () -> ::String
1371
1401
  def amazon_address: () -> ::String
data/sig/types.rbs CHANGED
@@ -116,6 +116,7 @@ module Aws::DirectConnect
116
116
  class BGPPeer
117
117
  attr_accessor bgp_peer_id: ::String
118
118
  attr_accessor asn: ::Integer
119
+ attr_accessor asn_long: ::Integer
119
120
  attr_accessor auth_key: ::String
120
121
  attr_accessor address_family: ("ipv4" | "ipv6")
121
122
  attr_accessor amazon_address: ::String
@@ -209,6 +210,7 @@ module Aws::DirectConnect
209
210
 
210
211
  class Connections
211
212
  attr_accessor connections: ::Array[Types::Connection]
213
+ attr_accessor next_token: ::String
212
214
  SENSITIVE: []
213
215
  end
214
216
 
@@ -329,6 +331,7 @@ module Aws::DirectConnect
329
331
  class DeleteBGPPeerRequest
330
332
  attr_accessor virtual_interface_id: ::String
331
333
  attr_accessor asn: ::Integer
334
+ attr_accessor asn_long: ::Integer
332
335
  attr_accessor customer_address: ::String
333
336
  attr_accessor bgp_peer_id: ::String
334
337
  SENSITIVE: []
@@ -420,6 +423,8 @@ module Aws::DirectConnect
420
423
 
421
424
  class DescribeConnectionsRequest
422
425
  attr_accessor connection_id: ::String
426
+ attr_accessor max_results: ::Integer
427
+ attr_accessor next_token: ::String
423
428
  SENSITIVE: []
424
429
  end
425
430
 
@@ -489,6 +494,8 @@ module Aws::DirectConnect
489
494
 
490
495
  class DescribeHostedConnectionsRequest
491
496
  attr_accessor connection_id: ::String
497
+ attr_accessor max_results: ::Integer
498
+ attr_accessor next_token: ::String
492
499
  SENSITIVE: []
493
500
  end
494
501
 
@@ -506,11 +513,15 @@ module Aws::DirectConnect
506
513
 
507
514
  class DescribeInterconnectsRequest
508
515
  attr_accessor interconnect_id: ::String
516
+ attr_accessor max_results: ::Integer
517
+ attr_accessor next_token: ::String
509
518
  SENSITIVE: []
510
519
  end
511
520
 
512
521
  class DescribeLagsRequest
513
522
  attr_accessor lag_id: ::String
523
+ attr_accessor max_results: ::Integer
524
+ attr_accessor next_token: ::String
514
525
  SENSITIVE: []
515
526
  end
516
527
 
@@ -548,6 +559,8 @@ module Aws::DirectConnect
548
559
  class DescribeVirtualInterfacesRequest
549
560
  attr_accessor connection_id: ::String
550
561
  attr_accessor virtual_interface_id: ::String
562
+ attr_accessor max_results: ::Integer
563
+ attr_accessor next_token: ::String
551
564
  SENSITIVE: []
552
565
  end
553
566
 
@@ -655,6 +668,7 @@ module Aws::DirectConnect
655
668
 
656
669
  class Interconnects
657
670
  attr_accessor interconnects: ::Array[Types::Interconnect]
671
+ attr_accessor next_token: ::String
658
672
  SENSITIVE: []
659
673
  end
660
674
 
@@ -685,6 +699,7 @@ module Aws::DirectConnect
685
699
 
686
700
  class Lags
687
701
  attr_accessor lags: ::Array[Types::Lag]
702
+ attr_accessor next_token: ::String
688
703
  SENSITIVE: []
689
704
  end
690
705
 
@@ -735,6 +750,7 @@ module Aws::DirectConnect
735
750
 
736
751
  class NewBGPPeer
737
752
  attr_accessor asn: ::Integer
753
+ attr_accessor asn_long: ::Integer
738
754
  attr_accessor auth_key: ::String
739
755
  attr_accessor address_family: ("ipv4" | "ipv6")
740
756
  attr_accessor amazon_address: ::String
@@ -746,6 +762,7 @@ module Aws::DirectConnect
746
762
  attr_accessor virtual_interface_name: ::String
747
763
  attr_accessor vlan: ::Integer
748
764
  attr_accessor asn: ::Integer
765
+ attr_accessor asn_long: ::Integer
749
766
  attr_accessor mtu: ::Integer
750
767
  attr_accessor auth_key: ::String
751
768
  attr_accessor amazon_address: ::String
@@ -762,6 +779,7 @@ module Aws::DirectConnect
762
779
  attr_accessor virtual_interface_name: ::String
763
780
  attr_accessor vlan: ::Integer
764
781
  attr_accessor asn: ::Integer
782
+ attr_accessor asn_long: ::Integer
765
783
  attr_accessor mtu: ::Integer
766
784
  attr_accessor auth_key: ::String
767
785
  attr_accessor amazon_address: ::String
@@ -775,6 +793,7 @@ module Aws::DirectConnect
775
793
  attr_accessor virtual_interface_name: ::String
776
794
  attr_accessor vlan: ::Integer
777
795
  attr_accessor asn: ::Integer
796
+ attr_accessor asn_long: ::Integer
778
797
  attr_accessor auth_key: ::String
779
798
  attr_accessor amazon_address: ::String
780
799
  attr_accessor customer_address: ::String
@@ -788,6 +807,7 @@ module Aws::DirectConnect
788
807
  attr_accessor virtual_interface_name: ::String
789
808
  attr_accessor vlan: ::Integer
790
809
  attr_accessor asn: ::Integer
810
+ attr_accessor asn_long: ::Integer
791
811
  attr_accessor auth_key: ::String
792
812
  attr_accessor amazon_address: ::String
793
813
  attr_accessor customer_address: ::String
@@ -801,6 +821,7 @@ module Aws::DirectConnect
801
821
  attr_accessor virtual_interface_name: ::String
802
822
  attr_accessor vlan: ::Integer
803
823
  attr_accessor asn: ::Integer
824
+ attr_accessor asn_long: ::Integer
804
825
  attr_accessor mtu: ::Integer
805
826
  attr_accessor auth_key: ::String
806
827
  attr_accessor amazon_address: ::String
@@ -816,6 +837,7 @@ module Aws::DirectConnect
816
837
  attr_accessor virtual_interface_name: ::String
817
838
  attr_accessor vlan: ::Integer
818
839
  attr_accessor asn: ::Integer
840
+ attr_accessor asn_long: ::Integer
819
841
  attr_accessor mtu: ::Integer
820
842
  attr_accessor auth_key: ::String
821
843
  attr_accessor amazon_address: ::String
@@ -961,6 +983,7 @@ module Aws::DirectConnect
961
983
  attr_accessor virtual_interface_name: ::String
962
984
  attr_accessor vlan: ::Integer
963
985
  attr_accessor asn: ::Integer
986
+ attr_accessor asn_long: ::Integer
964
987
  attr_accessor amazon_side_asn: ::Integer
965
988
  attr_accessor auth_key: ::String
966
989
  attr_accessor amazon_address: ::String
@@ -996,6 +1019,7 @@ module Aws::DirectConnect
996
1019
 
997
1020
  class VirtualInterfaces
998
1021
  attr_accessor virtual_interfaces: ::Array[Types::VirtualInterface]
1022
+ attr_accessor next_token: ::String
999
1023
  SENSITIVE: []
1000
1024
  end
1001
1025
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-directconnect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.96.0
4
+ version: 1.97.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services