aws-sdk-directconnect 1.8.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a99fa9624f5aeb4016dad28608a7de3e687ad2df
4
- data.tar.gz: 3badfc1e5e24910793835efb58da4c20f12847a9
3
+ metadata.gz: 3f73c223d794b5f84b111ea185d188bd32642872
4
+ data.tar.gz: fa50722e4cb557dc6b4d26fd578443e67c4b5715
5
5
  SHA512:
6
- metadata.gz: 81b2bfcb1afa8c592350b72e7b70d83bf581e91a9d0a71f6762e457e97ac374d0be8022653c034ef1f6e7bceba186d973107937fd034f016d6f90cfffa2dd97d
7
- data.tar.gz: 2f0ebf55d6db8b8bf108bd96ea8b0da621c1aae6ed88b4128f840e98e1052259ba09ebb8bd3303d8c696b1753583cfa69616f603dc3c2375de5f9108b3ea46ec
6
+ metadata.gz: 9b7ee8620edf08608bb440d06baded94586f6528499dd6fb78896728b21f375f2ca4c785484103ae17709c5d8bd64ee61fb35676d42cd8c4427025607cddaf84
7
+ data.tar.gz: 4fc215fa3bd6cd91de39a99b9decf964efefe2c1f6ba2c7e88ac30cc07c540df5b7d93e559da15fe59a1f8f8e2b89b1615b7e0754100429115ccf6bab031ac23
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-directconnect/customizations'
42
42
  # @service
43
43
  module Aws::DirectConnect
44
44
 
45
- GEM_VERSION = '1.8.0'
45
+ GEM_VERSION = '1.9.0'
46
46
 
47
47
  end
@@ -15,6 +15,7 @@ require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
15
15
  require 'aws-sdk-core/plugins/retry_errors.rb'
16
16
  require 'aws-sdk-core/plugins/global_configuration.rb'
17
17
  require 'aws-sdk-core/plugins/regional_endpoint.rb'
18
+ require 'aws-sdk-core/plugins/endpoint_discovery.rb'
18
19
  require 'aws-sdk-core/plugins/response_paging.rb'
19
20
  require 'aws-sdk-core/plugins/stub_responses.rb'
20
21
  require 'aws-sdk-core/plugins/idempotency_token.rb'
@@ -45,6 +46,7 @@ module Aws::DirectConnect
45
46
  add_plugin(Aws::Plugins::RetryErrors)
46
47
  add_plugin(Aws::Plugins::GlobalConfiguration)
47
48
  add_plugin(Aws::Plugins::RegionalEndpoint)
49
+ add_plugin(Aws::Plugins::EndpointDiscovery)
48
50
  add_plugin(Aws::Plugins::ResponsePaging)
49
51
  add_plugin(Aws::Plugins::StubResponses)
50
52
  add_plugin(Aws::Plugins::IdempotencyToken)
@@ -98,6 +100,10 @@ module Aws::DirectConnect
98
100
  #
99
101
  # @option options [String] :access_key_id
100
102
  #
103
+ # @option options [Boolean] :active_endpoint_cache (false)
104
+ # When set to `true`, a thread polling for endpoints will be running in
105
+ # the background every 60 secs (default). Defaults to `false`.
106
+ #
101
107
  # @option options [Boolean] :client_side_monitoring (false)
102
108
  # When `true`, client-side metrics will be collected for all API requests from
103
109
  # this client.
@@ -123,6 +129,21 @@ module Aws::DirectConnect
123
129
  # option. You should only configure an `:endpoint` when connecting
124
130
  # to test endpoints. This should be avalid HTTP(S) URI.
125
131
  #
132
+ # @option options [Integer] :endpoint_cache_max_entries (1000)
133
+ # Used for the maximum size limit of the LRU cache storing endpoints data
134
+ # for endpoint discovery enabled operations. Defaults to 1000.
135
+ #
136
+ # @option options [Integer] :endpoint_cache_max_threads (10)
137
+ # Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
138
+ #
139
+ # @option options [Integer] :endpoint_cache_poll_interval (60)
140
+ # When :endpoint_discovery and :active_endpoint_cache is enabled,
141
+ # Use this option to config the time interval in seconds for making
142
+ # requests fetching endpoints information. Defaults to 60 sec.
143
+ #
144
+ # @option options [Boolean] :endpoint_discovery (false)
145
+ # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
146
+ #
126
147
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
127
148
  # The log formatter.
128
149
  #
