aws-sdk-rdsdataservice 1.49.0 → 1.51.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/types.rbs ADDED
@@ -0,0 +1,326 @@
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::RDSDataService
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ArrayValue
17
+ attr_accessor boolean_values: ::Array[bool]
18
+ attr_accessor long_values: ::Array[::Integer]
19
+ attr_accessor double_values: ::Array[::Float]
20
+ attr_accessor string_values: ::Array[::String]
21
+ attr_accessor array_values: ::Array[Types::ArrayValue]
22
+ attr_accessor unknown: untyped
23
+ SENSITIVE: []
24
+
25
+ class BooleanValues < ArrayValue
26
+ end
27
+ class LongValues < ArrayValue
28
+ end
29
+ class DoubleValues < ArrayValue
30
+ end
31
+ class StringValues < ArrayValue
32
+ end
33
+ class ArrayValues < ArrayValue
34
+ end
35
+ class Unknown < ArrayValue
36
+ end
37
+ end
38
+
39
+ class BadRequestException
40
+ attr_accessor message: ::String
41
+ SENSITIVE: []
42
+ end
43
+
44
+ class BatchExecuteStatementRequest
45
+ attr_accessor resource_arn: ::String
46
+ attr_accessor secret_arn: ::String
47
+ attr_accessor sql: ::String
48
+ attr_accessor database: ::String
49
+ attr_accessor schema: ::String
50
+ attr_accessor parameter_sets: ::Array[::Array[Types::SqlParameter]]
51
+ attr_accessor transaction_id: ::String
52
+ SENSITIVE: []
53
+ end
54
+
55
+ class BatchExecuteStatementResponse
56
+ attr_accessor update_results: ::Array[Types::UpdateResult]
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class BeginTransactionRequest
61
+ attr_accessor resource_arn: ::String
62
+ attr_accessor secret_arn: ::String
63
+ attr_accessor database: ::String
64
+ attr_accessor schema: ::String
65
+ SENSITIVE: []
66
+ end
67
+
68
+ class BeginTransactionResponse
69
+ attr_accessor transaction_id: ::String
70
+ SENSITIVE: []
71
+ end
72
+
73
+ class ColumnMetadata
74
+ attr_accessor name: ::String
75
+ attr_accessor type: ::Integer
76
+ attr_accessor type_name: ::String
77
+ attr_accessor label: ::String
78
+ attr_accessor schema_name: ::String
79
+ attr_accessor table_name: ::String
80
+ attr_accessor is_auto_increment: bool
81
+ attr_accessor is_signed: bool
82
+ attr_accessor is_currency: bool
83
+ attr_accessor is_case_sensitive: bool
84
+ attr_accessor nullable: ::Integer
85
+ attr_accessor precision: ::Integer
86
+ attr_accessor scale: ::Integer
87
+ attr_accessor array_base_column_type: ::Integer
88
+ SENSITIVE: []
89
+ end
90
+
91
+ class CommitTransactionRequest
92
+ attr_accessor resource_arn: ::String
93
+ attr_accessor secret_arn: ::String
94
+ attr_accessor transaction_id: ::String
95
+ SENSITIVE: []
96
+ end
97
+
98
+ class CommitTransactionResponse
99
+ attr_accessor transaction_status: ::String
100
+ SENSITIVE: []
101
+ end
102
+
103
+ class DatabaseErrorException
104
+ attr_accessor message: ::String
105
+ SENSITIVE: []
106
+ end
107
+
108
+ class DatabaseNotFoundException
109
+ attr_accessor message: ::String
110
+ SENSITIVE: []
111
+ end
112
+
113
+ class DatabaseUnavailableException < Aws::EmptyStructure
114
+ end
115
+
116
+ class ExecuteSqlRequest
117
+ attr_accessor db_cluster_or_instance_arn: ::String
118
+ attr_accessor aws_secret_store_arn: ::String
119
+ attr_accessor sql_statements: ::String
120
+ attr_accessor database: ::String
121
+ attr_accessor schema: ::String
122
+ SENSITIVE: []
123
+ end
124
+
125
+ class ExecuteSqlResponse
126
+ attr_accessor sql_statement_results: ::Array[Types::SqlStatementResult]
127
+ SENSITIVE: []
128
+ end
129
+
130
+ class ExecuteStatementRequest
131
+ attr_accessor resource_arn: ::String
132
+ attr_accessor secret_arn: ::String
133
+ attr_accessor sql: ::String
134
+ attr_accessor database: ::String
135
+ attr_accessor schema: ::String
136
+ attr_accessor parameters: ::Array[Types::SqlParameter]
137
+ attr_accessor transaction_id: ::String
138
+ attr_accessor include_result_metadata: bool
139
+ attr_accessor continue_after_timeout: bool
140
+ attr_accessor result_set_options: Types::ResultSetOptions
141
+ attr_accessor format_records_as: ("NONE" | "JSON")
142
+ SENSITIVE: []
143
+ end
144
+
145
+ class ExecuteStatementResponse
146
+ attr_accessor records: ::Array[::Array[Types::Field]]
147
+ attr_accessor column_metadata: ::Array[Types::ColumnMetadata]
148
+ attr_accessor number_of_records_updated: ::Integer
149
+ attr_accessor generated_fields: ::Array[Types::Field]
150
+ attr_accessor formatted_records: ::String
151
+ SENSITIVE: []
152
+ end
153
+
154
+ class Field
155
+ attr_accessor is_null: bool
156
+ attr_accessor boolean_value: bool
157
+ attr_accessor long_value: ::Integer
158
+ attr_accessor double_value: ::Float
159
+ attr_accessor string_value: ::String
160
+ attr_accessor blob_value: ::String
161
+ attr_accessor array_value: Types::ArrayValue
162
+ attr_accessor unknown: untyped
163
+ SENSITIVE: []
164
+
165
+ class IsNull < Field
166
+ end
167
+ class BooleanValue < Field
168
+ end
169
+ class LongValue < Field
170
+ end
171
+ class DoubleValue < Field
172
+ end
173
+ class StringValue < Field
174
+ end
175
+ class BlobValue < Field
176
+ end
177
+ class ArrayValue < Field
178
+ end
179
+ class Unknown < Field
180
+ end
181
+ end
182
+
183
+ class ForbiddenException
184
+ attr_accessor message: ::String
185
+ SENSITIVE: []
186
+ end
187
+
188
+ class HttpEndpointNotEnabledException
189
+ attr_accessor message: ::String
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class InternalServerErrorException < Aws::EmptyStructure
194
+ end
195
+
196
+ class InvalidSecretException
197
+ attr_accessor message: ::String
198
+ SENSITIVE: []
199
+ end
200
+
201
+ class NotFoundException
202
+ attr_accessor message: ::String
203
+ SENSITIVE: []
204
+ end
205
+
206
+ class Record
207
+ attr_accessor values: ::Array[Types::Value]
208
+ SENSITIVE: []
209
+ end
210
+
211
+ class ResultFrame
212
+ attr_accessor result_set_metadata: Types::ResultSetMetadata
213
+ attr_accessor records: ::Array[Types::Record]
214
+ SENSITIVE: []
215
+ end
216
+
217
+ class ResultSetMetadata
218
+ attr_accessor column_count: ::Integer
219
+ attr_accessor column_metadata: ::Array[Types::ColumnMetadata]
220
+ SENSITIVE: []
221
+ end
222
+
223
+ class ResultSetOptions
224
+ attr_accessor decimal_return_type: ("STRING" | "DOUBLE_OR_LONG")
225
+ attr_accessor long_return_type: ("STRING" | "LONG")
226
+ SENSITIVE: []
227
+ end
228
+
229
+ class RollbackTransactionRequest
230
+ attr_accessor resource_arn: ::String
231
+ attr_accessor secret_arn: ::String
232
+ attr_accessor transaction_id: ::String
233
+ SENSITIVE: []
234
+ end
235
+
236
+ class RollbackTransactionResponse
237
+ attr_accessor transaction_status: ::String
238
+ SENSITIVE: []
239
+ end
240
+
241
+ class SecretsErrorException
242
+ attr_accessor message: ::String
243
+ SENSITIVE: []
244
+ end
245
+
246
+ class ServiceUnavailableError < Aws::EmptyStructure
247
+ end
248
+
249
+ class SqlParameter
250
+ attr_accessor name: ::String
251
+ attr_accessor value: Types::Field
252
+ attr_accessor type_hint: ("JSON" | "UUID" | "TIMESTAMP" | "DATE" | "TIME" | "DECIMAL")
253
+ SENSITIVE: []
254
+ end
255
+
256
+ class SqlStatementResult
257
+ attr_accessor result_frame: Types::ResultFrame
258
+ attr_accessor number_of_records_updated: ::Integer
259
+ SENSITIVE: []
260
+ end
261
+
262
+ class StatementTimeoutException
263
+ attr_accessor message: ::String
264
+ attr_accessor db_connection_id: ::Integer
265
+ SENSITIVE: []
266
+ end
267
+
268
+ class StructValue
269
+ attr_accessor attributes: ::Array[Types::Value]
270
+ SENSITIVE: []
271
+ end
272
+
273
+ class TransactionNotFoundException
274
+ attr_accessor message: ::String
275
+ SENSITIVE: []
276
+ end
277
+
278
+ class UnsupportedResultException
279
+ attr_accessor message: ::String
280
+ SENSITIVE: []
281
+ end
282
+
283
+ class UpdateResult
284
+ attr_accessor generated_fields: ::Array[Types::Field]
285
+ SENSITIVE: []
286
+ end
287
+
288
+ class Value
289
+ attr_accessor is_null: bool
290
+ attr_accessor bit_value: bool
291
+ attr_accessor big_int_value: ::Integer
292
+ attr_accessor int_value: ::Integer
293
+ attr_accessor double_value: ::Float
294
+ attr_accessor real_value: ::Float
295
+ attr_accessor string_value: ::String
296
+ attr_accessor blob_value: ::String
297
+ attr_accessor array_values: ::Array[Types::Value]
298
+ attr_accessor struct_value: Types::StructValue
299
+ attr_accessor unknown: untyped
300
+ SENSITIVE: []
301
+
302
+ class IsNull < Value
303
+ end
304
+ class BitValue < Value
305
+ end
306
+ class BigIntValue < Value
307
+ end
308
+ class IntValue < Value
309
+ end
310
+ class DoubleValue < Value
311
+ end
312
+ class RealValue < Value
313
+ end
314
+ class StringValue < Value
315
+ end
316
+ class BlobValue < Value
317
+ end
318
+ class ArrayValues < Value
319
+ end
320
+ class StructValue < Value
321
+ end
322
+ class Unknown < Value
323
+ end
324
+ end
325
+ end
326
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
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 RDSDataService
10
+ module Waiters
11
+ end
12
+ end
13
+ end
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.49.0
4
+ version: 1.51.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 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-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.188.0
22
+ version: 3.191.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.188.0
32
+ version: 3.191.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-rdsdataservice/plugins/endpoints.rb
67
67
  - lib/aws-sdk-rdsdataservice/resource.rb
68
68
  - lib/aws-sdk-rdsdataservice/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-rdsdataservice
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-rdsdataservice/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - AWS RDS DataService
94
99
  test_files: []