aws-sdk-s3tables 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-s3tables/client.rb +1508 -0
- data/lib/aws-sdk-s3tables/client_api.rb +828 -0
- data/lib/aws-sdk-s3tables/customizations.rb +0 -0
- data/lib/aws-sdk-s3tables/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-s3tables/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-s3tables/endpoints.rb +20 -0
- data/lib/aws-sdk-s3tables/errors.rb +150 -0
- data/lib/aws-sdk-s3tables/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-s3tables/resource.rb +26 -0
- data/lib/aws-sdk-s3tables/types.rb +1324 -0
- data/lib/aws-sdk-s3tables/waiters.rb +15 -0
- data/lib/aws-sdk-s3tables.rb +62 -0
- data/sig/client.rbs +401 -0
- data/sig/errors.rbs +37 -0
- data/sig/resource.rbs +82 -0
- data/sig/types.rbs +425 -0
- data/sig/waiters.rbs +13 -0
- metadata +100 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,425 @@
|
|
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::S3Tables
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class BadRequestException
|
17
|
+
attr_accessor message: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class ConflictException
|
22
|
+
attr_accessor message: ::String
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class CreateNamespaceRequest
|
27
|
+
attr_accessor table_bucket_arn: ::String
|
28
|
+
attr_accessor namespace: ::Array[::String]
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class CreateNamespaceResponse
|
33
|
+
attr_accessor table_bucket_arn: ::String
|
34
|
+
attr_accessor namespace: ::Array[::String]
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class CreateTableBucketRequest
|
39
|
+
attr_accessor name: ::String
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class CreateTableBucketResponse
|
44
|
+
attr_accessor arn: ::String
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class CreateTableRequest
|
49
|
+
attr_accessor table_bucket_arn: ::String
|
50
|
+
attr_accessor namespace: ::String
|
51
|
+
attr_accessor name: ::String
|
52
|
+
attr_accessor format: ("ICEBERG")
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class CreateTableResponse
|
57
|
+
attr_accessor table_arn: ::String
|
58
|
+
attr_accessor version_token: ::String
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class DeleteNamespaceRequest
|
63
|
+
attr_accessor table_bucket_arn: ::String
|
64
|
+
attr_accessor namespace: ::String
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class DeleteTableBucketPolicyRequest
|
69
|
+
attr_accessor table_bucket_arn: ::String
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
73
|
+
class DeleteTableBucketRequest
|
74
|
+
attr_accessor table_bucket_arn: ::String
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class DeleteTablePolicyRequest
|
79
|
+
attr_accessor table_bucket_arn: ::String
|
80
|
+
attr_accessor namespace: ::String
|
81
|
+
attr_accessor name: ::String
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class DeleteTableRequest
|
86
|
+
attr_accessor table_bucket_arn: ::String
|
87
|
+
attr_accessor namespace: ::String
|
88
|
+
attr_accessor name: ::String
|
89
|
+
attr_accessor version_token: ::String
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class ForbiddenException
|
94
|
+
attr_accessor message: ::String
|
95
|
+
SENSITIVE: []
|
96
|
+
end
|
97
|
+
|
98
|
+
class GetNamespaceRequest
|
99
|
+
attr_accessor table_bucket_arn: ::String
|
100
|
+
attr_accessor namespace: ::String
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class GetNamespaceResponse
|
105
|
+
attr_accessor namespace: ::Array[::String]
|
106
|
+
attr_accessor created_at: ::Time
|
107
|
+
attr_accessor created_by: ::String
|
108
|
+
attr_accessor owner_account_id: ::String
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class GetTableBucketMaintenanceConfigurationRequest
|
113
|
+
attr_accessor table_bucket_arn: ::String
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class GetTableBucketMaintenanceConfigurationResponse
|
118
|
+
attr_accessor table_bucket_arn: ::String
|
119
|
+
attr_accessor configuration: ::Hash[("icebergUnreferencedFileRemoval"), Types::TableBucketMaintenanceConfigurationValue]
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class GetTableBucketPolicyRequest
|
124
|
+
attr_accessor table_bucket_arn: ::String
|
125
|
+
SENSITIVE: []
|
126
|
+
end
|
127
|
+
|
128
|
+
class GetTableBucketPolicyResponse
|
129
|
+
attr_accessor resource_policy: ::String
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class GetTableBucketRequest
|
134
|
+
attr_accessor table_bucket_arn: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class GetTableBucketResponse
|
139
|
+
attr_accessor arn: ::String
|
140
|
+
attr_accessor name: ::String
|
141
|
+
attr_accessor owner_account_id: ::String
|
142
|
+
attr_accessor created_at: ::Time
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class GetTableMaintenanceConfigurationRequest
|
147
|
+
attr_accessor table_bucket_arn: ::String
|
148
|
+
attr_accessor namespace: ::String
|
149
|
+
attr_accessor name: ::String
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class GetTableMaintenanceConfigurationResponse
|
154
|
+
attr_accessor table_arn: ::String
|
155
|
+
attr_accessor configuration: ::Hash[("icebergCompaction" | "icebergSnapshotManagement"), Types::TableMaintenanceConfigurationValue]
|
156
|
+
SENSITIVE: []
|
157
|
+
end
|
158
|
+
|
159
|
+
class GetTableMaintenanceJobStatusRequest
|
160
|
+
attr_accessor table_bucket_arn: ::String
|
161
|
+
attr_accessor namespace: ::String
|
162
|
+
attr_accessor name: ::String
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class GetTableMaintenanceJobStatusResponse
|
167
|
+
attr_accessor table_arn: ::String
|
168
|
+
attr_accessor status: ::Hash[("icebergCompaction" | "icebergSnapshotManagement" | "icebergUnreferencedFileRemoval"), Types::TableMaintenanceJobStatusValue]
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class GetTableMetadataLocationRequest
|
173
|
+
attr_accessor table_bucket_arn: ::String
|
174
|
+
attr_accessor namespace: ::String
|
175
|
+
attr_accessor name: ::String
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class GetTableMetadataLocationResponse
|
180
|
+
attr_accessor version_token: ::String
|
181
|
+
attr_accessor metadata_location: ::String
|
182
|
+
attr_accessor warehouse_location: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class GetTablePolicyRequest
|
187
|
+
attr_accessor table_bucket_arn: ::String
|
188
|
+
attr_accessor namespace: ::String
|
189
|
+
attr_accessor name: ::String
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class GetTablePolicyResponse
|
194
|
+
attr_accessor resource_policy: ::String
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class GetTableRequest
|
199
|
+
attr_accessor table_bucket_arn: ::String
|
200
|
+
attr_accessor namespace: ::String
|
201
|
+
attr_accessor name: ::String
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class GetTableResponse
|
206
|
+
attr_accessor name: ::String
|
207
|
+
attr_accessor type: ("customer" | "aws")
|
208
|
+
attr_accessor table_arn: ::String
|
209
|
+
attr_accessor namespace: ::Array[::String]
|
210
|
+
attr_accessor version_token: ::String
|
211
|
+
attr_accessor metadata_location: ::String
|
212
|
+
attr_accessor warehouse_location: ::String
|
213
|
+
attr_accessor created_at: ::Time
|
214
|
+
attr_accessor created_by: ::String
|
215
|
+
attr_accessor managed_by_service: ::String
|
216
|
+
attr_accessor modified_at: ::Time
|
217
|
+
attr_accessor modified_by: ::String
|
218
|
+
attr_accessor owner_account_id: ::String
|
219
|
+
attr_accessor format: ("ICEBERG")
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class IcebergCompactionSettings
|
224
|
+
attr_accessor target_file_size_mb: ::Integer
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class IcebergSnapshotManagementSettings
|
229
|
+
attr_accessor min_snapshots_to_keep: ::Integer
|
230
|
+
attr_accessor max_snapshot_age_hours: ::Integer
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class IcebergUnreferencedFileRemovalSettings
|
235
|
+
attr_accessor unreferenced_days: ::Integer
|
236
|
+
attr_accessor non_current_days: ::Integer
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class InternalServerErrorException
|
241
|
+
attr_accessor message: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class ListNamespacesRequest
|
246
|
+
attr_accessor table_bucket_arn: ::String
|
247
|
+
attr_accessor prefix: ::String
|
248
|
+
attr_accessor continuation_token: ::String
|
249
|
+
attr_accessor max_namespaces: ::Integer
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class ListNamespacesResponse
|
254
|
+
attr_accessor namespaces: ::Array[Types::NamespaceSummary]
|
255
|
+
attr_accessor continuation_token: ::String
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class ListTableBucketsRequest
|
260
|
+
attr_accessor prefix: ::String
|
261
|
+
attr_accessor continuation_token: ::String
|
262
|
+
attr_accessor max_buckets: ::Integer
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class ListTableBucketsResponse
|
267
|
+
attr_accessor table_buckets: ::Array[Types::TableBucketSummary]
|
268
|
+
attr_accessor continuation_token: ::String
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
272
|
+
class ListTablesRequest
|
273
|
+
attr_accessor table_bucket_arn: ::String
|
274
|
+
attr_accessor namespace: ::String
|
275
|
+
attr_accessor prefix: ::String
|
276
|
+
attr_accessor continuation_token: ::String
|
277
|
+
attr_accessor max_tables: ::Integer
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class ListTablesResponse
|
282
|
+
attr_accessor tables: ::Array[Types::TableSummary]
|
283
|
+
attr_accessor continuation_token: ::String
|
284
|
+
SENSITIVE: []
|
285
|
+
end
|
286
|
+
|
287
|
+
class NamespaceSummary
|
288
|
+
attr_accessor namespace: ::Array[::String]
|
289
|
+
attr_accessor created_at: ::Time
|
290
|
+
attr_accessor created_by: ::String
|
291
|
+
attr_accessor owner_account_id: ::String
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class NotFoundException
|
296
|
+
attr_accessor message: ::String
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class PutTableBucketMaintenanceConfigurationRequest
|
301
|
+
attr_accessor table_bucket_arn: ::String
|
302
|
+
attr_accessor type: ("icebergUnreferencedFileRemoval")
|
303
|
+
attr_accessor value: Types::TableBucketMaintenanceConfigurationValue
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class PutTableBucketPolicyRequest
|
308
|
+
attr_accessor table_bucket_arn: ::String
|
309
|
+
attr_accessor resource_policy: ::String
|
310
|
+
SENSITIVE: []
|
311
|
+
end
|
312
|
+
|
313
|
+
class PutTableMaintenanceConfigurationRequest
|
314
|
+
attr_accessor table_bucket_arn: ::String
|
315
|
+
attr_accessor namespace: ::String
|
316
|
+
attr_accessor name: ::String
|
317
|
+
attr_accessor type: ("icebergCompaction" | "icebergSnapshotManagement")
|
318
|
+
attr_accessor value: Types::TableMaintenanceConfigurationValue
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class PutTablePolicyRequest
|
323
|
+
attr_accessor table_bucket_arn: ::String
|
324
|
+
attr_accessor namespace: ::String
|
325
|
+
attr_accessor name: ::String
|
326
|
+
attr_accessor resource_policy: ::String
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class RenameTableRequest
|
331
|
+
attr_accessor table_bucket_arn: ::String
|
332
|
+
attr_accessor namespace: ::String
|
333
|
+
attr_accessor name: ::String
|
334
|
+
attr_accessor new_namespace_name: ::String
|
335
|
+
attr_accessor new_name: ::String
|
336
|
+
attr_accessor version_token: ::String
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class TableBucketMaintenanceConfigurationValue
|
341
|
+
attr_accessor status: ("enabled" | "disabled")
|
342
|
+
attr_accessor settings: Types::TableBucketMaintenanceSettings
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class TableBucketMaintenanceSettings
|
347
|
+
attr_accessor iceberg_unreferenced_file_removal: Types::IcebergUnreferencedFileRemovalSettings
|
348
|
+
attr_accessor unknown: untyped
|
349
|
+
SENSITIVE: []
|
350
|
+
|
351
|
+
class IcebergUnreferencedFileRemoval < TableBucketMaintenanceSettings
|
352
|
+
end
|
353
|
+
class Unknown < TableBucketMaintenanceSettings
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
357
|
+
class TableBucketSummary
|
358
|
+
attr_accessor arn: ::String
|
359
|
+
attr_accessor name: ::String
|
360
|
+
attr_accessor owner_account_id: ::String
|
361
|
+
attr_accessor created_at: ::Time
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class TableMaintenanceConfigurationValue
|
366
|
+
attr_accessor status: ("enabled" | "disabled")
|
367
|
+
attr_accessor settings: Types::TableMaintenanceSettings
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class TableMaintenanceJobStatusValue
|
372
|
+
attr_accessor status: ("Not_Yet_Run" | "Successful" | "Failed" | "Disabled")
|
373
|
+
attr_accessor last_run_timestamp: ::Time
|
374
|
+
attr_accessor failure_message: ::String
|
375
|
+
SENSITIVE: []
|
376
|
+
end
|
377
|
+
|
378
|
+
class TableMaintenanceSettings
|
379
|
+
attr_accessor iceberg_compaction: Types::IcebergCompactionSettings
|
380
|
+
attr_accessor iceberg_snapshot_management: Types::IcebergSnapshotManagementSettings
|
381
|
+
attr_accessor unknown: untyped
|
382
|
+
SENSITIVE: []
|
383
|
+
|
384
|
+
class IcebergCompaction < TableMaintenanceSettings
|
385
|
+
end
|
386
|
+
class IcebergSnapshotManagement < TableMaintenanceSettings
|
387
|
+
end
|
388
|
+
class Unknown < TableMaintenanceSettings
|
389
|
+
end
|
390
|
+
end
|
391
|
+
|
392
|
+
class TableSummary
|
393
|
+
attr_accessor namespace: ::Array[::String]
|
394
|
+
attr_accessor name: ::String
|
395
|
+
attr_accessor type: ("customer" | "aws")
|
396
|
+
attr_accessor table_arn: ::String
|
397
|
+
attr_accessor created_at: ::Time
|
398
|
+
attr_accessor modified_at: ::Time
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class TooManyRequestsException
|
403
|
+
attr_accessor message: ::String
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class UpdateTableMetadataLocationRequest
|
408
|
+
attr_accessor table_bucket_arn: ::String
|
409
|
+
attr_accessor namespace: ::String
|
410
|
+
attr_accessor name: ::String
|
411
|
+
attr_accessor version_token: ::String
|
412
|
+
attr_accessor metadata_location: ::String
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class UpdateTableMetadataLocationResponse
|
417
|
+
attr_accessor name: ::String
|
418
|
+
attr_accessor table_arn: ::String
|
419
|
+
attr_accessor namespace: ::Array[::String]
|
420
|
+
attr_accessor version_token: ::String
|
421
|
+
attr_accessor metadata_location: ::String
|
422
|
+
SENSITIVE: []
|
423
|
+
end
|
424
|
+
end
|
425
|
+
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 S3Tables
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-s3tables
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amazon Web Services
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-12-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.210.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.210.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: aws-sigv4
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.5'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.5'
|
47
|
+
description: Official AWS Ruby gem for Amazon S3 Tables. This gem is part of the AWS
|
48
|
+
SDK for Ruby.
|
49
|
+
email:
|
50
|
+
- aws-dr-rubygems@amazon.com
|
51
|
+
executables: []
|
52
|
+
extensions: []
|
53
|
+
extra_rdoc_files: []
|
54
|
+
files:
|
55
|
+
- CHANGELOG.md
|
56
|
+
- LICENSE.txt
|
57
|
+
- VERSION
|
58
|
+
- lib/aws-sdk-s3tables.rb
|
59
|
+
- lib/aws-sdk-s3tables/client.rb
|
60
|
+
- lib/aws-sdk-s3tables/client_api.rb
|
61
|
+
- lib/aws-sdk-s3tables/customizations.rb
|
62
|
+
- lib/aws-sdk-s3tables/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-s3tables/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-s3tables/endpoints.rb
|
65
|
+
- lib/aws-sdk-s3tables/errors.rb
|
66
|
+
- lib/aws-sdk-s3tables/plugins/endpoints.rb
|
67
|
+
- lib/aws-sdk-s3tables/resource.rb
|
68
|
+
- lib/aws-sdk-s3tables/types.rb
|
69
|
+
- lib/aws-sdk-s3tables/waiters.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
75
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
76
|
+
licenses:
|
77
|
+
- Apache-2.0
|
78
|
+
metadata:
|
79
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-s3tables
|
80
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-s3tables/CHANGELOG.md
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '2.5'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
98
|
+
specification_version: 4
|
99
|
+
summary: AWS SDK for Ruby - Amazon S3 Tables
|
100
|
+
test_files: []
|