@@ -233,6 +254,7 @@ module Aws::DirectConnect
233
254
  # * {Types::Connection#aws_device #aws_device} => String
234
255
  # * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
235
256
  # * {Types::Connection#aws_device_v2 #aws_device_v2} => String
257
+ # * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
236
258
  #
237
259
  # @example Request syntax with placeholder values
238
260
  #
@@ -260,6 +282,7 @@ module Aws::DirectConnect
260
282
  # resp.aws_device #=> String
261
283
  # resp.jumbo_frame_capable #=> Boolean
262
284
  # resp.aws_device_v2 #=> String
285
+ # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
263
286
  #
264
287
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateConnectionOnInterconnect AWS API Documentation
265
288
  #
@@ -312,6 +335,7 @@ module Aws::DirectConnect
312
335
  # * {Types::Connection#aws_device #aws_device} => String
313
336
  # * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
314
337
  # * {Types::Connection#aws_device_v2 #aws_device_v2} => String
338
+ # * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
315
339
  #
316
340
  # @example Request syntax with placeholder values
317
341
  #
@@ -339,6 +363,7 @@ module Aws::DirectConnect
339
363
  # resp.aws_device #=> String
340
364
  # resp.jumbo_frame_capable #=> Boolean
341
365
  # resp.aws_device_v2 #=> String
366
+ # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
342
367
  #
343
368
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateHostedConnection AWS API Documentation
344
369
  #
@@ -434,6 +459,7 @@ module Aws::DirectConnect
434
459
  # resp.route_filter_prefixes #=> Array
435
460
  # resp.route_filter_prefixes[0].cidr #=> String
436
461
  # resp.bgp_peers #=> Array
462
+ # resp.bgp_peers[0].bgp_peer_id #=> String
437
463
  # resp.bgp_peers[0].asn #=> Integer
438
464
  # resp.bgp_peers[0].auth_key #=> String
439
465
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
@@ -551,6 +577,7 @@ module Aws::DirectConnect
551
577
  # resp.route_filter_prefixes #=> Array
552
578
  # resp.route_filter_prefixes[0].cidr #=> String
553
579
  # resp.bgp_peers #=> Array
580
+ # resp.bgp_peers[0].bgp_peer_id #=> String
554
581
  # resp.bgp_peers[0].asn #=> Integer
555
582
  # resp.bgp_peers[0].auth_key #=> String
556
583
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
@@ -614,6 +641,7 @@ module Aws::DirectConnect
614
641
  # * {Types::Connection#aws_device #aws_device} => String
615
642
  # * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
616
643
  # * {Types::Connection#aws_device_v2 #aws_device_v2} => String
644
+ # * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
617
645
  #
618
646
  # @example Request syntax with placeholder values
619
647
  #
@@ -638,6 +666,7 @@ module Aws::DirectConnect
638
666
  # resp.aws_device #=> String
639
667
  # resp.jumbo_frame_capable #=> Boolean
640
668
  # resp.aws_device_v2 #=> String
669
+ # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
641
670
  #
642
671
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateConnectionWithLag AWS API Documentation
643
672
  #
@@ -680,6 +709,7 @@ module Aws::DirectConnect
680
709
  # * {Types::Connection#aws_device #aws_device} => String
681
710
  # * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
682
711
  # * {Types::Connection#aws_device_v2 #aws_device_v2} => String
712
+ # * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
683
713
  #
684
714
  # @example Request syntax with placeholder values
685
715
  #
@@ -704,6 +734,7 @@ module Aws::DirectConnect
704
734
  # resp.aws_device #=> String
705
735
  # resp.jumbo_frame_capable #=> Boolean
706
736
  # resp.aws_device_v2 #=> String
737
+ # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
707
738
  #
708
739
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociateHostedConnection AWS API Documentation
709
740
  #
@@ -793,6 +824,7 @@ module Aws::DirectConnect
793
824
  # resp.route_filter_prefixes #=> Array
794
825
  # resp.route_filter_prefixes[0].cidr #=> String
795
826
  # resp.bgp_peers #=> Array
827
+ # resp.bgp_peers[0].bgp_peer_id #=> String
796
828
  # resp.bgp_peers[0].asn #=> Integer
797
829
  # resp.bgp_peers[0].auth_key #=> String
798
830
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
@@ -922,11 +954,13 @@ module Aws::DirectConnect
922
954
 
923
955
  # Creates a BGP peer on the specified virtual interface.
