aws-sdk-directconnect 1.84.0 → 1.86.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: 1b22623cf307169ec7e0d38a8a9fb6425bd4e329f04697672c68ec8e4df408f9
4
- data.tar.gz: 1bdfb1b92d14c1f58899238932d9ca560a6a3f9c99798a75c14a901735c99845
3
+ metadata.gz: 8d884742d9ad37c3b48cde39dc554675517d792ce9de8b3c14addff3956f33de
4
+ data.tar.gz: b0190adcde129d3b612ecf1c19e93ea09db5b98a200e7def6a4e619ea12a8e90
5
5
  SHA512:
6
- metadata.gz: 0176f2fd7af36fe6a8297bf8d5db22c3243cded1d0d7c2fc738b85b3e1b70ba08d197a30afdc89b8b69ce5ae491bdc042f70e877ddb30bb8d5ead1b3823abeb9
7
- data.tar.gz: 58d1f4ecf4eaa8fd49d4bc91b1f8c69e9c9587848275dfac35b0d5f5c73dadf589ba3fc3938b9a8319526cf1abbaf7452543e894fc87cc3e200d95e8324fe4b5
6
+ metadata.gz: 9275f0460267b964e31eb83509ad848dc4e516b714757ef3da49ee373cffe0f929c621c8076912cad52d6eedd305bfd8561c78e5f28f4c1588b24f89f2d35af7
7
+ data.tar.gz: ae242ddeadcf113be41c867175114348d52ccbb1aa33969321e64bc14efbc98b9bf774c755337d194377a89139d86cceef64874d98e445bcf4aa8491e970bf55
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.86.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.85.0 (2024-11-25)
10
+ ------------------
11
+
12
+ * Feature - Update DescribeDirectConnectGatewayAssociations API to return associated core network information if a Direct Connect gateway is attached to a Cloud WAN core network.
13
+
4
14
  1.84.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.84.0
1
+ 1.86.0
@@ -257,11 +257,34 @@ module Aws::DirectConnect
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -508,6 +531,9 @@ module Aws::DirectConnect
508
531
  # resp.direct_connect_gateway_association.association_id #=> String
509
532
  # resp.direct_connect_gateway_association.allowed_prefixes_to_direct_connect_gateway #=> Array
510
533
  # resp.direct_connect_gateway_association.allowed_prefixes_to_direct_connect_gateway[0].cidr #=> String
534
+ # resp.direct_connect_gateway_association.associated_core_network.id #=> String
535
+ # resp.direct_connect_gateway_association.associated_core_network.owner_account #=> String
536
+ # resp.direct_connect_gateway_association.associated_core_network.attachment_id #=> String
511
537
  # resp.direct_connect_gateway_association.virtual_gateway_id #=> String
512
538
  # resp.direct_connect_gateway_association.virtual_gateway_region #=> String
513
539
  # resp.direct_connect_gateway_association.virtual_gateway_owner_account #=> String
@@ -1997,6 +2023,9 @@ module Aws::DirectConnect
1997
2023
  # resp.direct_connect_gateway_association.association_id #=> String
1998
2024
  # resp.direct_connect_gateway_association.allowed_prefixes_to_direct_connect_gateway #=> Array
1999
2025
  # resp.direct_connect_gateway_association.allowed_prefixes_to_direct_connect_gateway[0].cidr #=> String
2026
+ # resp.direct_connect_gateway_association.associated_core_network.id #=> String
2027
+ # resp.direct_connect_gateway_association.associated_core_network.owner_account #=> String
2028
+ # resp.direct_connect_gateway_association.associated_core_network.attachment_id #=> String
2000
2029
  # resp.direct_connect_gateway_association.virtual_gateway_id #=> String
2001
2030
  # resp.direct_connect_gateway_association.virtual_gateway_region #=> String
2002
2031
  # resp.direct_connect_gateway_association.virtual_gateway_owner_account #=> String
