aws-sdk-rdsdataservice 1.65.0 → 1.67.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ca910a3048bb0601c37a83fe8bc2028eb70d5717b798189ba448cb886d4bfd5
4
- data.tar.gz: b2ef4adab66c5fd5f7b3a58f5f69081d2216e4eeb171a15f11c08c5b4f4d7cbf
3
+ metadata.gz: 520dd0e2efc92be8eedb324269aa11533d08bcf21d673cfbf0d90c3678a8a774
4
+ data.tar.gz: ae2adaf8b50211a89c4cbfbbe476aeae26d6e9c1b7187cd50601920ec6c770c0
5
5
  SHA512:
6
- metadata.gz: 2624257f498115c89a235b70db450ef9154e12b8f39d949b967b9adcc0845a93378267aa655139bdc5a171c5761f3fa6bf147cde428000dd9f3ec19f754fe5be
7
- data.tar.gz: a4d626df5a44bd020a4c0058bdfec25b4e3607839942b9554b68f379fda82fa4332ce5a749bf2f60f35d8bff67f907736dcb8f6cc48ef7a415f17b5398c30ad6
6
+ metadata.gz: 23887d83c103e20e959ef1706b9ec9f833d57cde28c5905946d6c8e1d875e1f82091e7b9778406940af35b2007c080bf172f746e3465a97d76152cc21eb0c0a7
7
+ data.tar.gz: 37cd69ed449dfe8b00a39ef2cc421e066f691dc8080eb93f2d3ee1da21f84cb53869efb057912e87ad3ccebe9bb1f17424056b469a7a6a0132a7f0d31e0deece
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.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.66.0 (2024-11-18)
10
+ ------------------
11
+
12
+ * Feature - Add support for the automatic pause/resume feature of Aurora Serverless v2.
13
+
4
14
  1.65.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.67.0
@@ -257,11 +257,34 @@ module Aws::RDSDataService
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.
@@ -1037,7 +1060,7 @@ module Aws::RDSDataService
1037
1060
  tracer: tracer
1038
1061
  )
1039
1062
  context[:gem_name] = 'aws-sdk-rdsdataservice'
1040
- context[:gem_version] = '1.65.0'
1063
+ context[:gem_version] = '1.67.0'
1041
1064
  Seahorse::Client::Request.new(handlers, context)
1042
1065
  end
1043
1066
 
@@ -37,6 +37,7 @@ module Aws::RDSDataService
37
37
  CommitTransactionResponse = Shapes::StructureShape.new(name: 'CommitTransactionResponse')
38
38
  DatabaseErrorException = Shapes::StructureShape.new(name: 'DatabaseErrorException')
39
39
  DatabaseNotFoundException = Shapes::StructureShape.new(name: 'DatabaseNotFoundException')
40
+ DatabaseResumingException = Shapes::StructureShape.new(name: 'DatabaseResumingException')
40
41
  DatabaseUnavailableException = Shapes::StructureShape.new(name: 'DatabaseUnavailableException')
41
42
  DbName = Shapes::StringShape.new(name: 'DbName')
42
43
  DecimalReturnType = Shapes::StringShape.new(name: 'DecimalReturnType')
@@ -169,6 +170,9 @@ module Aws::RDSDataService
169
170
  DatabaseNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
170
171
  DatabaseNotFoundException.struct_class = Types::DatabaseNotFoundException
171
172
 
173
+ DatabaseResumingException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
174
+ DatabaseResumingException.struct_class = Types::DatabaseResumingException
175
+
172
176
  DatabaseUnavailableException.struct_class = Types::DatabaseUnavailableException
173
177
 
174
178
  DoubleArray.member = Shapes::ShapeRef.new(shape: BoxedDouble)
@@ -362,6 +366,7 @@ module Aws::RDSDataService
362
366
  o.errors << Shapes::ShapeRef.new(shape: SecretsErrorException)
363
367
  o.errors << Shapes::ShapeRef.new(shape: HttpEndpointNotEnabledException)
364
368
  o.errors << Shapes::ShapeRef.new(shape: DatabaseErrorException)
369
+ o.errors << Shapes::ShapeRef.new(shape: DatabaseResumingException)
365
370
  o.errors << Shapes::ShapeRef.new(shape: DatabaseUnavailableException)
366
371
  o.errors << Shapes::ShapeRef.new(shape: TransactionNotFoundException)
367
372
  o.errors << Shapes::ShapeRef.new(shape: InvalidSecretException)
@@ -383,6 +388,7 @@ module Aws::RDSDataService
383
388
  o.errors << Shapes::ShapeRef.new(shape: SecretsErrorException)
384
389
  o.errors << Shapes::ShapeRef.new(shape: HttpEndpointNotEnabledException)
385
390
  o.errors << Shapes::ShapeRef.new(shape: DatabaseErrorException)
391
+ o.errors << Shapes::ShapeRef.new(shape: DatabaseResumingException)
386
392
  o.errors << Shapes::ShapeRef.new(shape: DatabaseUnavailableException)
387
393
  o.errors << Shapes::ShapeRef.new(shape: TransactionNotFoundException)
388
394
  o.errors << Shapes::ShapeRef.new(shape: InvalidSecretException)
@@ -440,6 +446,7 @@ module Aws::RDSDataService
440
446
  o.errors << Shapes::ShapeRef.new(shape: SecretsErrorException)
441
447
  o.errors << Shapes::ShapeRef.new(shape: HttpEndpointNotEnabledException)
442
448
  o.errors << Shapes::ShapeRef.new(shape: DatabaseErrorException)
449
+ o.errors << Shapes::ShapeRef.new(shape: DatabaseResumingException)
443
450
  o.errors << Shapes::ShapeRef.new(shape: DatabaseUnavailableException)
444
451
  o.errors << Shapes::ShapeRef.new(shape: TransactionNotFoundException)
445
452
  o.errors << Shapes::ShapeRef.new(shape: InvalidSecretException)
@@ -31,6 +31,7 @@ module Aws::RDSDataService
31
31
  # * {BadRequestException}
32
32
  # * {DatabaseErrorException}
33
33
  # * {DatabaseNotFoundException}
34
+ # * {DatabaseResumingException}
34
35
  # * {DatabaseUnavailableException}
35
36
  # * {ForbiddenException}
36
37
  # * {HttpEndpointNotEnabledException}
@@ -109,6 +110,21 @@ module Aws::RDSDataService
109
110
  end
110
111
  end
111
112
 
113
+ class DatabaseResumingException < ServiceError
114
+
115
+ # @param [Seahorse::Client::RequestContext] context
116
+ # @param [String] message
117
+ # @param [Aws::RDSDataService::Types::DatabaseResumingException] data
118
+ def initialize(context, message, data = Aws::EmptyStructure.new)
119
+ super(context, message, data)
120
+ end
121
+
122
+ # @return [String]
123
+ def message
124
+ @message || @data[:message]
125
+ end
126
+ end
127
+
112
128
  class DatabaseUnavailableException < ServiceError
113
129
 
114
130
  # @param [Seahorse::Client::RequestContext] context
@@ -367,6 +367,21 @@ module Aws::RDSDataService
367
367
  include Aws::Structure
368
368
  end
369
369
 
370
+ # A request was canceled because the Aurora Serverless v2 DB instance
371
+ # was in a paused state. The Data API request automatically causes the
372
+ # DB instance to begin resuming. Wait a few seconds and try again.
373
+ #
374
+ # @!attribute [rw] message
375
+ # @return [String]
376
+ #
377
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-data-2018-08-01/DatabaseResumingException AWS API Documentation
378
+ #
379
+ class DatabaseResumingException < Struct.new(
380
+ :message)
381
+ SENSITIVE = []
382
+ include Aws::Structure
383
+ end
384
+
370
385
  # The writer instance in the DB cluster isn't available.
371
386
  #
372
387
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-data-2018-08-01/DatabaseUnavailableException AWS API Documentation
@@ -54,7 +54,7 @@ module Aws::RDSDataService
54
54
  autoload :EndpointProvider, 'aws-sdk-rdsdataservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-rdsdataservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.65.0'
57
+ GEM_VERSION = '1.67.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/errors.rbs CHANGED
@@ -23,6 +23,9 @@ module Aws
23
23
  class DatabaseNotFoundException < ::Aws::Errors::ServiceError
24
24
  def message: () -> ::String
25
25
  end
26
+ class DatabaseResumingException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
26
29
  class DatabaseUnavailableException < ::Aws::Errors::ServiceError
27
30
  end
28
31
  class ForbiddenException < ::Aws::Errors::ServiceError
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
@@ -110,6 +110,11 @@ module Aws::RDSDataService
110
110
  SENSITIVE: []
111
111
  end
112
112
 
113
+ class DatabaseResumingException
114
+ attr_accessor message: ::String
115
+ SENSITIVE: []
116
+ end
117
+
113
118
  class DatabaseUnavailableException < Aws::EmptyStructure
114
119
  end
115
120
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rdsdataservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.65.0
4
+ version: 1.67.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