924
956
  #
925
- # The BGP peer cannot be in the same address family (IPv4/IPv6) of an
926
- # existing BGP peer on the virtual interface.
957
+ # You must create a BGP peer for the corresponding address family
958
+ # (IPv4/IPv6) in order to access AWS resources that also use that
959
+ # address family.
927
960
  #
928
- # You must create a BGP peer for the corresponding address family in
929
- # order to access AWS resources that also use that address family.
961
+ # If logical redundancy is not supported by the connection,
962
+ # interconnect, or LAG, the BGP peer cannot be in the same address
963
+ # family as an existing BGP peer on the virtual interface.
930
964
  #
931
965
  # When creating a IPv6 BGP peer, omit the Amazon address and customer
932
966
  # address. IPv6 addresses are automatically assigned from the Amazon
@@ -982,6 +1016,7 @@ module Aws::DirectConnect
982
1016
  # resp.virtual_interface.route_filter_prefixes #=> Array
983
1017
  # resp.virtual_interface.route_filter_prefixes[0].cidr #=> String
984
1018
  # resp.virtual_interface.bgp_peers #=> Array
1019
+ # resp.virtual_interface.bgp_peers[0].bgp_peer_id #=> String
985
1020
  # resp.virtual_interface.bgp_peers[0].asn #=> Integer
986
1021
  # resp.virtual_interface.bgp_peers[0].auth_key #=> String
987
1022
  # resp.virtual_interface.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
@@ -1046,6 +1081,7 @@ module Aws::DirectConnect
1046
1081
  # * {Types::Connection#aws_device #aws_device} => String
1047
1082
  # * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
1048
1083
  # * {Types::Connection#aws_device_v2 #aws_device_v2} => String
1084
+ # * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
1049
1085
  #
1050
1086
  # @example Request syntax with placeholder values
1051
1087
  #
@@ -1072,6 +1108,7 @@ module Aws::DirectConnect
1072
1108
  # resp.aws_device #=> String
1073
1109
  # resp.jumbo_frame_capable #=> Boolean
1074
1110
  # resp.aws_device_v2 #=> String
1111
+ # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
1075
1112
  #
1076
1113
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateConnection AWS API Documentation
1077
1114
  #
@@ -1220,6 +1257,7 @@ module Aws::DirectConnect
1220
1257
  # * {Types::Interconnect#aws_device #aws_device} => String
1221
1258
  # * {Types::Interconnect#jumbo_frame_capable #jumbo_frame_capable} => Boolean
1222
1259
  # * {Types::Interconnect#aws_device_v2 #aws_device_v2} => String
1260
+ # * {Types::Interconnect#has_logical_redundancy #has_logical_redundancy} => String
1223
1261
  #
1224
1262
  # @example Request syntax with placeholder values
1225
1263
  #
@@ -1243,6 +1281,7 @@ module Aws::DirectConnect
1243
1281
  # resp.aws_device #=> String
1244
1282
  # resp.jumbo_frame_capable #=> Boolean
1245
1283
  # resp.aws_device_v2 #=> String
1284
+ # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
1246
1285
  #
1247
1286
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateInterconnect AWS API Documentation
1248
1287
  #
@@ -1313,6 +1352,7 @@ module Aws::DirectConnect
1313
1352
  # * {Types::Lag#connections #connections} => Array<Types::Connection>
1314
1353
  # * {Types::Lag#allows_hosted_connections #allows_hosted_connections} => Boolean
1315
1354
  # * {Types::Lag#jumbo_frame_capable #jumbo_frame_capable} => Boolean
1355
+ # * {Types::Lag#has_logical_redundancy #has_logical_redundancy} => String
1316
1356
  #
1317
1357
  # @example Request syntax with placeholder values
1318
1358
  #
@@ -1352,8 +1392,10 @@ module Aws::DirectConnect
1352
1392
  # resp.connections[0].aws_device #=> String
1353
1393
  # resp.connections[0].jumbo_frame_capable #=> Boolean
1354
1394
  # resp.connections[0].aws_device_v2 #=> String
1395
+ # resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
1355
1396
  # resp.allows_hosted_connections #=> Boolean
1356
1397
  # resp.jumbo_frame_capable #=> Boolean
1398
+ # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
1357
1399
  #
1358
1400
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/CreateLag AWS API Documentation
1359
1401
  #
@@ -1447,6 +1489,7 @@ module Aws::DirectConnect
1447
1489
  # resp.route_filter_prefixes #=> Array
1448
1490
  # resp.route_filter_prefixes[0].cidr #=> String
1449
1491
  # resp.bgp_peers #=> Array
1492
+ # resp.bgp_peers[0].bgp_peer_id #=> String
1450
1493
  # resp.bgp_peers[0].asn #=> Integer
1451
1494
  # resp.bgp_peers[0].auth_key #=> String
1452
1495
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
@@ -1551,6 +1594,7 @@ module Aws::DirectConnect
1551
1594
  # resp.route_filter_prefixes #=> Array
1552
1595
  # resp.route_filter_prefixes[0].cidr #=> String
1553
1596
  # resp.bgp_peers #=> Array
1597
+ # resp.bgp_peers[0].bgp_peer_id #=> String
1554
1598
  # resp.bgp_peers[0].asn #=> Integer
1555
1599
  # resp.bgp_peers[0].auth_key #=> String
1556
1600
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
@@ -1571,8 +1615,8 @@ module Aws::DirectConnect
1571
1615
  req.send_request(options)
1572
1616
  end
1573
1617
 
1574
- # Deletes the BGP peer on the specified virtual interface with the
1575
- # specified customer address and ASN.
1618
+ # Deletes the specified BGP peer on the specified virtual interface with
1619
+ # the specified customer address and ASN.
1576
1620
  #
1577
1621
  # You cannot delete the last BGP peer from a virtual interface.
1578
1622
  #
@@ -1586,6 +1630,9 @@ module Aws::DirectConnect
1586
1630
  # @option params [String] :customer_address
1587
1631
  # The IP address assigned to the customer interface.
1588
1632
  #
1633
+ # @option params [String] :bgp_peer_id
1634
+ # The ID of the BGP peer.
1635
+ #
1589
1636
  # @return [Types::DeleteBGPPeerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1590
1637
  #
1591
1638
  # * {Types::DeleteBGPPeerResponse#virtual_interface #virtual_interface} => Types::VirtualInterface
@@ -1596,6 +1643,7 @@ module Aws::DirectConnect
1596
1643
  # virtual_interface_id: "VirtualInterfaceId",
1597
1644
  # asn: 1,
1598
1645
  # customer_address: "CustomerAddress",
1646
+ # bgp_peer_id: "BGPPeerId",
1599
1647
  # })
1600
1648
  #
1601
1649
  # @example Response structure
@@ -1622,6 +1670,7 @@ module Aws::DirectConnect
1622
1670
  # resp.virtual_interface.route_filter_prefixes #=> Array
1623
1671
  # resp.virtual_interface.route_filter_prefixes[0].cidr #=> String
1624
1672
  # resp.virtual_interface.bgp_peers #=> Array
1673
+ # resp.virtual_interface.bgp_peers[0].bgp_peer_id #=> String
1625
1674
  # resp.virtual_interface.bgp_peers[0].asn #=> Integer
1626
1675
  # resp.virtual_interface.bgp_peers[0].auth_key #=> String
1627
1676
  # resp.virtual_interface.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
@@ -1668,6 +1717,7 @@ module Aws::DirectConnect
1668
1717
  # * {Types::Connection#aws_device #aws_device} => String
1669
1718
  # * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
1670
1719
  # * {Types::Connection#aws_device_v2 #aws_device_v2} => String
1720
+ # * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
1671
1721
  #
1672
1722
  # @example Request syntax with placeholder values
1673
1723
  #
@@ -1691,6 +1741,7 @@ module Aws::DirectConnect
1691
1741
  # resp.aws_device #=> String
1692
1742
  # resp.jumbo_frame_capable #=> Boolean
1693
1743
  # resp.aws_device_v2 #=> String
1744
+ # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
1694
1745
  #
1695
1746
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteConnection AWS API Documentation
1696
1747
  #
@@ -1829,6 +1880,7 @@ module Aws::DirectConnect
1829
1880
  # * {Types::Lag#connections #connections} => Array<Types::Connection>
1830
1881
  # * {Types::Lag#allows_hosted_connections #allows_hosted_connections} => Boolean
1831
1882
  # * {Types::Lag#jumbo_frame_capable #jumbo_frame_capable} => Boolean
1883
+ # * {Types::Lag#has_logical_redundancy #has_logical_redundancy} => String
1832
1884
  #
1833
1885
  # @example Request syntax with placeholder values
1834
1886
  #