@@ -2970,6 +2999,9 @@ module Aws::DirectConnect
2970
2999
  # resp.direct_connect_gateway_association.association_id #=> String
2971
3000
  # resp.direct_connect_gateway_association.allowed_prefixes_to_direct_connect_gateway #=> Array
2972
3001
  # resp.direct_connect_gateway_association.allowed_prefixes_to_direct_connect_gateway[0].cidr #=> String
3002
+ # resp.direct_connect_gateway_association.associated_core_network.id #=> String
3003
+ # resp.direct_connect_gateway_association.associated_core_network.owner_account #=> String
3004
+ # resp.direct_connect_gateway_association.associated_core_network.attachment_id #=> String
2973
3005
  # resp.direct_connect_gateway_association.virtual_gateway_id #=> String
2974
3006
  # resp.direct_connect_gateway_association.virtual_gateway_region #=> String
2975
3007
  # resp.direct_connect_gateway_association.virtual_gateway_owner_account #=> String
@@ -3533,6 +3565,9 @@ module Aws::DirectConnect
3533
3565
  # resp.direct_connect_gateway_associations[0].association_id #=> String
3534
3566
  # resp.direct_connect_gateway_associations[0].allowed_prefixes_to_direct_connect_gateway #=> Array
3535
3567
  # resp.direct_connect_gateway_associations[0].allowed_prefixes_to_direct_connect_gateway[0].cidr #=> String
3568
+ # resp.direct_connect_gateway_associations[0].associated_core_network.id #=> String
3569
+ # resp.direct_connect_gateway_associations[0].associated_core_network.owner_account #=> String
3570
+ # resp.direct_connect_gateway_associations[0].associated_core_network.attachment_id #=> String
3536
3571
  # resp.direct_connect_gateway_associations[0].virtual_gateway_id #=> String
3537
3572
  # resp.direct_connect_gateway_associations[0].virtual_gateway_region #=> String
3538
3573
  # resp.direct_connect_gateway_associations[0].virtual_gateway_owner_account #=> String
@@ -4726,6 +4761,9 @@ module Aws::DirectConnect
4726
4761
  # resp.direct_connect_gateway_association.association_id #=> String
4727
4762
  # resp.direct_connect_gateway_association.allowed_prefixes_to_direct_connect_gateway #=> Array
4728
4763
  # resp.direct_connect_gateway_association.allowed_prefixes_to_direct_connect_gateway[0].cidr #=> String
4764
+ # resp.direct_connect_gateway_association.associated_core_network.id #=> String
4765
+ # resp.direct_connect_gateway_association.associated_core_network.owner_account #=> String
4766
+ # resp.direct_connect_gateway_association.associated_core_network.attachment_id #=> String
4729
4767
  # resp.direct_connect_gateway_association.virtual_gateway_id #=> String
4730
4768
  # resp.direct_connect_gateway_association.virtual_gateway_region #=> String
4731
4769
  # resp.direct_connect_gateway_association.virtual_gateway_owner_account #=> String
@@ -5009,7 +5047,7 @@ module Aws::DirectConnect
5009
5047
  tracer: tracer
5010
5048
  )
5011
5049
  context[:gem_name] = 'aws-sdk-directconnect'
5012
- context[:gem_version] = '1.84.0'
5050
+ context[:gem_version] = '1.86.0'
5013
5051
  Seahorse::Client::Request.new(handlers, context)
5014
5052
  end
5015
5053
 
@@ -32,6 +32,7 @@ module Aws::DirectConnect
32
32
  AssociateMacSecKeyRequest = Shapes::StructureShape.new(name: 'AssociateMacSecKeyRequest')
33
33
  AssociateMacSecKeyResponse = Shapes::StructureShape.new(name: 'AssociateMacSecKeyResponse')
34
34
  AssociateVirtualInterfaceRequest = Shapes::StructureShape.new(name: 'AssociateVirtualInterfaceRequest')
