aws-sdk-rds 1.213.0 → 1.214.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.
data/sig/waiters.rbs ADDED
@@ -0,0 +1,217 @@
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
+ module Waiters
11
+
12
+ class DBClusterAvailable
13
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
14
+ | (?Hash[Symbol, untyped]) -> void
15
+
16
+ def wait: (
17
+ ?db_cluster_identifier: ::String,
18
+ ?filters: Array[
19
+ {
20
+ name: ::String,
21
+ values: Array[::String]
22
+ },
23
+ ],
24
+ ?max_records: ::Integer,
25
+ ?marker: ::String,
26
+ ?include_shared: bool
27
+ ) -> Client::_DescribeDBClustersResponseSuccess
28
+ | (?Hash[Symbol, untyped]) -> Client::_DescribeDBClustersResponseSuccess
29
+ end
30
+
31
+ class DBClusterDeleted
32
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
33
+ | (?Hash[Symbol, untyped]) -> void
34
+
35
+ def wait: (
36
+ ?db_cluster_identifier: ::String,
37
+ ?filters: Array[
38
+ {
39
+ name: ::String,
40
+ values: Array[::String]
41
+ },
42
+ ],
43
+ ?max_records: ::Integer,
44
+ ?marker: ::String,
45
+ ?include_shared: bool
46
+ ) -> Client::_DescribeDBClustersResponseSuccess
47
+ | (?Hash[Symbol, untyped]) -> Client::_DescribeDBClustersResponseSuccess
48
+ end
49
+
50
+ class DBClusterSnapshotAvailable
51
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
52
+ | (?Hash[Symbol, untyped]) -> void
53
+
54
+ def wait: (
55
+ ?db_cluster_identifier: ::String,
56
+ ?db_cluster_snapshot_identifier: ::String,
57
+ ?snapshot_type: ::String,
58
+ ?filters: Array[
59
+ {
60
+ name: ::String,
61
+ values: Array[::String]
62
+ },
63
+ ],
64
+ ?max_records: ::Integer,
65
+ ?marker: ::String,
66
+ ?include_shared: bool,
67
+ ?include_public: bool,
68
+ ?db_cluster_resource_id: ::String
69
+ ) -> Client::_DescribeDBClusterSnapshotsResponseSuccess
70
+ | (?Hash[Symbol, untyped]) -> Client::_DescribeDBClusterSnapshotsResponseSuccess
71
+ end
72
+
73
+ class DBClusterSnapshotDeleted
74
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
75
+ | (?Hash[Symbol, untyped]) -> void
76
+
77
+ def wait: (
78
+ ?db_cluster_identifier: ::String,
79
+ ?db_cluster_snapshot_identifier: ::String,
80
+ ?snapshot_type: ::String,
81
+ ?filters: Array[
82
+ {
83
+ name: ::String,
84
+ values: Array[::String]
85
+ },
86
+ ],
87
+ ?max_records: ::Integer,
88
+ ?marker: ::String,
89
+ ?include_shared: bool,
90
+ ?include_public: bool,
91
+ ?db_cluster_resource_id: ::String
92
+ ) -> Client::_DescribeDBClusterSnapshotsResponseSuccess
93
+ | (?Hash[Symbol, untyped]) -> Client::_DescribeDBClusterSnapshotsResponseSuccess
94
+ end
95
+
96
+ class DBInstanceAvailable
97
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
98
+ | (?Hash[Symbol, untyped]) -> void
99
+
100
+ def wait: (
101
+ ?db_instance_identifier: ::String,
102
+ ?filters: Array[
103
+ {
104
+ name: ::String,
105
+ values: Array[::String]
106
+ },
107
+ ],
108
+ ?max_records: ::Integer,
109
+ ?marker: ::String
110
+ ) -> Client::_DescribeDBInstancesResponseSuccess
111
+ | (?Hash[Symbol, untyped]) -> Client::_DescribeDBInstancesResponseSuccess
112
+ end
113
+
114
+ class DBInstanceDeleted
115
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
116
+ | (?Hash[Symbol, untyped]) -> void
117
+
118
+ def wait: (
119
+ ?db_instance_identifier: ::String,
120
+ ?filters: Array[
121
+ {
122
+ name: ::String,
123
+ values: Array[::String]
124
+ },
125
+ ],
126
+ ?max_records: ::Integer,
127
+ ?marker: ::String
128
+ ) -> Client::_DescribeDBInstancesResponseSuccess
129
+ | (?Hash[Symbol, untyped]) -> Client::_DescribeDBInstancesResponseSuccess
130
+ end
131
+
132
+ class DBSnapshotAvailable
133
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
134
+ | (?Hash[Symbol, untyped]) -> void
135
+
136
+ def wait: (
137
+ ?db_instance_identifier: ::String,
138
+ ?db_snapshot_identifier: ::String,
139
+ ?snapshot_type: ::String,
140
+ ?filters: Array[
141
+ {
142
+ name: ::String,
143
+ values: Array[::String]
144
+ },
145
+ ],
146
+ ?max_records: ::Integer,
147
+ ?marker: ::String,
148
+ ?include_shared: bool,
149
+ ?include_public: bool,
150
+ ?dbi_resource_id: ::String
151
+ ) -> Client::_DescribeDBSnapshotsResponseSuccess
152
+ | (?Hash[Symbol, untyped]) -> Client::_DescribeDBSnapshotsResponseSuccess
153
+ end
154
+
155
+ class DBSnapshotDeleted
156
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
157
+ | (?Hash[Symbol, untyped]) -> void
158
+
159
+ def wait: (
160
+ ?db_instance_identifier: ::String,
161
+ ?db_snapshot_identifier: ::String,
162
+ ?snapshot_type: ::String,
163
+ ?filters: Array[
164
+ {
165
+ name: ::String,
166
+ values: Array[::String]
167
+ },
168
+ ],
169
+ ?max_records: ::Integer,
170
+ ?marker: ::String,
171
+ ?include_shared: bool,
172
+ ?include_public: bool,
173
+ ?dbi_resource_id: ::String
174
+ ) -> Client::_DescribeDBSnapshotsResponseSuccess
175
+ | (?Hash[Symbol, untyped]) -> Client::_DescribeDBSnapshotsResponseSuccess
176
+ end
177
+
178
+ class TenantDatabaseAvailable
179
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
180
+ | (?Hash[Symbol, untyped]) -> void
181
+
182
+ def wait: (
183
+ ?db_instance_identifier: ::String,
184
+ ?tenant_db_name: ::String,
185
+ ?filters: Array[
186
+ {
187
+ name: ::String,
188
+ values: Array[::String]
189
+ },
190
+ ],
191
+ ?marker: ::String,
192
+ ?max_records: ::Integer
193
+ ) -> Client::_DescribeTenantDatabasesResponseSuccess
194
+ | (?Hash[Symbol, untyped]) -> Client::_DescribeTenantDatabasesResponseSuccess
195
+ end
196
+
197
+ class TenantDatabaseDeleted
198
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
199
+ | (?Hash[Symbol, untyped]) -> void
200
+
201
+ def wait: (
202
+ ?db_instance_identifier: ::String,
203
+ ?tenant_db_name: ::String,
204
+ ?filters: Array[
205
+ {
206
+ name: ::String,
207
+ values: Array[::String]
208
+ },
209
+ ],
210
+ ?marker: ::String,
211
+ ?max_records: ::Integer
212
+ ) -> Client::_DescribeTenantDatabasesResponseSuccess
213
+ | (?Hash[Symbol, untyped]) -> Client::_DescribeTenantDatabasesResponseSuccess
214
+ end
215
+ end
216
+ end
217
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.213.0
4
+ version: 1.214.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-01-24 00:00:00.000000000 Z
11
+ date: 2024-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '3'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 3.188.0
36
+ version: 3.191.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '3'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 3.188.0
46
+ version: 3.191.0
47
47
  description: Official AWS Ruby gem for Amazon Relational Database Service (Amazon
48
48
  RDS). This gem is part of the AWS SDK for Ruby.
49
49
  email:
@@ -94,6 +94,36 @@ files:
94
94
  - lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb
95
95
  - lib/aws-sdk-rds/types.rb
96
96
  - lib/aws-sdk-rds/waiters.rb
97
+ - sig/account_quota.rbs
98
+ - sig/certificate.rbs
99
+ - sig/client.rbs
100
+ - sig/db_cluster.rbs
101
+ - sig/db_cluster_parameter_group.rbs
102
+ - sig/db_cluster_snapshot.rbs
103
+ - sig/db_engine.rbs
104
+ - sig/db_engine_version.rbs
105
+ - sig/db_instance.rbs
106
+ - sig/db_log_file.rbs
107
+ - sig/db_parameter_group.rbs
108
+ - sig/db_parameter_group_family.rbs
109
+ - sig/db_security_group.rbs
110
+ - sig/db_snapshot.rbs
111
+ - sig/db_snapshot_attribute.rbs
112
+ - sig/db_subnet_group.rbs
113
+ - sig/errors.rbs
114
+ - sig/event.rbs
115
+ - sig/event_category_map.rbs
116
+ - sig/event_subscription.rbs
117
+ - sig/option_group.rbs
118
+ - sig/option_group_option.rbs
119
+ - sig/parameter.rbs
120
+ - sig/pending_maintenance_action.rbs
121
+ - sig/reserved_db_instance.rbs
122
+ - sig/reserved_db_instances_offering.rbs
123
+ - sig/resource.rbs
124
+ - sig/resource_pending_maintenance_action_list.rbs
125
+ - sig/types.rbs
126
+ - sig/waiters.rbs
97
127
  homepage: https://github.com/aws/aws-sdk-ruby
98
128
  licenses:
99
129
  - Apache-2.0