@@ -1864,8 +1916,10 @@ module Aws::DirectConnect
1864
1916
  # resp.connections[0].aws_device #=> String
1865
1917
  # resp.connections[0].jumbo_frame_capable #=> Boolean
1866
1918
  # resp.connections[0].aws_device_v2 #=> String
1919
+ # resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
1867
1920
  # resp.allows_hosted_connections #=> Boolean
1868
1921
  # resp.jumbo_frame_capable #=> Boolean
1922
+ # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
1869
1923
  #
1870
1924
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteLag AWS API Documentation
1871
1925
  #
@@ -1989,6 +2043,7 @@ module Aws::DirectConnect
1989
2043
  # resp.connections[0].aws_device #=> String
1990
2044
  # resp.connections[0].jumbo_frame_capable #=> Boolean
1991
2045
  # resp.connections[0].aws_device_v2 #=> String
2046
+ # resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
1992
2047
  #
1993
2048
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeConnections AWS API Documentation
1994
2049
  #
@@ -2038,6 +2093,7 @@ module Aws::DirectConnect
2038
2093
  # resp.connections[0].aws_device #=> String
2039
2094
  # resp.connections[0].jumbo_frame_capable #=> Boolean
2040
2095
  # resp.connections[0].aws_device_v2 #=> String
2096
+ # resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
2041
2097
  #
2042
2098
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeConnectionsOnInterconnect AWS API Documentation
2043
2099
  #
@@ -2241,6 +2297,7 @@ module Aws::DirectConnect
2241
2297
  # resp.connections[0].aws_device #=> String
2242
2298
  # resp.connections[0].jumbo_frame_capable #=> Boolean
2243
2299
  # resp.connections[0].aws_device_v2 #=> String
2300
+ # resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
2244
2301
  #
2245
2302
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeHostedConnections AWS API Documentation
2246
2303
  #
@@ -2334,6 +2391,7 @@ module Aws::DirectConnect
2334
2391
  # resp.interconnects[0].aws_device #=> String
2335
2392
  # resp.interconnects[0].jumbo_frame_capable #=> Boolean
2336
2393
  # resp.interconnects[0].aws_device_v2 #=> String
2394
+ # resp.interconnects[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
2337
2395
  #
2338
2396
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeInterconnects AWS API Documentation
2339
2397
  #
@@ -2388,8 +2446,10 @@ module Aws::DirectConnect
2388
2446
  # resp.lags[0].connections[0].aws_device #=> String
2389
2447
  # resp.lags[0].connections[0].jumbo_frame_capable #=> Boolean
2390
2448
  # resp.lags[0].connections[0].aws_device_v2 #=> String
2449
+ # resp.lags[0].connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
2391
2450
  # resp.lags[0].allows_hosted_connections #=> Boolean
2392
2451
  # resp.lags[0].jumbo_frame_capable #=> Boolean
2452
+ # resp.lags[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
2393
2453
  #
2394
2454
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DescribeLags AWS API Documentation
2395
2455
  #
@@ -2585,6 +2645,7 @@ module Aws::DirectConnect
2585
2645
  # resp.virtual_interfaces[0].route_filter_prefixes #=> Array
2586
2646
  # resp.virtual_interfaces[0].route_filter_prefixes[0].cidr #=> String
2587
2647
  # resp.virtual_interfaces[0].bgp_peers #=> Array
2648
+ # resp.virtual_interfaces[0].bgp_peers[0].bgp_peer_id #=> String
2588
2649
  # resp.virtual_interfaces[0].bgp_peers[0].asn #=> Integer
2589
2650
  # resp.virtual_interfaces[0].bgp_peers[0].auth_key #=> String
2590
2651
  # resp.virtual_interfaces[0].bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
@@ -2641,6 +2702,7 @@ module Aws::DirectConnect
2641
2702
  # * {Types::Connection#aws_device #aws_device} => String
2642
2703
  # * {Types::Connection#jumbo_frame_capable #jumbo_frame_capable} => Boolean
2643
2704
  # * {Types::Connection#aws_device_v2 #aws_device_v2} => String
2705
+ # * {Types::Connection#has_logical_redundancy #has_logical_redundancy} => String
2644
2706
  #
2645
2707
  # @example Request syntax with placeholder values
2646
2708
  #
@@ -2665,6 +2727,7 @@ module Aws::DirectConnect
2665
2727
  # resp.aws_device #=> String
2666
2728
  # resp.jumbo_frame_capable #=> Boolean