35
+ AssociatedCoreNetwork = Shapes::StructureShape.new(name: 'AssociatedCoreNetwork')
35
36
  AssociatedGateway = Shapes::StructureShape.new(name: 'AssociatedGateway')
36
37
  AssociatedGatewayId = Shapes::StringShape.new(name: 'AssociatedGatewayId')
37
38
  AvailableMacSecPortSpeeds = Shapes::ListShape.new(name: 'AvailableMacSecPortSpeeds')
@@ -67,6 +68,8 @@ module Aws::DirectConnect
67
68
  ConnectionName = Shapes::StringShape.new(name: 'ConnectionName')
68
69
  ConnectionState = Shapes::StringShape.new(name: 'ConnectionState')
69
70
  Connections = Shapes::StructureShape.new(name: 'Connections')
71
+ CoreNetworkAttachmentId = Shapes::StringShape.new(name: 'CoreNetworkAttachmentId')
72
+ CoreNetworkIdentifier = Shapes::StringShape.new(name: 'CoreNetworkIdentifier')
70
73
  Count = Shapes::IntegerShape.new(name: 'Count')
71
74
  CreateBGPPeerRequest = Shapes::StructureShape.new(name: 'CreateBGPPeerRequest')
72
75
  CreateBGPPeerResponse = Shapes::StructureShape.new(name: 'CreateBGPPeerResponse')
@@ -330,6 +333,11 @@ module Aws::DirectConnect
330
333
  AssociateVirtualInterfaceRequest.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
331
334
  AssociateVirtualInterfaceRequest.struct_class = Types::AssociateVirtualInterfaceRequest
332
335
 
336
+ AssociatedCoreNetwork.add_member(:id, Shapes::ShapeRef.new(shape: CoreNetworkIdentifier, location_name: "id"))
337
+ AssociatedCoreNetwork.add_member(:owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, location_name: "ownerAccount"))
338
+ AssociatedCoreNetwork.add_member(:attachment_id, Shapes::ShapeRef.new(shape: CoreNetworkAttachmentId, location_name: "attachmentId"))
339
+ AssociatedCoreNetwork.struct_class = Types::AssociatedCoreNetwork
340
+
333
341
  AssociatedGateway.add_member(:id, Shapes::ShapeRef.new(shape: GatewayIdentifier, location_name: "id"))
334
342
  AssociatedGateway.add_member(:type, Shapes::ShapeRef.new(shape: GatewayType, location_name: "type"))
335
343
  AssociatedGateway.add_member(:owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, location_name: "ownerAccount"))
@@ -665,6 +673,7 @@ module Aws::DirectConnect
665
673
  DirectConnectGatewayAssociation.add_member(:associated_gateway, Shapes::ShapeRef.new(shape: AssociatedGateway, location_name: "associatedGateway"))
666
674
  DirectConnectGatewayAssociation.add_member(:association_id, Shapes::ShapeRef.new(shape: DirectConnectGatewayAssociationId, location_name: "associationId"))
667
675
  DirectConnectGatewayAssociation.add_member(:allowed_prefixes_to_direct_connect_gateway, Shapes::ShapeRef.new(shape: RouteFilterPrefixList, location_name: "allowedPrefixesToDirectConnectGateway"))
676
+ DirectConnectGatewayAssociation.add_member(:associated_core_network, Shapes::ShapeRef.new(shape: AssociatedCoreNetwork, location_name: "associatedCoreNetwork"))
668
677
  DirectConnectGatewayAssociation.add_member(:virtual_gateway_id, Shapes::ShapeRef.new(shape: VirtualGatewayId, location_name: "virtualGatewayId"))
669
678
  DirectConnectGatewayAssociation.add_member(:virtual_gateway_region, Shapes::ShapeRef.new(shape: VirtualGatewayRegion, deprecated: true, location_name: "virtualGatewayRegion"))
670
679
  DirectConnectGatewayAssociation.add_member(:virtual_gateway_owner_account, Shapes::ShapeRef.new(shape: OwnerAccount, location_name: "virtualGatewayOwnerAccount"))
