aws-sdk-directconnect 1.76.0 → 1.78.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
  SHA256:
3
- metadata.gz: 958d36b9f2b7fb05a6c5931032b125a067753706b1078cf6a20dde3b4018562d
4
- data.tar.gz: d02ffb1f91d57b5093927184116cbcbfd08424047a1f45186d26515946427153
3
+ metadata.gz: d6734adba477bf398adbe8cb0cc35105ecf9ef4ce7227fd9d99dc74557adfc96
4
+ data.tar.gz: 222c5ae3c18bfb1ac5684dbe118cd1373d2bdfd5c773f2c62397e23fa7442d34
5
5
  SHA512:
6
- metadata.gz: b6e4aa1208c1254b0b75762256e37158640b4e6d90e475d29d65c34b84b16b869dae5e9943352addcf526e2f4a3c484f1c3c5a197f0b835f868e41d7bc9460b2
7
- data.tar.gz: 6112405fd8c38ed23977a9993fae635772dc62c6e5d78dc0daa97097b5f05dc11a12ad7eb847701415e3fd4bd5f8215daeec3c719a88a715873956039bb65b98
6
+ metadata.gz: 85f0100ef6e35aa6bf1e1139f9ddb560d125d21cab3e196abdfc9fd8606f2ef8bdf841e206c9671592518780bb283be276ad9a687f4b59f2cdab2b656c0bd381
7
+ data.tar.gz: f987cffb11b7719800c41fc361ae092e97ea977baace00c0f9555ee3f712c3b1b93500a6e040b8f6dad5aaf2cb77704f296a70ab987e905394b863d3c15047c2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2024-09-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.77.0 (2024-07-03)
10
+ ------------------
11
+
12
+ * Feature - This update includes documentation for support of new native 400 GBps ports for Direct Connect.
13
+
4
14
  1.76.0 (2024-07-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.76.0
1
+ 1.78.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::DirectConnect
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
88
90
  add_plugin(Aws::DirectConnect::Plugins::Endpoints)
@@ -337,6 +339,16 @@ module Aws::DirectConnect
337
339
  # ** Please note ** When response stubbing is enabled, no HTTP
338
340
  # requests are made, and retries are disabled.
339
341
  #
342
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
343
+ # Allows you to provide a telemetry provider, which is used to
344
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
345
+ # will not record or emit any telemetry data. The SDK supports the
346
+ # following telemetry providers:
347
+ #
348
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
349
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
350
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
351
+ #
340
352
  # @option options [Aws::TokenProvider] :token_provider
341
353
  # A Bearer Token Provider. This can be an instance of any one of the
342
354
  # following classes:
@@ -499,7 +511,9 @@ module Aws::DirectConnect
499
511
  req.send_request(options)
500
512
  end
501
513
 
502
- # Deprecated. Use AllocateHostedConnection instead.
514
+ # <note markdown="1"> Deprecated. Use AllocateHostedConnection instead.
515
+ #
516
+ # </note>
503
517
  #
504
518
  # Creates a hosted connection on an interconnect.
505
519
  #
@@ -628,10 +642,10 @@ module Aws::DirectConnect
628
642
  #
629
643
  # @option params [required, String] :bandwidth
630
644
  # The bandwidth of the connection. The possible values are 50Mbps,
631
- # 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and
632
- # 10Gbps. Note that only those Direct Connect Partners who have met
633
- # specific requirements are allowed to create a 1Gbps, 2Gbps, 5Gbps or
634
- # 10Gbps hosted connection.
645
+ # 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps,
646
+ # 10Gbps, and 25Gbps. Note that only those Direct Connect Partners who
647
+ # have met specific requirements are allowed to create a 1Gbps, 2Gbps,
648
+ # 5Gbps, 10Gbps, or 25Gbps hosted connection.
635
649
  #
636
650
  # @option params [required, String] :connection_name
637
651
  # The name of the hosted connection.
@@ -2086,7 +2100,7 @@ module Aws::DirectConnect
2086
2100
  # The name of the interconnect.
2087
2101
  #
2088
2102
  # @option params [required, String] :bandwidth
2089
- # The port bandwidth, in Gbps. The possible values are 1 and 10.
2103
+ # The port bandwidth, in Gbps. The possible values are 1, 10, and 100.
2090
2104
  #
2091
2105
  # @option params [required, String] :location
2092
2106
  # The location of the interconnect.
@@ -2169,12 +2183,13 @@ module Aws::DirectConnect
2169
2183
  # that uses the Link Aggregation Control Protocol (LACP) to aggregate
2170
2184
  # multiple interfaces, enabling you to treat them as a single interface.
2171
2185
  #
2172
- # All connections in a LAG must use the same bandwidth (either 1Gbps or
2173
- # 10Gbps) and must terminate at the same Direct Connect endpoint.
2186
+ # All connections in a LAG must use the same bandwidth (either 1Gbps,
2187
+ # 10Gbps, 100Gbps, or 400Gbps) and must terminate at the same Direct
2188
+ # Connect endpoint.
2174
2189
  #
2175
- # You can have up to 10 dedicated connections per LAG. Regardless of
2176
- # this limit, if you request more connections for the LAG than Direct
2177
- # Connect can allocate on a single endpoint, no LAG is created.
2190
+ # You can have up to 10 dedicated connections per location. Regardless
2191
+ # of this limit, if you request more connections for the LAG than Direct
2192
+ # Connect can allocate on a single endpoint, no LAG is created..
2178
2193
  #
2179
2194
  # You can specify an existing physical dedicated connection or
2180
2195
  # interconnect to include in the LAG (which counts towards the total
@@ -2193,14 +2208,16 @@ module Aws::DirectConnect
2193
2208
  # @option params [required, Integer] :number_of_connections
2194
2209
  # The number of physical dedicated connections initially provisioned and
2195
2210
  # bundled by the LAG. You can have a maximum of four connections when
2196
- # the port speed is 1G or 10G, or two when the port speed is 100G.
2211
+ # the port speed is 1Gbps or 10Gbps, or two when the port speed is
2212
+ # 100Gbps or 400Gbps.
2197
2213
  #
2198
2214
  # @option params [required, String] :location
2199
2215
  # The location for the LAG.
2200
2216
  #
2201
2217
  # @option params [required, String] :connections_bandwidth
2202
2218
  # The bandwidth of the individual physical dedicated connections bundled
2203
- # by the LAG. The possible values are 1Gbps and 10Gbps.
2219
+ # by the LAG. The possible values are 1Gbps,10Gbps, 100Gbps, and
2220
+ # 400Gbps.
2204
2221
  #
2205
2222
  # @option params [required, String] :lag_name
2206
2223
  # The name of the LAG.
@@ -2354,7 +2371,7 @@ module Aws::DirectConnect
2354
2371
  # Regions. Connecting the private virtual interface to a VGW only
2355
2372
  # provides access to a single VPC within the same Region.
2356
2373
  #
2357
- # Setting the MTU of a virtual interface to 9001 (jumbo frames) can
2374
+ # Setting the MTU of a virtual interface to 8500 (jumbo frames) can
2358
2375
  # cause an update to the underlying physical connection if it wasn't
2359
2376
  # updated to support jumbo frames. Updating the connection disrupts
2360
2377
  # network connectivity for all virtual interfaces associated with the
@@ -3159,7 +3176,9 @@ module Aws::DirectConnect
3159
3176
  req.send_request(options)
3160
3177
  end
3161
3178
 
3162
- # Deprecated. Use DescribeLoa instead.
3179
+ # <note markdown="1"> Deprecated. Use DescribeLoa instead.
3180
+ #
3181
+ # </note>
3163
3182
  #
3164
3183
  # Gets the LOA-CFA for a connection.
3165
3184
  #
@@ -3269,7 +3288,9 @@ module Aws::DirectConnect
3269
3288
  req.send_request(options)
3270
3289
  end
3271
3290
 
3272
- # Deprecated. Use DescribeHostedConnections instead.
3291
+ # <note markdown="1"> Deprecated. Use DescribeHostedConnections instead.
3292
+ #
3293
+ # </note>
3273
3294
  #
3274
3295
  # Lists the connections that have been provisioned on the specified
3275
3296
  # interconnect.
@@ -3688,7 +3709,9 @@ module Aws::DirectConnect
3688
3709
  req.send_request(options)
3689
3710
  end
3690
3711
 
3691
- # Deprecated. Use DescribeLoa instead.
3712
+ # <note markdown="1"> Deprecated. Use DescribeLoa instead.
3713
+ #
3714
+ # </note>
3692
3715
  #
3693
3716
  # Gets the LOA-CFA for the specified interconnect.
3694
3717
  #
@@ -4031,12 +4054,22 @@ module Aws::DirectConnect
4031
4054
  req.send_request(options)
4032
4055
  end
4033
4056
 
4057
+ # <note markdown="1"> Deprecated. Use `DescribeVpnGateways` instead. See
4058
+ # [DescribeVPNGateways][1] in the *Amazon Elastic Compute Cloud API
4059
+ # Reference*.
4060
+ #
4061
+ # </note>
4062
+ #
4034
4063
  # Lists the virtual private gateways owned by the Amazon Web Services
4035
4064
  # account.
4036
4065
  #
4037
4066
  # You can create one or more Direct Connect private virtual interfaces
4038
4067
  # linked to a virtual private gateway.
4039
4068
  #
4069
+ #
4070
+ #
4071
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeVpnGateways.html
4072
+ #
4040
4073
  # @return [Types::VirtualGateways] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4041
4074
  #
4042
4075
  # * {Types::VirtualGateways#virtual_gateways #virtual_gateways} => Array&lt;Types::VirtualGateway&gt;
@@ -4837,7 +4870,7 @@ module Aws::DirectConnect
4837
4870
  # Updates the specified attributes of the specified virtual private
4838
4871
  # interface.
4839
4872
  #
4840
- # Setting the MTU of a virtual interface to 9001 (jumbo frames) can
4873
+ # Setting the MTU of a virtual interface to 8500 (jumbo frames) can
4841
4874
  # cause an update to the underlying physical connection if it wasn't
4842
4875
  # updated to support jumbo frames. Updating the connection disrupts
4843
4876
  # network connectivity for all virtual interfaces associated with the
@@ -4851,7 +4884,7 @@ module Aws::DirectConnect
4851
4884
  #
4852
4885
  # @option params [Integer] :mtu
4853
4886
  # The maximum transmission unit (MTU), in bytes. The supported values
4854
- # are 1500 and 9001. The default value is 1500.
4887
+ # are 1500 and 8500. The default value is 1500.
4855
4888
  #
4856
4889
  # @option params [Boolean] :enable_site_link
4857
4890
  # Indicates whether to enable or disable SiteLink.
@@ -4954,14 +4987,19 @@ module Aws::DirectConnect
4954
4987
  # @api private
4955
4988
  def build_request(operation_name, params = {})
4956
4989
  handlers = @handlers.for(operation_name)
4990
+ tracer = config.telemetry_provider.tracer_provider.tracer(
4991
+ Aws::Telemetry.module_to_tracer_name('Aws::DirectConnect')
4992
+ )
4957
4993
  context = Seahorse::Client::RequestContext.new(
4958
4994
  operation_name: operation_name,
4959
4995
  operation: config.api.operation(operation_name),
4960
4996
  client: self,
4961
4997
  params: params,
4962
- config: config)
4998
+ config: config,
4999
+ tracer: tracer
5000
+ )
4963
5001
  context[:gem_name] = 'aws-sdk-directconnect'
4964
- context[:gem_version] = '1.76.0'
5002
+ context[:gem_version] = '1.78.0'
4965
5003
  Seahorse::Client::Request.new(handlers, context)
4966
5004
  end
4967
5005
 
@@ -48,7 +48,7 @@ module Aws::DirectConnect
48
48
 
49
49
  # @!attribute [rw] direct_connect_gateway_association
50
50
  # Information about an association between a Direct Connect gateway
51
- # and a virtual private gateway or transit gateway.
51
+ # and a virtual gateway or transit gateway.
52
52
  # @return [Types::DirectConnectGatewayAssociation]
53
53
  #
54
54
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AcceptDirectConnectGatewayAssociationProposalResult AWS API Documentation
@@ -109,9 +109,9 @@ module Aws::DirectConnect
109
109
  # @!attribute [rw] bandwidth
110
110
  # The bandwidth of the connection. The possible values are 50Mbps,
111
111
  # 100Mbps, 200Mbps, 300Mbps, 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps,
112
- # and 10Gbps. Note that only those Direct Connect Partners who have
113
- # met specific requirements are allowed to create a 1Gbps, 2Gbps,
114
- # 5Gbps or 10Gbps hosted connection.
112
+ # 10Gbps, and 25Gbps. Note that only those Direct Connect Partners who
113
+ # have met specific requirements are allowed to create a 1Gbps, 2Gbps,
114
+ # 5Gbps, 10Gbps, or 25Gbps hosted connection.
115
115
  # @return [String]