2667
2729
  # resp.aws_device_v2 #=> String
2730
+ # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
2668
2731
  #
2669
2732
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DisassociateConnectionFromLag AWS API Documentation
2670
2733
  #
@@ -2781,6 +2844,7 @@ module Aws::DirectConnect
2781
2844
  # * {Types::Lag#connections #connections} => Array<Types::Connection>
2782
2845
  # * {Types::Lag#allows_hosted_connections #allows_hosted_connections} => Boolean
2783
2846
  # * {Types::Lag#jumbo_frame_capable #jumbo_frame_capable} => Boolean
2847
+ # * {Types::Lag#has_logical_redundancy #has_logical_redundancy} => String
2784
2848
  #
2785
2849
  # @example Request syntax with placeholder values
2786
2850
  #
@@ -2818,8 +2882,10 @@ module Aws::DirectConnect
2818
2882
  # resp.connections[0].aws_device #=> String
2819
2883
  # resp.connections[0].jumbo_frame_capable #=> Boolean
2820
2884
  # resp.connections[0].aws_device_v2 #=> String
2885
+ # resp.connections[0].has_logical_redundancy #=> String, one of "unknown", "yes", "no"
2821
2886
  # resp.allows_hosted_connections #=> Boolean
2822
2887
  # resp.jumbo_frame_capable #=> Boolean
2888
+ # resp.has_logical_redundancy #=> String, one of "unknown", "yes", "no"
2823
2889
  #
2824
2890
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/UpdateLag AWS API Documentation
2825
2891
  #
@@ -2906,6 +2972,7 @@ module Aws::DirectConnect
2906
2972
  # resp.route_filter_prefixes #=> Array
2907
2973
  # resp.route_filter_prefixes[0].cidr #=> String
2908
2974
  # resp.bgp_peers #=> Array
2975
+ # resp.bgp_peers[0].bgp_peer_id #=> String
2909
2976
  # resp.bgp_peers[0].asn #=> Integer
2910
2977
  # resp.bgp_peers[0].auth_key #=> String
2911
2978
  # resp.bgp_peers[0].address_family #=> String, one of "ipv4", "ipv6"
@@ -2939,7 +3006,7 @@ module Aws::DirectConnect
2939
3006
  params: params,
2940
3007
  config: config)
2941
3008
  context[:gem_name] = 'aws-sdk-directconnect'
2942
- context[:gem_version] = '1.8.0'
3009
+ context[:gem_version] = '1.9.0'
2943
3010
  Seahorse::Client::Request.new(handlers, context)
2944
3011
  end
2945
3012
 
@@ -25,6 +25,7 @@ module Aws::DirectConnect
25
25
  AwsDeviceV2 = Shapes::StringShape.new(name: 'AwsDeviceV2')
26
26
  BGPAuthKey = Shapes::StringShape.new(name: 'BGPAuthKey')
27
27
  BGPPeer = Shapes::StructureShape.new(name: 'BGPPeer')
28
+ BGPPeerId = Shapes::StringShape.new(name: 'BGPPeerId')
28
29
  BGPPeerList = Shapes::ListShape.new(name: 'BGPPeerList')
29
30
  BGPPeerState = Shapes::StringShape.new(name: 'BGPPeerState')
30
31
  BGPStatus = Shapes::StringShape.new(name: 'BGPStatus')
@@ -103,6 +104,7 @@ module Aws::DirectConnect
103
104
  DisassociateConnectionFromLagRequest = Shapes::StructureShape.new(name: 'DisassociateConnectionFromLagRequest')
104
105
  DuplicateTagKeysException = Shapes::StructureShape.new(name: 'DuplicateTagKeysException')
105
106
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
107
+ HasLogicalRedundancy = Shapes::StringShape.new(name: 'HasLogicalRedundancy')
106
108
  Interconnect = Shapes::StructureShape.new(name: 'Interconnect')
107
109
  InterconnectId = Shapes::StringShape.new(name: 'InterconnectId')
108
110
  InterconnectList = Shapes::ListShape.new(name: 'InterconnectList')
@@ -210,6 +212,7 @@ module Aws::DirectConnect
210
212
  AssociateVirtualInterfaceRequest.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
211
213
  AssociateVirtualInterfaceRequest.struct_class = Types::AssociateVirtualInterfaceRequest
212
214
 
215
+ BGPPeer.add_member(:bgp_peer_id, Shapes::ShapeRef.new(shape: BGPPeerId, location_name: "bgpPeerId"))
213
216
  BGPPeer.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
214
217
  BGPPeer.add_member(:auth_key, Shapes::ShapeRef.new(shape: BGPAuthKey, location_name: "authKey"))
215
218
  BGPPeer.add_member(:address_family, Shapes::ShapeRef.new(shape: AddressFamily, location_name: "addressFamily"))
@@ -256,6 +259,7 @@ module Aws::DirectConnect
256
259
  Connection.add_member(:aws_device, Shapes::ShapeRef.new(shape: AwsDevice, deprecated: true, location_name: "awsDevice"))
257
260
  Connection.add_member(:jumbo_frame_capable, Shapes::ShapeRef.new(shape: JumboFrameCapable, location_name: "jumboFrameCapable"))
258
261
  Connection.add_member(:aws_device_v2, Shapes::ShapeRef.new(shape: AwsDeviceV2, location_name: "awsDeviceV2"))
262
+ Connection.add_member(:has_logical_redundancy, Shapes::ShapeRef.new(shape: HasLogicalRedundancy, location_name: "hasLogicalRedundancy"))
259
263
  Connection.struct_class = Types::Connection
260
264
 
261
265
  ConnectionList.member = Shapes::ShapeRef.new(shape: Connection)
@@ -314,6 +318,7 @@ module Aws::DirectConnect
314
318
  DeleteBGPPeerRequest.add_member(:virtual_interface_id, Shapes::ShapeRef.new(shape: VirtualInterfaceId, location_name: "virtualInterfaceId"))
315
319
  DeleteBGPPeerRequest.add_member(:asn, Shapes::ShapeRef.new(shape: ASN, location_name: "asn"))
316
320
  DeleteBGPPeerRequest.add_member(:customer_address, Shapes::ShapeRef.new(shape: CustomerAddress, location_name: "customerAddress"))
321
+ DeleteBGPPeerRequest.add_member(:bgp_peer_id, Shapes::ShapeRef.new(shape: BGPPeerId, location_name: "bgpPeerId"))
317
322
  DeleteBGPPeerRequest.struct_class = Types::DeleteBGPPeerRequest
318
323
 
319
324
  DeleteBGPPeerResponse.add_member(:virtual_interface, Shapes::ShapeRef.new(shape: VirtualInterface, location_name: "virtualInterface"))
@@ -470,6 +475,7 @@ module Aws::DirectConnect
470
475
  Interconnect.add_member(:aws_device, Shapes::ShapeRef.new(shape: AwsDevice, deprecated: true, location_name: "awsDevice"))
471
476
  Interconnect.add_member(:jumbo_frame_capable, Shapes::ShapeRef.new(shape: JumboFrameCapable, location_name: "jumboFrameCapable"))
472
477
  Interconnect.add_member(:aws_device_v2, Shapes::ShapeRef.new(shape: AwsDeviceV2, location_name: "awsDeviceV2"))
478
+ Interconnect.add_member(:has_logical_redundancy, Shapes::ShapeRef.new(shape: HasLogicalRedundancy, location_name: "hasLogicalRedundancy"))
473
479
  Interconnect.struct_class = Types::Interconnect
474
480
 
475
481
  InterconnectList.member = Shapes::ShapeRef.new(shape: Interconnect)
@@ -491,6 +497,7 @@ module Aws::DirectConnect
491
497
  Lag.add_member(:connections, Shapes::ShapeRef.new(shape: ConnectionList, location_name: "connections"))
492
498
  Lag.add_member(:allows_hosted_connections, Shapes::ShapeRef.new(shape: BooleanFlag, location_name: "allowsHostedConnections"))
493
499
  Lag.add_member(:jumbo_frame_capable, Shapes::ShapeRef.new(shape: JumboFrameCapable, location_name: "jumboFrameCapable"))
500
+ Lag.add_member(:has_logical_redundancy, Shapes::ShapeRef.new(shape: HasLogicalRedundancy, location_name: "hasLogicalRedundancy"))
494
501
  Lag.struct_class = Types::Lag
495
502
 
496
503
  LagList.member = Shapes::ShapeRef.new(shape: Lag)
@@ -255,6 +255,10 @@ module Aws::DirectConnect
255
255
 
256
256
  # Information about a BGP peer.
257
257
  #
258
+ # @!attribute [rw] bgp_peer_id
259
+ # The ID of the BGP peer.
260
+ # @return [String]
261
+ #
258
262
  # @!attribute [rw] asn
259
263
  # The autonomous system (AS) number for Border Gateway Protocol (BGP)
260
264
  # configuration.
@@ -312,6 +316,7 @@ module Aws::DirectConnect
312
316
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/BGPPeer AWS API Documentation
313
317
  #
314
318
  class BGPPeer < Struct.new(
319
+ :bgp_peer_id,
315
320
  :asn,
316
321
  :auth_key,
317
322
  :address_family,
@@ -591,6 +596,11 @@ module Aws::DirectConnect
591
596
  # terminates.
592
597
  # @return [String]
593
598
  #
599
+ # @!attribute [rw] has_logical_redundancy
600
+ # Indicates whether the connection supports a secondary BGP peer in
601
+ # the same address family (IPv4/IPv6).
602
+ # @return [String]
603
+ #
594
604
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/Connection AWS API Documentation
595
605
  #
596
606
  class Connection < Struct.new(
@@ -607,7 +617,8 @@ module Aws::DirectConnect
607
617
  :lag_id,
608
618
  :aws_device,
609
619
  :jumbo_frame_capable,
610
- :aws_device_v2)
620
+ :aws_device_v2,
621
+ :has_logical_redundancy)
611
622
  include Aws::Structure
612
623
  end
613
624
 
@@ -931,6 +942,7 @@ module Aws::DirectConnect
931
942
  # virtual_interface_id: "VirtualInterfaceId",
932
943
  # asn: 1,
933
944
  # customer_address: "CustomerAddress",
945
+ # bgp_peer_id: "BGPPeerId",
934
946
  # }
935
947
  #
936
948
  # @!attribute [rw] virtual_interface_id
@@ -946,12 +958,17 @@ module Aws::DirectConnect
946
958
  # The IP address assigned to the customer interface.
947
959
  # @return [String]
948
960
  #
961
+ # @!attribute [rw] bgp_peer_id
962
+ # The ID of the BGP peer.
963
+ # @return [String]
964
+ #
949
965
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/DeleteBGPPeerRequest AWS API Documentation
950
966
  #
951
967
  class DeleteBGPPeerRequest < Struct.new(
952
968
  :virtual_interface_id,
953
969
  :asn,
954
- :customer_address)
970
+ :customer_address,
971
+ :bgp_peer_id)
955
972
  include Aws::Structure
956
973
  end
957
974
 
@@ -1836,6 +1853,11 @@ module Aws::DirectConnect
1836
1853
  # terminates.
1837
1854
  # @return [String]
1838
1855
  #
1856
+ # @!attribute [rw] has_logical_redundancy
1857
+ # Indicates whether the interconnect supports a secondary BGP in the
1858
+ # same address family (IPv4/IPv6).
1859
+ # @return [String]
1860
+ #
1839
1861
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/Interconnect AWS API Documentation
1840
1862
  #
1841
1863
  class Interconnect < Struct.new(
@@ -1849,7 +1871,8 @@ module Aws::DirectConnect
1849
1871
  :lag_id,
1850
1872
  :aws_device,
1851
1873
  :jumbo_frame_capable,
1852
- :aws_device_v2)
1874
+ :aws_device_v2,
1875
+ :has_logical_redundancy)
1853
1876
  include Aws::Structure
1854
1877
  end
1855
1878
 
@@ -1940,6 +1963,11 @@ module Aws::DirectConnect
1940
1963
  # Indicates whether jumbo frames (9001 MTU) are supported.
1941
1964
  # @return [Boolean]
1942
1965
  #
1966
+ # @!attribute [rw] has_logical_redundancy
1967
+ # Indicates whether the LAG supports a secondary BGP peer in the same
1968
+ # address family (IPv4/IPv6).
1969
+ # @return [String]
1970
+ #
1943
1971
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/Lag AWS API Documentation
1944
1972
  #
1945
1973
  class Lag < Struct.new(
@@ -1956,7 +1984,8 @@ module Aws::DirectConnect
1956
1984
  :aws_device_v2,
1957
1985
  :connections,
1958
1986
  :allows_hosted_connections,
1959
- :jumbo_frame_capable)
1987
+ :jumbo_frame_capable,
1988
+ :has_logical_redundancy)
1960
1989
  include Aws::Structure
1961
1990
  end
1962
1991
 
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.8.0
4
+ version: 1.9.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: 2018-10-24 00:00:00.000000000 Z
11
+ date: 2018-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core