aws-sdk-rds 1.213.0 → 1.215.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: 03e0b8ede0f4bc09c39e9abf3e1329a88e75efbcaf940dba87965a1600c1aa2d
4
- data.tar.gz: e61e52701f390343408473da5d88a943091ac1149612e34c6aff3b79bf0afb59
3
+ metadata.gz: 1744a74b747edecece6be73797ea20d5da741e4447fa822a763f3620becdc5ec
4
+ data.tar.gz: 7d9dc9bcab0308513f10ccad3af2ceac2e0ca9704a89fb65cf0658ccf170dbd0
5
5
  SHA512:
6
- metadata.gz: 95c9267790800cc82ba740ddb560e591fc1d2b9e726381821db2388ec1a0504537188ba5ddf0a7159cbe07717d6bf9ffc2f63a9fa44d7e192659bfc85b13a43b
7
- data.tar.gz: b510d72f22d380a8a07cdf7108511452a528b961623fddcee35c3a97c1f5c136f358eed597e6c8d8782f39c337f78e6b6541cba356d773c5c2e4389bc39fd012
6
+ metadata.gz: f03417aaaf6ad8f7346e727d67402ddaf62102c2d3707da4346338a5fe810b107bc9c18690401feb71307999447c5f43c0312d60bb50e73982b0098521c6c109
7
+ data.tar.gz: cd12c102de6b1667d516fc8b0d225ebc604aacc62806bbc3e21167c5a940acb9c0119a9f8c2b58f10eb93a8130118b3b411a8160bd0cbc1b1ba2357fc4750e0f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.215.0 (2024-01-29)
5
+ ------------------
6
+
7
+ * Feature - Introduced support for the InsufficientDBInstanceCapacityFault error in the RDS RestoreDBClusterFromSnapshot and RestoreDBClusterToPointInTime API methods. This provides enhanced error handling, ensuring a more robust experience.
8
+
9
+ 1.214.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.213.0 (2024-01-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.213.0
1
+ 1.215.0
@@ -30413,7 +30413,7 @@ module Aws::RDS
30413
30413
  params: params,
30414
30414
  config: config)
30415
30415
  context[:gem_name] = 'aws-sdk-rds'
30416
- context[:gem_version] = '1.213.0'
30416
+ context[:gem_version] = '1.215.0'
30417
30417
  Seahorse::Client::Request.new(handlers, context)
30418
30418
  end
30419
30419
 
@@ -6178,6 +6178,7 @@ module Aws::RDS
6178
6178
  o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
6179
6179
  o.errors << Shapes::ShapeRef.new(shape: DBClusterParameterGroupNotFoundFault)
6180
6180
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
6181
+ o.errors << Shapes::ShapeRef.new(shape: InsufficientDBInstanceCapacityFault)
6181
6182
  end)
6182
6183
 
6183
6184
  api.add_operation(:restore_db_cluster_to_point_in_time, Seahorse::Model::Operation.new.tap do |o|
@@ -6205,6 +6206,7 @@ module Aws::RDS
6205
6206
  o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
6206
6207
  o.errors << Shapes::ShapeRef.new(shape: DBClusterParameterGroupNotFoundFault)
6207
6208
  o.errors << Shapes::ShapeRef.new(shape: DBClusterAutomatedBackupNotFoundFault)
6209
+ o.errors << Shapes::ShapeRef.new(shape: InsufficientDBInstanceCapacityFault)
6208
6210
  end)
6209
6211
 
6210
6212
  api.add_operation(:restore_db_instance_from_db_snapshot, Seahorse::Model::Operation.new.tap do |o|
@@ -14,6 +14,7 @@ module Aws::RDS
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::RDS::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.213.0'
81
+ GEM_VERSION = '1.215.0'
82
82
 
83
83
  end
@@ -0,0 +1,41 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module RDS
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/AccountQuota.html
11
+ class AccountQuota
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/AccountQuota.html#initialize-instance_method
13
+ def initialize: (String name, Hash[Symbol, untyped] options) -> void
14
+ | (name: String, ?client: Client) -> void
15
+ | (Hash[Symbol, untyped] args) -> void
16
+
17
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/AccountQuota.html#name-instance_method
18
+ def name: () -> String
19
+ alias account_quota_name name
20
+
21
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/AccountQuota.html#used-instance_method
22
+ def used: () -> ::Integer
23
+
24
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/AccountQuota.html#max-instance_method
25
+ def max: () -> ::Integer
26
+
27
+ def client: () -> Client
28
+
29
+
30
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/AccountQuota.html#data-instance_method
31
+ def data: () -> Types::AccountQuota
32
+
33
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/AccountQuota.html#data_loaded?-instance_method
34
+ def data_loaded?: () -> bool
35
+
36
+
37
+ class Collection < ::Aws::Resources::Collection[AccountQuota]
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,59 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module RDS
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html
11
+ class Certificate
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#initialize-instance_method
13
+ def initialize: (String id, Hash[Symbol, untyped] options) -> void
14
+ | (id: String, ?client: Client) -> void
15
+ | (Hash[Symbol, untyped] args) -> void
16
+
17
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#id-instance_method
18
+ def id: () -> String
19
+ alias certificate_identifier id
20
+
21
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#certificate_type-instance_method
22
+ def certificate_type: () -> ::String
23
+
24
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#thumbprint-instance_method
25
+ def thumbprint: () -> ::String
26
+
27
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#valid_from-instance_method
28
+ def valid_from: () -> ::Time
29
+
30
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#valid_till-instance_method
31
+ def valid_till: () -> ::Time
32
+
33
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#certificate_arn-instance_method
34
+ def certificate_arn: () -> ::String
35
+
36
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#customer_override-instance_method
37
+ def customer_override: () -> bool
38
+
39
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#customer_override_valid_till-instance_method
40
+ def customer_override_valid_till: () -> ::Time
41
+
42
+ def client: () -> Client
43
+
44
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#load-instance_method
45
+ def load: () -> self
46
+ alias reload load
47
+
48
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#data-instance_method
49
+ def data: () -> Types::Certificate
50
+
51
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Certificate.html#data_loaded?-instance_method
52
+ def data_loaded?: () -> bool
53
+
54
+
55
+ class Collection < ::Aws::Resources::Collection[Certificate]
56
+ end
57
+ end
58
+ end
59
+ end