116
116
  #
117
117
  # @!attribute [rw] connection_name
@@ -212,7 +212,7 @@ module Aws::DirectConnect
212
212
  end
213
213
 
214
214
  # @!attribute [rw] virtual_interface
215
- # Information about a virtual interface.
215
+ # Information about the transit virtual interface.
216
216
  # @return [Types::VirtualInterface]
217
217
  #
218
218
  # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AllocateTransitVirtualInterfaceResult AWS API Documentation
@@ -1102,7 +1102,7 @@ module Aws::DirectConnect
1102
1102
  # @return [String]
1103
1103
  #
1104
1104
  # @!attribute [rw] bandwidth
1105
- # The port bandwidth, in Gbps. The possible values are 1 and 10.
1105
+ # The port bandwidth, in Gbps. The possible values are 1, 10, and 100.
1106
1106
  # @return [String]
1107
1107
  #
1108
1108
  # @!attribute [rw] location
@@ -1137,8 +1137,8 @@ module Aws::DirectConnect
1137
1137
  # @!attribute [rw] number_of_connections
1138
1138
  # The number of physical dedicated connections initially provisioned
1139
1139
  # and bundled by the LAG. You can have a maximum of four connections
1140
- # when the port speed is 1G or 10G, or two when the port speed is
1141
- # 100G.
1140
+ # when the port speed is 1Gbps or 10Gbps, or two when the port speed
1141
+ # is 100Gbps or 400Gbps.
1142
1142
  # @return [Integer]
1143
1143
  #
1144
1144
  # @!attribute [rw] location
@@ -1147,7 +1147,8 @@ module Aws::DirectConnect
1147
1147
  #
1148
1148
  # @!attribute [rw] connections_bandwidth
1149
1149
  # The bandwidth of the individual physical dedicated connections
1150
- # bundled by the LAG. The possible values are 1Gbps and 10Gbps.
1150
+ # bundled by the LAG. The possible values are 1Gbps,10Gbps, 100Gbps,
1151
+ # and 400Gbps.
1151
1152
  # @return [String]
1152
1153
  #
1153
1154
  # @!attribute [rw] lag_name
@@ -2484,12 +2485,14 @@ module Aws::DirectConnect
2484
2485
  #
2485
2486
  # @!attribute [rw] connections_bandwidth
2486
2487
  # The individual bandwidth of the physical connections bundled by the
2487
- # LAG. The possible values are 1Gbps and 10Gbps.
2488
+ # LAG. The possible values are 1Gbps, 10Gbps, 100Gbps, or 400 Gbps..
2488
2489
  # @return [String]
2489
2490
  #
2490
2491
  # @!attribute [rw] number_of_connections
2491
- # The number of physical dedicated connections bundled by the LAG, up
2492
- # to a maximum of 10.
2492
+ # The number of physical dedicated connections initially provisioned
2493
+ # and bundled by the LAG. You can have a maximum of four connections
2494
+ # when the port speed is 1 Gbps or 10 Gbps, or two when the port speed
2495
+ # is 100 Gbps or 400 Gbps.
2493
2496
  # @return [Integer]
2494
2497
  #
2495
2498
  # @!attribute [rw] lag_id
@@ -2869,7 +2872,7 @@ module Aws::DirectConnect
2869
2872
  #
2870
2873
  # @!attribute [rw] mtu
2871
2874
  # The maximum transmission unit (MTU), in bytes. The supported values
2872
- # are 1500 and 9001. The default value is 1500.
2875
+ # are 1500 and 8500. The default value is 1500.
2873
2876
  # @return [Integer]
2874
2877
  #
2875
2878
  # @!attribute [rw] auth_key
@@ -2947,7 +2950,7 @@ module Aws::DirectConnect
2947
2950
  #
2948
2951
  # @!attribute [rw] mtu
2949
2952
  # The maximum transmission unit (MTU), in bytes. The supported values
2950
- # are 1500 and 9001. The default value is 1500.
2953
+ # are 1500 and 8500. The default value is 1500.
2951
2954
  # @return [Integer]
2952
2955
  #
2953
2956
  # @!attribute [rw] auth_key
@@ -3536,8 +3539,8 @@ module Aws::DirectConnect
3536
3539
  end
3537
3540
 
3538
3541
  # @!attribute [rw] direct_connect_gateway
3539
- # Information about a Direct Connect gateway, which enables you to
3540
- # connect virtual interfaces and virtual private gateway or transit
3542
+ # Informaiton about a Direct Connect gateway, which enables you to
3543
+ # connect virtual interfaces and virtual private gateways or transit
3541
3544
  # gateways.
3542
3545
  # @return [Types::DirectConnectGateway]
3543
3546
  #
@@ -3586,7 +3589,7 @@ module Aws::DirectConnect
3586
3589
  #
3587
3590
  # @!attribute [rw] mtu
3588
3591
  # The maximum transmission unit (MTU), in bytes. The supported values
3589
- # are 1500 and 9001. The default value is 1500.
3592
+ # are 1500 and 8500. The default value is 1500.
3590
3593
  # @return [Integer]
3591
3594
  #
3592
3595
  # @!attribute [rw] enable_site_link
@@ -3672,8 +3675,8 @@ module Aws::DirectConnect
3672
3675
  # @return [String]
3673
3676
  #
3674
3677
  # @!attribute [rw] virtual_interface_type
3675
- # The type of virtual interface. The possible values are `private` and
3676
- # `public`.
3678
+ # The type of virtual interface. The possible values are `private`,
3679
+ # `public` and `transit`.
3677
3680
  # @return [String]
3678
3681
  #
3679
3682
  # @!attribute [rw] virtual_interface_name
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-directconnect/customizations'
52
52
  # @!group service
53
53
  module Aws::DirectConnect
54
54
 
55
- GEM_VERSION = '1.76.0'
55
+ GEM_VERSION = '1.78.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -51,6 +51,7 @@ module Aws
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?simple_json: bool,
53
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
54
55
  ?token_provider: untyped,
55
56
  ?use_dualstack_endpoint: bool,
56
57
  ?use_fips_endpoint: bool,
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.76.0
4
+ version: 1.78.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: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-09-03 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.201.0
22
+ version: 3.203.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.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement