aws-sdk-s3tables 1.3.0 → 1.5.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3tables/client.rb +233 -36
- data/lib/aws-sdk-s3tables/client_api.rb +104 -0
- data/lib/aws-sdk-s3tables/types.rb +206 -10
- data/lib/aws-sdk-s3tables.rb +1 -1
- data/sig/client.rbs +52 -1
- data/sig/types.rbs +51 -0
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -112,6 +112,10 @@ module Aws
|
|
112
112
|
]
|
113
113
|
}
|
114
114
|
}?
|
115
|
+
},
|
116
|
+
?encryption_configuration: {
|
117
|
+
sse_algorithm: ("AES256" | "aws:kms"),
|
118
|
+
kms_key_arn: ::String?
|
115
119
|
}
|
116
120
|
) -> _CreateTableResponseSuccess
|
117
121
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTableResponseSuccess
|
@@ -122,7 +126,11 @@ module Aws
|
|
122
126
|
end
|
123
127
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#create_table_bucket-instance_method
|
124
128
|
def create_table_bucket: (
|
125
|
-
name: ::String
|
129
|
+
name: ::String,
|
130
|
+
?encryption_configuration: {
|
131
|
+
sse_algorithm: ("AES256" | "aws:kms"),
|
132
|
+
kms_key_arn: ::String?
|
133
|
+
}
|
126
134
|
) -> _CreateTableBucketResponseSuccess
|
127
135
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTableBucketResponseSuccess
|
128
136
|
|
@@ -148,6 +156,12 @@ module Aws
|
|
148
156
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
149
157
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
150
158
|
|
159
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#delete_table_bucket_encryption-instance_method
|
160
|
+
def delete_table_bucket_encryption: (
|
161
|
+
table_bucket_arn: ::String
|
162
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
163
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
164
|
+
|
151
165
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#delete_table_bucket_policy-instance_method
|
152
166
|
def delete_table_bucket_policy: (
|
153
167
|
table_bucket_arn: ::String
|
@@ -168,6 +182,8 @@ module Aws
|
|
168
182
|
def created_at: () -> ::Time
|
169
183
|
def created_by: () -> ::String
|
170
184
|
def owner_account_id: () -> ::String
|
185
|
+
def namespace_id: () -> ::String
|
186
|
+
def table_bucket_id: () -> ::String
|
171
187
|
end
|
172
188
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_namespace-instance_method
|
173
189
|
def get_namespace: (
|
@@ -182,6 +198,7 @@ module Aws
|
|
182
198
|
def type: () -> ("customer" | "aws")
|
183
199
|
def table_arn: () -> ::String
|
184
200
|
def namespace: () -> ::Array[::String]
|
201
|
+
def namespace_id: () -> ::String
|
185
202
|
def version_token: () -> ::String
|
186
203
|
def metadata_location: () -> ::String
|
187
204
|
def warehouse_location: () -> ::String
|
@@ -192,6 +209,7 @@ module Aws
|
|
192
209
|
def modified_by: () -> ::String
|
193
210
|
def owner_account_id: () -> ::String
|
194
211
|
def format: () -> ("ICEBERG")
|
212
|
+
def table_bucket_id: () -> ::String
|
195
213
|
end
|
196
214
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table-instance_method
|
197
215
|
def get_table: (
|
@@ -207,6 +225,7 @@ module Aws
|
|
207
225
|
def name: () -> ::String
|
208
226
|
def owner_account_id: () -> ::String
|
209
227
|
def created_at: () -> ::Time
|
228
|
+
def table_bucket_id: () -> ::String
|
210
229
|
end
|
211
230
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_bucket-instance_method
|
212
231
|
def get_table_bucket: (
|
@@ -214,6 +233,16 @@ module Aws
|
|
214
233
|
) -> _GetTableBucketResponseSuccess
|
215
234
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableBucketResponseSuccess
|
216
235
|
|
236
|
+
interface _GetTableBucketEncryptionResponseSuccess
|
237
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableBucketEncryptionResponse]
|
238
|
+
def encryption_configuration: () -> Types::EncryptionConfiguration
|
239
|
+
end
|
240
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_bucket_encryption-instance_method
|
241
|
+
def get_table_bucket_encryption: (
|
242
|
+
table_bucket_arn: ::String
|
243
|
+
) -> _GetTableBucketEncryptionResponseSuccess
|
244
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableBucketEncryptionResponseSuccess
|
245
|
+
|
217
246
|
interface _GetTableBucketMaintenanceConfigurationResponseSuccess
|
218
247
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableBucketMaintenanceConfigurationResponse]
|
219
248
|
def table_bucket_arn: () -> ::String
|
@@ -235,6 +264,18 @@ module Aws
|
|
235
264
|
) -> _GetTableBucketPolicyResponseSuccess
|
236
265
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableBucketPolicyResponseSuccess
|
237
266
|
|
267
|
+
interface _GetTableEncryptionResponseSuccess
|
268
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableEncryptionResponse]
|
269
|
+
def encryption_configuration: () -> Types::EncryptionConfiguration
|
270
|
+
end
|
271
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_encryption-instance_method
|
272
|
+
def get_table_encryption: (
|
273
|
+
table_bucket_arn: ::String,
|
274
|
+
namespace: ::String,
|
275
|
+
name: ::String
|
276
|
+
) -> _GetTableEncryptionResponseSuccess
|
277
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableEncryptionResponseSuccess
|
278
|
+
|
238
279
|
interface _GetTableMaintenanceConfigurationResponseSuccess
|
239
280
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableMaintenanceConfigurationResponse]
|
240
281
|
def table_arn: () -> ::String
|
@@ -329,6 +370,16 @@ module Aws
|
|
329
370
|
) -> _ListTablesResponseSuccess
|
330
371
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTablesResponseSuccess
|
331
372
|
|
373
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#put_table_bucket_encryption-instance_method
|
374
|
+
def put_table_bucket_encryption: (
|
375
|
+
table_bucket_arn: ::String,
|
376
|
+
encryption_configuration: {
|
377
|
+
sse_algorithm: ("AES256" | "aws:kms"),
|
378
|
+
kms_key_arn: ::String?
|
379
|
+
}
|
380
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
381
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
382
|
+
|
332
383
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#put_table_bucket_maintenance_configuration-instance_method
|
333
384
|
def put_table_bucket_maintenance_configuration: (
|
334
385
|
table_bucket_arn: ::String,
|
data/sig/types.rbs
CHANGED
@@ -37,6 +37,7 @@ module Aws::S3Tables
|
|
37
37
|
|
38
38
|
class CreateTableBucketRequest
|
39
39
|
attr_accessor name: ::String
|
40
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
40
41
|
SENSITIVE: []
|
41
42
|
end
|
42
43
|
|
@@ -51,6 +52,7 @@ module Aws::S3Tables
|
|
51
52
|
attr_accessor name: ::String
|
52
53
|
attr_accessor format: ("ICEBERG")
|
53
54
|
attr_accessor metadata: Types::TableMetadata
|
55
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
54
56
|
SENSITIVE: []
|
55
57
|
end
|
56
58
|
|
@@ -66,6 +68,11 @@ module Aws::S3Tables
|
|
66
68
|
SENSITIVE: []
|
67
69
|
end
|
68
70
|
|
71
|
+
class DeleteTableBucketEncryptionRequest
|
72
|
+
attr_accessor table_bucket_arn: ::String
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
69
76
|
class DeleteTableBucketPolicyRequest
|
70
77
|
attr_accessor table_bucket_arn: ::String
|
71
78
|
SENSITIVE: []
|
@@ -91,6 +98,12 @@ module Aws::S3Tables
|
|
91
98
|
SENSITIVE: []
|
92
99
|
end
|
93
100
|
|
101
|
+
class EncryptionConfiguration
|
102
|
+
attr_accessor sse_algorithm: ("AES256" | "aws:kms")
|
103
|
+
attr_accessor kms_key_arn: ::String
|
104
|
+
SENSITIVE: []
|
105
|
+
end
|
106
|
+
|
94
107
|
class ForbiddenException
|
95
108
|
attr_accessor message: ::String
|
96
109
|
SENSITIVE: []
|
@@ -107,6 +120,18 @@ module Aws::S3Tables
|
|
107
120
|
attr_accessor created_at: ::Time
|
108
121
|
attr_accessor created_by: ::String
|
109
122
|
attr_accessor owner_account_id: ::String
|
123
|
+
attr_accessor namespace_id: ::String
|
124
|
+
attr_accessor table_bucket_id: ::String
|
125
|
+
SENSITIVE: []
|
126
|
+
end
|
127
|
+
|
128
|
+
class GetTableBucketEncryptionRequest
|
129
|
+
attr_accessor table_bucket_arn: ::String
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class GetTableBucketEncryptionResponse
|
134
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
110
135
|
SENSITIVE: []
|
111
136
|
end
|
112
137
|
|
@@ -141,6 +166,19 @@ module Aws::S3Tables
|
|
141
166
|
attr_accessor name: ::String
|
142
167
|
attr_accessor owner_account_id: ::String
|
143
168
|
attr_accessor created_at: ::Time
|
169
|
+
attr_accessor table_bucket_id: ::String
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class GetTableEncryptionRequest
|
174
|
+
attr_accessor table_bucket_arn: ::String
|
175
|
+
attr_accessor namespace: ::String
|
176
|
+
attr_accessor name: ::String
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class GetTableEncryptionResponse
|
181
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
144
182
|
SENSITIVE: []
|
145
183
|
end
|
146
184
|
|
@@ -208,6 +246,7 @@ module Aws::S3Tables
|
|
208
246
|
attr_accessor type: ("customer" | "aws")
|
209
247
|
attr_accessor table_arn: ::String
|
210
248
|
attr_accessor namespace: ::Array[::String]
|
249
|
+
attr_accessor namespace_id: ::String
|
211
250
|
attr_accessor version_token: ::String
|
212
251
|
attr_accessor metadata_location: ::String
|
213
252
|
attr_accessor warehouse_location: ::String
|
@@ -218,6 +257,7 @@ module Aws::S3Tables
|
|
218
257
|
attr_accessor modified_by: ::String
|
219
258
|
attr_accessor owner_account_id: ::String
|
220
259
|
attr_accessor format: ("ICEBERG")
|
260
|
+
attr_accessor table_bucket_id: ::String
|
221
261
|
SENSITIVE: []
|
222
262
|
end
|
223
263
|
|
@@ -300,6 +340,8 @@ module Aws::S3Tables
|
|
300
340
|
attr_accessor created_at: ::Time
|
301
341
|
attr_accessor created_by: ::String
|
302
342
|
attr_accessor owner_account_id: ::String
|
343
|
+
attr_accessor namespace_id: ::String
|
344
|
+
attr_accessor table_bucket_id: ::String
|
303
345
|
SENSITIVE: []
|
304
346
|
end
|
305
347
|
|
@@ -308,6 +350,12 @@ module Aws::S3Tables
|
|
308
350
|
SENSITIVE: []
|
309
351
|
end
|
310
352
|
|
353
|
+
class PutTableBucketEncryptionRequest
|
354
|
+
attr_accessor table_bucket_arn: ::String
|
355
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
311
359
|
class PutTableBucketMaintenanceConfigurationRequest
|
312
360
|
attr_accessor table_bucket_arn: ::String
|
313
361
|
attr_accessor type: ("icebergUnreferencedFileRemoval")
|
@@ -377,6 +425,7 @@ module Aws::S3Tables
|
|
377
425
|
attr_accessor name: ::String
|
378
426
|
attr_accessor owner_account_id: ::String
|
379
427
|
attr_accessor created_at: ::Time
|
428
|
+
attr_accessor table_bucket_id: ::String
|
380
429
|
SENSITIVE: []
|
381
430
|
end
|
382
431
|
|
@@ -425,6 +474,8 @@ module Aws::S3Tables
|
|
425
474
|
attr_accessor table_arn: ::String
|
426
475
|
attr_accessor created_at: ::Time
|
427
476
|
attr_accessor modified_at: ::Time
|
477
|
+
attr_accessor namespace_id: ::String
|
478
|
+
attr_accessor table_bucket_id: ::String
|
428
479
|
SENSITIVE: []
|
429
480
|
end
|
430
481
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-s3tables
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.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: 2025-
|
11
|
+
date: 2025-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|