@@ -347,6 +347,31 @@ module Aws::DirectConnect
347
347
  include Aws::Structure
348
348
  end
349
349
 
350
+ # The Amazon Web Services Cloud WAN core network that the Direct Connect
351
+ # attachment is associated with.
352
+ #
353
+ # @!attribute [rw] id
354
+ # The ID of the Cloud WAN core network.
355
+ # @return [String]
356
+ #
357
+ # @!attribute [rw] owner_account
358
+ # The account owner of the Cloud WAN core network.
359
+ # @return [String]
360
+ #
361
+ # @!attribute [rw] attachment_id
362
+ # the ID of the Direct Connect attachment
363
+ # @return [String]
364
+ #
365
+ # @see http://docs.aws.amazon.com/goto/WebAPI/directconnect-2012-10-25/AssociatedCoreNetwork AWS API Documentation
366
+ #
367
+ class AssociatedCoreNetwork < Struct.new(
368
+ :id,
369
+ :owner_account,
370
+ :attachment_id)
371
+ SENSITIVE = []
372
+ include Aws::Structure
373
+ end
374
+
350
375
  # Information about the associated gateway.
351
376
  #
352
377
  # @!attribute [rw] id
@@ -2134,6 +2159,11 @@ module Aws::DirectConnect
2134
2159
  # The Amazon VPC prefixes to advertise to the Direct Connect gateway.
2135
2160
  # @return [Array<Types::RouteFilterPrefix>]
2136
2161
  #
2162
+ # @!attribute [rw] associated_core_network
2163
+ # The ID of the Cloud WAN core network associated with the Direct
2164
+ # Connect attachment.
2165
+ # @return [Types::AssociatedCoreNetwork]
2166
+ #
2137
2167
  # @!attribute [rw] virtual_gateway_id
2138
2168
  # The ID of the virtual private gateway. Applies only to private
2139
2169
  # virtual interfaces.
@@ -2159,6 +2189,7 @@ module Aws::DirectConnect
2159
2189
  :associated_gateway,
2160
2190
  :association_id,
2161
2191
  :allowed_prefixes_to_direct_connect_gateway,
2192
+ :associated_core_network,
2162
2193
  :virtual_gateway_id,
2163
2194
  :virtual_gateway_region,
2164
2195
  :virtual_gateway_owner_account)
@@ -54,7 +54,7 @@ module Aws::DirectConnect
54
54
  autoload :EndpointProvider, 'aws-sdk-directconnect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-directconnect/endpoints'
56
56
 
57
- GEM_VERSION = '1.84.0'
57
+ GEM_VERSION = '1.86.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -98,6 +98,13 @@ module Aws::DirectConnect
98
98
  SENSITIVE: []
99
99
  end
100
100
 
101
+ class AssociatedCoreNetwork
102
+ attr_accessor id: ::String
103
+ attr_accessor owner_account: ::String
104
+ attr_accessor attachment_id: ::String
105
+ SENSITIVE: []
106
+ end
107
+
101
108
  class AssociatedGateway
102
109
  attr_accessor id: ::String
103
110
  attr_accessor type: ("virtualPrivateGateway" | "transitGateway")
@@ -564,6 +571,7 @@ module Aws::DirectConnect
564
571
  attr_accessor associated_gateway: Types::AssociatedGateway
565
572
  attr_accessor association_id: ::String
566
573
  attr_accessor allowed_prefixes_to_direct_connect_gateway: ::Array[Types::RouteFilterPrefix]
574
+ attr_accessor associated_core_network: Types::AssociatedCoreNetwork
567
575
  attr_accessor virtual_gateway_id: ::String
568
576
  attr_accessor virtual_gateway_region: ::String
569
577
  attr_accessor virtual_gateway_owner_account: ::String
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.84.0
4
+ version: 1.86.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-10-18 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement