aws-sdk-rdsdataservice 1.64.0 → 1.66.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: e5246a83a19bd3dcf66910c9cad4f8b98f5dee61f6406bbedb960b94e2c88ad9
4
- data.tar.gz: 24a5cce17323b671a0f8831a93a9a9e957c26e22d069a060b7f856c547feda6f
3
+ metadata.gz: 87e23cddc3ac3ffd9f8f8fcd0ecbc35887c6f11b8af1a9bd723d111f631ccbfa
4
+ data.tar.gz: ee0bc94ddb204a159d608690c830185f2e7792acb218c5687b9ece88804b9038
5
5
  SHA512:
6
- metadata.gz: 15c20e1145f1788d8a47a5125ed07245119bd6f454cd8de798553a3e78346abf33dba35de2df908cf3942f06d9c8be773a6a84b7c1647aa8b7ac2901aaeb9e1a
7
- data.tar.gz: 695561389fec283f4e6335013b1a7f9ddf5920bd6448c15bec1a807220b156a5077b84cb98e6c47d67867ffd83f19df6900dc6b4e29b7401c059db36f7ff939a
6
+ metadata.gz: e750861edfa0fb07abe4e27d5b472579dfe1eebcae7cdb246d183908ef3f7e453eb14785233ae291c65b98634d6e81710d049aef4f80236f104c3c631cbfa02e
7
+ data.tar.gz: 92dc99f39f265e03399b999a632eb4880564697e8cdd42b7603ee616ef73853d879f15fbfd5d1fba6953d1973ea1b8227208cf3e3455bc9fd245174fc735ccda
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2024-11-18)
5
+ ------------------
6
+
7
+ * Feature - Add support for the automatic pause/resume feature of Aurora Serverless v2.
8
+
9
+ 1.65.0 (2024-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.64.0 (2024-09-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.66.0
@@ -1037,7 +1037,7 @@ module Aws::RDSDataService
1037
1037
  tracer: tracer
1038
1038
  )
1039
1039
  context[:gem_name] = 'aws-sdk-rdsdataservice'
1040
- context[:gem_version] = '1.64.0'
1040
+ context[:gem_version] = '1.66.0'
1041
1041
  Seahorse::Client::Request.new(handlers, context)
1042
1042
  end
1043
1043
 
@@ -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)
@@ -52,15 +52,18 @@ module Aws::RDSDataService
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
55
  self[:use_fips] = options[:use_fips]
59
56
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end
@@ -12,71 +12,9 @@ module Aws::RDSDataService
12
12
  # @api private
13
13
  module Endpoints
14
14
 
15
- class BatchExecuteStatement
16
- def self.build(context)
17
- Aws::RDSDataService::EndpointParameters.new(
18
- region: context.config.region,
19
- use_dual_stack: context.config.use_dualstack_endpoint,
20
- use_fips: context.config.use_fips_endpoint,
21
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
22
- )
23
- end
24
- end
25
-
26
- class BeginTransaction
27
- def self.build(context)
28
- Aws::RDSDataService::EndpointParameters.new(
29
- region: context.config.region,
30
- use_dual_stack: context.config.use_dualstack_endpoint,
31
- use_fips: context.config.use_fips_endpoint,
32
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
33
- )
34
- end
35
- end
36
-
37
- class CommitTransaction
38
- def self.build(context)
39
- Aws::RDSDataService::EndpointParameters.new(
40
- region: context.config.region,
41
- use_dual_stack: context.config.use_dualstack_endpoint,
42
- use_fips: context.config.use_fips_endpoint,
43
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
44
- )
45
- end
46
- end
47
15
 
48
- class ExecuteSql
49
- def self.build(context)
50
- Aws::RDSDataService::EndpointParameters.new(
51
- region: context.config.region,
52
- use_dual_stack: context.config.use_dualstack_endpoint,
53
- use_fips: context.config.use_fips_endpoint,
54
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
55
- )
56
- end
16
+ def self.parameters_for_operation(context)
17
+ Aws::RDSDataService::EndpointParameters.create(context.config)
57
18
  end
58
-
59
- class ExecuteStatement
60
- def self.build(context)
61
- Aws::RDSDataService::EndpointParameters.new(
62
- region: context.config.region,
63
- use_dual_stack: context.config.use_dualstack_endpoint,
64
- use_fips: context.config.use_fips_endpoint,
65
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
66
- )
67
- end
68
- end
69
-
70
- class RollbackTransaction
71
- def self.build(context)
72
- Aws::RDSDataService::EndpointParameters.new(
73
- region: context.config.region,
74
- use_dual_stack: context.config.use_dualstack_endpoint,
75
- use_fips: context.config.use_fips_endpoint,
76
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
77
- )
78
- end
79
- end
80
-
81
19
  end
82
20
  end
@@ -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
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
27
27
  class Handler < Seahorse::Client::Handler
28
28
  def call(context)
29
29
  unless context[:discovered_endpoint]
30
- params = parameters_for_operation(context)
30
+ params = Aws::RDSDataService::Endpoints.parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
@@ -67,23 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
67
67
  context.http_request.headers[key] = value
68
68
  end
69
69
  end
70
-
71
- def parameters_for_operation(context)
72
- case context.operation_name
73
- when :batch_execute_statement
74
- Aws::RDSDataService::Endpoints::BatchExecuteStatement.build(context)
75
- when :begin_transaction
76
- Aws::RDSDataService::Endpoints::BeginTransaction.build(context)
77
- when :commit_transaction
78
- Aws::RDSDataService::Endpoints::CommitTransaction.build(context)
79
- when :execute_sql
80
- Aws::RDSDataService::Endpoints::ExecuteSql.build(context)
81
- when :execute_statement
82
- Aws::RDSDataService::Endpoints::ExecuteStatement.build(context)
83
- when :rollback_transaction
84
- Aws::RDSDataService::Endpoints::RollbackTransaction.build(context)
85
- end
86
- end
87
70
  end
88
71
 
89
72
  def add_handlers(handlers, _config)
@@ -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.64.0'
57
+ GEM_VERSION = '1.66.0'
58
58
 
59
59
  end
60
60
 
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/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.64.0
4
+ version: 1.66.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-09-26 00:00:00.000000000 Z
11
+ date: 2024-11-18 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.207.0
22
+ version: 3.210.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.207.0
32
+ version: 3.210.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement