mypy-boto3-s3tables 1.37.0__py3-none-any.whl → 1.38.0__py3-none-any.whl
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.
Potentially problematic release.
This version of mypy-boto3-s3tables might be problematic. Click here for more details.
- mypy_boto3_s3tables/__main__.py +4 -4
- mypy_boto3_s3tables/client.py +46 -0
- mypy_boto3_s3tables/client.pyi +46 -0
- mypy_boto3_s3tables/literals.py +4 -0
- mypy_boto3_s3tables/literals.pyi +4 -0
- mypy_boto3_s3tables/type_defs.py +56 -2
- mypy_boto3_s3tables/type_defs.pyi +49 -2
- mypy_boto3_s3tables/version.py +1 -1
- {mypy_boto3_s3tables-1.37.0.dist-info → mypy_boto3_s3tables-1.38.0.dist-info}/METADATA +7 -6
- mypy_boto3_s3tables-1.38.0.dist-info/RECORD +18 -0
- {mypy_boto3_s3tables-1.37.0.dist-info → mypy_boto3_s3tables-1.38.0.dist-info}/WHEEL +1 -1
- mypy_boto3_s3tables-1.37.0.dist-info/RECORD +0 -18
- {mypy_boto3_s3tables-1.37.0.dist-info → mypy_boto3_s3tables-1.38.0.dist-info/licenses}/LICENSE +0 -0
- {mypy_boto3_s3tables-1.37.0.dist-info → mypy_boto3_s3tables-1.38.0.dist-info}/top_level.txt +0 -0
mypy_boto3_s3tables/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 S3Tables 1.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 S3Tables 1.38.0\n"
|
|
16
|
+
"Version: 1.38.0\n"
|
|
17
|
+
"Builder version: 8.10.1\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables.html#s3tables\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.38.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_s3tables/client.py
CHANGED
|
@@ -34,6 +34,7 @@ from .type_defs import (
|
|
|
34
34
|
CreateTableRequestTypeDef,
|
|
35
35
|
CreateTableResponseTypeDef,
|
|
36
36
|
DeleteNamespaceRequestTypeDef,
|
|
37
|
+
DeleteTableBucketEncryptionRequestTypeDef,
|
|
37
38
|
DeleteTableBucketPolicyRequestTypeDef,
|
|
38
39
|
DeleteTableBucketRequestTypeDef,
|
|
39
40
|
DeleteTablePolicyRequestTypeDef,
|
|
@@ -41,12 +42,16 @@ from .type_defs import (
|
|
|
41
42
|
EmptyResponseMetadataTypeDef,
|
|
42
43
|
GetNamespaceRequestTypeDef,
|
|
43
44
|
GetNamespaceResponseTypeDef,
|
|
45
|
+
GetTableBucketEncryptionRequestTypeDef,
|
|
46
|
+
GetTableBucketEncryptionResponseTypeDef,
|
|
44
47
|
GetTableBucketMaintenanceConfigurationRequestTypeDef,
|
|
45
48
|
GetTableBucketMaintenanceConfigurationResponseTypeDef,
|
|
46
49
|
GetTableBucketPolicyRequestTypeDef,
|
|
47
50
|
GetTableBucketPolicyResponseTypeDef,
|
|
48
51
|
GetTableBucketRequestTypeDef,
|
|
49
52
|
GetTableBucketResponseTypeDef,
|
|
53
|
+
GetTableEncryptionRequestTypeDef,
|
|
54
|
+
GetTableEncryptionResponseTypeDef,
|
|
50
55
|
GetTableMaintenanceConfigurationRequestTypeDef,
|
|
51
56
|
GetTableMaintenanceConfigurationResponseTypeDef,
|
|
52
57
|
GetTableMaintenanceJobStatusRequestTypeDef,
|
|
@@ -63,6 +68,7 @@ from .type_defs import (
|
|
|
63
68
|
ListTableBucketsResponseTypeDef,
|
|
64
69
|
ListTablesRequestTypeDef,
|
|
65
70
|
ListTablesResponseTypeDef,
|
|
71
|
+
PutTableBucketEncryptionRequestTypeDef,
|
|
66
72
|
PutTableBucketMaintenanceConfigurationRequestTypeDef,
|
|
67
73
|
PutTableBucketPolicyRequestTypeDef,
|
|
68
74
|
PutTableMaintenanceConfigurationRequestTypeDef,
|
|
@@ -192,6 +198,16 @@ class S3TablesClient(BaseClient):
|
|
|
192
198
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#delete_table_bucket)
|
|
193
199
|
"""
|
|
194
200
|
|
|
201
|
+
def delete_table_bucket_encryption(
|
|
202
|
+
self, **kwargs: Unpack[DeleteTableBucketEncryptionRequestTypeDef]
|
|
203
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
204
|
+
"""
|
|
205
|
+
Deletes the encryption configuration for a table bucket.
|
|
206
|
+
|
|
207
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/delete_table_bucket_encryption.html)
|
|
208
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#delete_table_bucket_encryption)
|
|
209
|
+
"""
|
|
210
|
+
|
|
195
211
|
def delete_table_bucket_policy(
|
|
196
212
|
self, **kwargs: Unpack[DeleteTableBucketPolicyRequestTypeDef]
|
|
197
213
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -240,6 +256,16 @@ class S3TablesClient(BaseClient):
|
|
|
240
256
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_bucket)
|
|
241
257
|
"""
|
|
242
258
|
|
|
259
|
+
def get_table_bucket_encryption(
|
|
260
|
+
self, **kwargs: Unpack[GetTableBucketEncryptionRequestTypeDef]
|
|
261
|
+
) -> GetTableBucketEncryptionResponseTypeDef:
|
|
262
|
+
"""
|
|
263
|
+
Gets the encryption configuration for a table bucket.
|
|
264
|
+
|
|
265
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table_bucket_encryption.html)
|
|
266
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_bucket_encryption)
|
|
267
|
+
"""
|
|
268
|
+
|
|
243
269
|
def get_table_bucket_maintenance_configuration(
|
|
244
270
|
self, **kwargs: Unpack[GetTableBucketMaintenanceConfigurationRequestTypeDef]
|
|
245
271
|
) -> GetTableBucketMaintenanceConfigurationResponseTypeDef:
|
|
@@ -260,6 +286,16 @@ class S3TablesClient(BaseClient):
|
|
|
260
286
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_bucket_policy)
|
|
261
287
|
"""
|
|
262
288
|
|
|
289
|
+
def get_table_encryption(
|
|
290
|
+
self, **kwargs: Unpack[GetTableEncryptionRequestTypeDef]
|
|
291
|
+
) -> GetTableEncryptionResponseTypeDef:
|
|
292
|
+
"""
|
|
293
|
+
Gets the encryption configuration for a table.
|
|
294
|
+
|
|
295
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table_encryption.html)
|
|
296
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_encryption)
|
|
297
|
+
"""
|
|
298
|
+
|
|
263
299
|
def get_table_maintenance_configuration(
|
|
264
300
|
self, **kwargs: Unpack[GetTableMaintenanceConfigurationRequestTypeDef]
|
|
265
301
|
) -> GetTableMaintenanceConfigurationResponseTypeDef:
|
|
@@ -328,6 +364,16 @@ class S3TablesClient(BaseClient):
|
|
|
328
364
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#list_tables)
|
|
329
365
|
"""
|
|
330
366
|
|
|
367
|
+
def put_table_bucket_encryption(
|
|
368
|
+
self, **kwargs: Unpack[PutTableBucketEncryptionRequestTypeDef]
|
|
369
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
370
|
+
"""
|
|
371
|
+
Sets the encryption configuration for a table bucket.
|
|
372
|
+
|
|
373
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/put_table_bucket_encryption.html)
|
|
374
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#put_table_bucket_encryption)
|
|
375
|
+
"""
|
|
376
|
+
|
|
331
377
|
def put_table_bucket_maintenance_configuration(
|
|
332
378
|
self, **kwargs: Unpack[PutTableBucketMaintenanceConfigurationRequestTypeDef]
|
|
333
379
|
) -> EmptyResponseMetadataTypeDef:
|
mypy_boto3_s3tables/client.pyi
CHANGED
|
@@ -34,6 +34,7 @@ from .type_defs import (
|
|
|
34
34
|
CreateTableRequestTypeDef,
|
|
35
35
|
CreateTableResponseTypeDef,
|
|
36
36
|
DeleteNamespaceRequestTypeDef,
|
|
37
|
+
DeleteTableBucketEncryptionRequestTypeDef,
|
|
37
38
|
DeleteTableBucketPolicyRequestTypeDef,
|
|
38
39
|
DeleteTableBucketRequestTypeDef,
|
|
39
40
|
DeleteTablePolicyRequestTypeDef,
|
|
@@ -41,12 +42,16 @@ from .type_defs import (
|
|
|
41
42
|
EmptyResponseMetadataTypeDef,
|
|
42
43
|
GetNamespaceRequestTypeDef,
|
|
43
44
|
GetNamespaceResponseTypeDef,
|
|
45
|
+
GetTableBucketEncryptionRequestTypeDef,
|
|
46
|
+
GetTableBucketEncryptionResponseTypeDef,
|
|
44
47
|
GetTableBucketMaintenanceConfigurationRequestTypeDef,
|
|
45
48
|
GetTableBucketMaintenanceConfigurationResponseTypeDef,
|
|
46
49
|
GetTableBucketPolicyRequestTypeDef,
|
|
47
50
|
GetTableBucketPolicyResponseTypeDef,
|
|
48
51
|
GetTableBucketRequestTypeDef,
|
|
49
52
|
GetTableBucketResponseTypeDef,
|
|
53
|
+
GetTableEncryptionRequestTypeDef,
|
|
54
|
+
GetTableEncryptionResponseTypeDef,
|
|
50
55
|
GetTableMaintenanceConfigurationRequestTypeDef,
|
|
51
56
|
GetTableMaintenanceConfigurationResponseTypeDef,
|
|
52
57
|
GetTableMaintenanceJobStatusRequestTypeDef,
|
|
@@ -63,6 +68,7 @@ from .type_defs import (
|
|
|
63
68
|
ListTableBucketsResponseTypeDef,
|
|
64
69
|
ListTablesRequestTypeDef,
|
|
65
70
|
ListTablesResponseTypeDef,
|
|
71
|
+
PutTableBucketEncryptionRequestTypeDef,
|
|
66
72
|
PutTableBucketMaintenanceConfigurationRequestTypeDef,
|
|
67
73
|
PutTableBucketPolicyRequestTypeDef,
|
|
68
74
|
PutTableMaintenanceConfigurationRequestTypeDef,
|
|
@@ -189,6 +195,16 @@ class S3TablesClient(BaseClient):
|
|
|
189
195
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#delete_table_bucket)
|
|
190
196
|
"""
|
|
191
197
|
|
|
198
|
+
def delete_table_bucket_encryption(
|
|
199
|
+
self, **kwargs: Unpack[DeleteTableBucketEncryptionRequestTypeDef]
|
|
200
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
201
|
+
"""
|
|
202
|
+
Deletes the encryption configuration for a table bucket.
|
|
203
|
+
|
|
204
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/delete_table_bucket_encryption.html)
|
|
205
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#delete_table_bucket_encryption)
|
|
206
|
+
"""
|
|
207
|
+
|
|
192
208
|
def delete_table_bucket_policy(
|
|
193
209
|
self, **kwargs: Unpack[DeleteTableBucketPolicyRequestTypeDef]
|
|
194
210
|
) -> EmptyResponseMetadataTypeDef:
|
|
@@ -237,6 +253,16 @@ class S3TablesClient(BaseClient):
|
|
|
237
253
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_bucket)
|
|
238
254
|
"""
|
|
239
255
|
|
|
256
|
+
def get_table_bucket_encryption(
|
|
257
|
+
self, **kwargs: Unpack[GetTableBucketEncryptionRequestTypeDef]
|
|
258
|
+
) -> GetTableBucketEncryptionResponseTypeDef:
|
|
259
|
+
"""
|
|
260
|
+
Gets the encryption configuration for a table bucket.
|
|
261
|
+
|
|
262
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table_bucket_encryption.html)
|
|
263
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_bucket_encryption)
|
|
264
|
+
"""
|
|
265
|
+
|
|
240
266
|
def get_table_bucket_maintenance_configuration(
|
|
241
267
|
self, **kwargs: Unpack[GetTableBucketMaintenanceConfigurationRequestTypeDef]
|
|
242
268
|
) -> GetTableBucketMaintenanceConfigurationResponseTypeDef:
|
|
@@ -257,6 +283,16 @@ class S3TablesClient(BaseClient):
|
|
|
257
283
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_bucket_policy)
|
|
258
284
|
"""
|
|
259
285
|
|
|
286
|
+
def get_table_encryption(
|
|
287
|
+
self, **kwargs: Unpack[GetTableEncryptionRequestTypeDef]
|
|
288
|
+
) -> GetTableEncryptionResponseTypeDef:
|
|
289
|
+
"""
|
|
290
|
+
Gets the encryption configuration for a table.
|
|
291
|
+
|
|
292
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/get_table_encryption.html)
|
|
293
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_table_encryption)
|
|
294
|
+
"""
|
|
295
|
+
|
|
260
296
|
def get_table_maintenance_configuration(
|
|
261
297
|
self, **kwargs: Unpack[GetTableMaintenanceConfigurationRequestTypeDef]
|
|
262
298
|
) -> GetTableMaintenanceConfigurationResponseTypeDef:
|
|
@@ -325,6 +361,16 @@ class S3TablesClient(BaseClient):
|
|
|
325
361
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#list_tables)
|
|
326
362
|
"""
|
|
327
363
|
|
|
364
|
+
def put_table_bucket_encryption(
|
|
365
|
+
self, **kwargs: Unpack[PutTableBucketEncryptionRequestTypeDef]
|
|
366
|
+
) -> EmptyResponseMetadataTypeDef:
|
|
367
|
+
"""
|
|
368
|
+
Sets the encryption configuration for a table bucket.
|
|
369
|
+
|
|
370
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/put_table_bucket_encryption.html)
|
|
371
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#put_table_bucket_encryption)
|
|
372
|
+
"""
|
|
373
|
+
|
|
328
374
|
def put_table_bucket_maintenance_configuration(
|
|
329
375
|
self, **kwargs: Unpack[PutTableBucketMaintenanceConfigurationRequestTypeDef]
|
|
330
376
|
) -> EmptyResponseMetadataTypeDef:
|
mypy_boto3_s3tables/literals.py
CHANGED
|
@@ -32,6 +32,7 @@ __all__ = (
|
|
|
32
32
|
"PaginatorName",
|
|
33
33
|
"ResourceServiceName",
|
|
34
34
|
"S3TablesServiceName",
|
|
35
|
+
"SSEAlgorithmType",
|
|
35
36
|
"ServiceName",
|
|
36
37
|
"TableBucketMaintenanceTypeType",
|
|
37
38
|
"TableMaintenanceJobTypeType",
|
|
@@ -46,6 +47,7 @@ ListTableBucketsPaginatorName = Literal["list_table_buckets"]
|
|
|
46
47
|
ListTablesPaginatorName = Literal["list_tables"]
|
|
47
48
|
MaintenanceStatusType = Literal["disabled", "enabled"]
|
|
48
49
|
OpenTableFormatType = Literal["ICEBERG"]
|
|
50
|
+
SSEAlgorithmType = Literal["AES256", "aws:kms"]
|
|
49
51
|
TableBucketMaintenanceTypeType = Literal["icebergUnreferencedFileRemoval"]
|
|
50
52
|
TableMaintenanceJobTypeType = Literal[
|
|
51
53
|
"icebergCompaction", "icebergSnapshotManagement", "icebergUnreferencedFileRemoval"
|
|
@@ -209,6 +211,7 @@ ServiceName = Literal[
|
|
|
209
211
|
"freetier",
|
|
210
212
|
"fsx",
|
|
211
213
|
"gamelift",
|
|
214
|
+
"gameliftstreams",
|
|
212
215
|
"geo-maps",
|
|
213
216
|
"geo-places",
|
|
214
217
|
"geo-routes",
|
|
@@ -234,6 +237,7 @@ ServiceName = Literal[
|
|
|
234
237
|
"iot",
|
|
235
238
|
"iot-data",
|
|
236
239
|
"iot-jobs-data",
|
|
240
|
+
"iot-managed-integrations",
|
|
237
241
|
"iotanalytics",
|
|
238
242
|
"iotdeviceadvisor",
|
|
239
243
|
"iotevents",
|
mypy_boto3_s3tables/literals.pyi
CHANGED
|
@@ -31,6 +31,7 @@ __all__ = (
|
|
|
31
31
|
"PaginatorName",
|
|
32
32
|
"ResourceServiceName",
|
|
33
33
|
"S3TablesServiceName",
|
|
34
|
+
"SSEAlgorithmType",
|
|
34
35
|
"ServiceName",
|
|
35
36
|
"TableBucketMaintenanceTypeType",
|
|
36
37
|
"TableMaintenanceJobTypeType",
|
|
@@ -44,6 +45,7 @@ ListTableBucketsPaginatorName = Literal["list_table_buckets"]
|
|
|
44
45
|
ListTablesPaginatorName = Literal["list_tables"]
|
|
45
46
|
MaintenanceStatusType = Literal["disabled", "enabled"]
|
|
46
47
|
OpenTableFormatType = Literal["ICEBERG"]
|
|
48
|
+
SSEAlgorithmType = Literal["AES256", "aws:kms"]
|
|
47
49
|
TableBucketMaintenanceTypeType = Literal["icebergUnreferencedFileRemoval"]
|
|
48
50
|
TableMaintenanceJobTypeType = Literal[
|
|
49
51
|
"icebergCompaction", "icebergSnapshotManagement", "icebergUnreferencedFileRemoval"
|
|
@@ -207,6 +209,7 @@ ServiceName = Literal[
|
|
|
207
209
|
"freetier",
|
|
208
210
|
"fsx",
|
|
209
211
|
"gamelift",
|
|
212
|
+
"gameliftstreams",
|
|
210
213
|
"geo-maps",
|
|
211
214
|
"geo-places",
|
|
212
215
|
"geo-routes",
|
|
@@ -232,6 +235,7 @@ ServiceName = Literal[
|
|
|
232
235
|
"iot",
|
|
233
236
|
"iot-data",
|
|
234
237
|
"iot-jobs-data",
|
|
238
|
+
"iot-managed-integrations",
|
|
235
239
|
"iotanalytics",
|
|
236
240
|
"iotdeviceadvisor",
|
|
237
241
|
"iotevents",
|
mypy_boto3_s3tables/type_defs.py
CHANGED
|
@@ -22,6 +22,7 @@ from datetime import datetime
|
|
|
22
22
|
from .literals import (
|
|
23
23
|
JobStatusType,
|
|
24
24
|
MaintenanceStatusType,
|
|
25
|
+
SSEAlgorithmType,
|
|
25
26
|
TableMaintenanceJobTypeType,
|
|
26
27
|
TableMaintenanceTypeType,
|
|
27
28
|
TableTypeType,
|
|
@@ -47,19 +48,25 @@ __all__ = (
|
|
|
47
48
|
"CreateTableRequestTypeDef",
|
|
48
49
|
"CreateTableResponseTypeDef",
|
|
49
50
|
"DeleteNamespaceRequestTypeDef",
|
|
51
|
+
"DeleteTableBucketEncryptionRequestTypeDef",
|
|
50
52
|
"DeleteTableBucketPolicyRequestTypeDef",
|
|
51
53
|
"DeleteTableBucketRequestTypeDef",
|
|
52
54
|
"DeleteTablePolicyRequestTypeDef",
|
|
53
55
|
"DeleteTableRequestTypeDef",
|
|
54
56
|
"EmptyResponseMetadataTypeDef",
|
|
57
|
+
"EncryptionConfigurationTypeDef",
|
|
55
58
|
"GetNamespaceRequestTypeDef",
|
|
56
59
|
"GetNamespaceResponseTypeDef",
|
|
60
|
+
"GetTableBucketEncryptionRequestTypeDef",
|
|
61
|
+
"GetTableBucketEncryptionResponseTypeDef",
|
|
57
62
|
"GetTableBucketMaintenanceConfigurationRequestTypeDef",
|
|
58
63
|
"GetTableBucketMaintenanceConfigurationResponseTypeDef",
|
|
59
64
|
"GetTableBucketPolicyRequestTypeDef",
|
|
60
65
|
"GetTableBucketPolicyResponseTypeDef",
|
|
61
66
|
"GetTableBucketRequestTypeDef",
|
|
62
67
|
"GetTableBucketResponseTypeDef",
|
|
68
|
+
"GetTableEncryptionRequestTypeDef",
|
|
69
|
+
"GetTableEncryptionResponseTypeDef",
|
|
63
70
|
"GetTableMaintenanceConfigurationRequestTypeDef",
|
|
64
71
|
"GetTableMaintenanceConfigurationResponseTypeDef",
|
|
65
72
|
"GetTableMaintenanceJobStatusRequestTypeDef",
|
|
@@ -86,6 +93,7 @@ __all__ = (
|
|
|
86
93
|
"ListTablesResponseTypeDef",
|
|
87
94
|
"NamespaceSummaryTypeDef",
|
|
88
95
|
"PaginatorConfigTypeDef",
|
|
96
|
+
"PutTableBucketEncryptionRequestTypeDef",
|
|
89
97
|
"PutTableBucketMaintenanceConfigurationRequestTypeDef",
|
|
90
98
|
"PutTableBucketPolicyRequestTypeDef",
|
|
91
99
|
"PutTableMaintenanceConfigurationRequestTypeDef",
|
|
@@ -119,8 +127,9 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
119
127
|
HostId: NotRequired[str]
|
|
120
128
|
|
|
121
129
|
|
|
122
|
-
class
|
|
123
|
-
|
|
130
|
+
class EncryptionConfigurationTypeDef(TypedDict):
|
|
131
|
+
sseAlgorithm: SSEAlgorithmType
|
|
132
|
+
kmsKeyArn: NotRequired[str]
|
|
124
133
|
|
|
125
134
|
|
|
126
135
|
class DeleteNamespaceRequestTypeDef(TypedDict):
|
|
@@ -128,6 +137,10 @@ class DeleteNamespaceRequestTypeDef(TypedDict):
|
|
|
128
137
|
namespace: str
|
|
129
138
|
|
|
130
139
|
|
|
140
|
+
class DeleteTableBucketEncryptionRequestTypeDef(TypedDict):
|
|
141
|
+
tableBucketARN: str
|
|
142
|
+
|
|
143
|
+
|
|
131
144
|
class DeleteTableBucketPolicyRequestTypeDef(TypedDict):
|
|
132
145
|
tableBucketARN: str
|
|
133
146
|
|
|
@@ -154,6 +167,10 @@ class GetNamespaceRequestTypeDef(TypedDict):
|
|
|
154
167
|
namespace: str
|
|
155
168
|
|
|
156
169
|
|
|
170
|
+
class GetTableBucketEncryptionRequestTypeDef(TypedDict):
|
|
171
|
+
tableBucketARN: str
|
|
172
|
+
|
|
173
|
+
|
|
157
174
|
class GetTableBucketMaintenanceConfigurationRequestTypeDef(TypedDict):
|
|
158
175
|
tableBucketARN: str
|
|
159
176
|
|
|
@@ -166,6 +183,12 @@ class GetTableBucketRequestTypeDef(TypedDict):
|
|
|
166
183
|
tableBucketARN: str
|
|
167
184
|
|
|
168
185
|
|
|
186
|
+
class GetTableEncryptionRequestTypeDef(TypedDict):
|
|
187
|
+
tableBucketARN: str
|
|
188
|
+
namespace: str
|
|
189
|
+
name: str
|
|
190
|
+
|
|
191
|
+
|
|
169
192
|
class GetTableMaintenanceConfigurationRequestTypeDef(TypedDict):
|
|
170
193
|
tableBucketARN: str
|
|
171
194
|
namespace: str
|
|
@@ -244,6 +267,8 @@ class NamespaceSummaryTypeDef(TypedDict):
|
|
|
244
267
|
createdAt: datetime
|
|
245
268
|
createdBy: str
|
|
246
269
|
ownerAccountId: str
|
|
270
|
+
namespaceId: NotRequired[str]
|
|
271
|
+
tableBucketId: NotRequired[str]
|
|
247
272
|
|
|
248
273
|
|
|
249
274
|
class ListTableBucketsRequestTypeDef(TypedDict):
|
|
@@ -257,6 +282,7 @@ class TableBucketSummaryTypeDef(TypedDict):
|
|
|
257
282
|
name: str
|
|
258
283
|
ownerAccountId: str
|
|
259
284
|
createdAt: datetime
|
|
285
|
+
tableBucketId: NotRequired[str]
|
|
260
286
|
|
|
261
287
|
|
|
262
288
|
class ListTablesRequestTypeDef(TypedDict):
|
|
@@ -276,6 +302,8 @@ TableSummaryTypeDef = TypedDict(
|
|
|
276
302
|
"tableARN": str,
|
|
277
303
|
"createdAt": datetime,
|
|
278
304
|
"modifiedAt": datetime,
|
|
305
|
+
"namespaceId": NotRequired[str],
|
|
306
|
+
"tableBucketId": NotRequired[str],
|
|
279
307
|
},
|
|
280
308
|
)
|
|
281
309
|
|
|
@@ -335,6 +363,8 @@ class GetNamespaceResponseTypeDef(TypedDict):
|
|
|
335
363
|
createdAt: datetime
|
|
336
364
|
createdBy: str
|
|
337
365
|
ownerAccountId: str
|
|
366
|
+
namespaceId: str
|
|
367
|
+
tableBucketId: str
|
|
338
368
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
339
369
|
|
|
340
370
|
|
|
@@ -348,6 +378,7 @@ class GetTableBucketResponseTypeDef(TypedDict):
|
|
|
348
378
|
name: str
|
|
349
379
|
ownerAccountId: str
|
|
350
380
|
createdAt: datetime
|
|
381
|
+
tableBucketId: str
|
|
351
382
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
352
383
|
|
|
353
384
|
|
|
@@ -370,6 +401,7 @@ GetTableResponseTypeDef = TypedDict(
|
|
|
370
401
|
"type": TableTypeType,
|
|
371
402
|
"tableARN": str,
|
|
372
403
|
"namespace": List[str],
|
|
404
|
+
"namespaceId": str,
|
|
373
405
|
"versionToken": str,
|
|
374
406
|
"metadataLocation": str,
|
|
375
407
|
"warehouseLocation": str,
|
|
@@ -380,6 +412,7 @@ GetTableResponseTypeDef = TypedDict(
|
|
|
380
412
|
"modifiedBy": str,
|
|
381
413
|
"ownerAccountId": str,
|
|
382
414
|
"format": Literal["ICEBERG"],
|
|
415
|
+
"tableBucketId": str,
|
|
383
416
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
384
417
|
},
|
|
385
418
|
)
|
|
@@ -394,6 +427,26 @@ class UpdateTableMetadataLocationResponseTypeDef(TypedDict):
|
|
|
394
427
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
395
428
|
|
|
396
429
|
|
|
430
|
+
class CreateTableBucketRequestTypeDef(TypedDict):
|
|
431
|
+
name: str
|
|
432
|
+
encryptionConfiguration: NotRequired[EncryptionConfigurationTypeDef]
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
class GetTableBucketEncryptionResponseTypeDef(TypedDict):
|
|
436
|
+
encryptionConfiguration: EncryptionConfigurationTypeDef
|
|
437
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
class GetTableEncryptionResponseTypeDef(TypedDict):
|
|
441
|
+
encryptionConfiguration: EncryptionConfigurationTypeDef
|
|
442
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
class PutTableBucketEncryptionRequestTypeDef(TypedDict):
|
|
446
|
+
tableBucketARN: str
|
|
447
|
+
encryptionConfiguration: EncryptionConfigurationTypeDef
|
|
448
|
+
|
|
449
|
+
|
|
397
450
|
class GetTableMaintenanceJobStatusResponseTypeDef(TypedDict):
|
|
398
451
|
tableARN: str
|
|
399
452
|
status: Dict[TableMaintenanceJobTypeType, TableMaintenanceJobStatusValueTypeDef]
|
|
@@ -509,5 +562,6 @@ CreateTableRequestTypeDef = TypedDict(
|
|
|
509
562
|
"name": str,
|
|
510
563
|
"format": Literal["ICEBERG"],
|
|
511
564
|
"metadata": NotRequired[TableMetadataTypeDef],
|
|
565
|
+
"encryptionConfiguration": NotRequired[EncryptionConfigurationTypeDef],
|
|
512
566
|
},
|
|
513
567
|
)
|
|
@@ -22,6 +22,7 @@ from datetime import datetime
|
|
|
22
22
|
from .literals import (
|
|
23
23
|
JobStatusType,
|
|
24
24
|
MaintenanceStatusType,
|
|
25
|
+
SSEAlgorithmType,
|
|
25
26
|
TableMaintenanceJobTypeType,
|
|
26
27
|
TableMaintenanceTypeType,
|
|
27
28
|
TableTypeType,
|
|
@@ -46,19 +47,25 @@ __all__ = (
|
|
|
46
47
|
"CreateTableRequestTypeDef",
|
|
47
48
|
"CreateTableResponseTypeDef",
|
|
48
49
|
"DeleteNamespaceRequestTypeDef",
|
|
50
|
+
"DeleteTableBucketEncryptionRequestTypeDef",
|
|
49
51
|
"DeleteTableBucketPolicyRequestTypeDef",
|
|
50
52
|
"DeleteTableBucketRequestTypeDef",
|
|
51
53
|
"DeleteTablePolicyRequestTypeDef",
|
|
52
54
|
"DeleteTableRequestTypeDef",
|
|
53
55
|
"EmptyResponseMetadataTypeDef",
|
|
56
|
+
"EncryptionConfigurationTypeDef",
|
|
54
57
|
"GetNamespaceRequestTypeDef",
|
|
55
58
|
"GetNamespaceResponseTypeDef",
|
|
59
|
+
"GetTableBucketEncryptionRequestTypeDef",
|
|
60
|
+
"GetTableBucketEncryptionResponseTypeDef",
|
|
56
61
|
"GetTableBucketMaintenanceConfigurationRequestTypeDef",
|
|
57
62
|
"GetTableBucketMaintenanceConfigurationResponseTypeDef",
|
|
58
63
|
"GetTableBucketPolicyRequestTypeDef",
|
|
59
64
|
"GetTableBucketPolicyResponseTypeDef",
|
|
60
65
|
"GetTableBucketRequestTypeDef",
|
|
61
66
|
"GetTableBucketResponseTypeDef",
|
|
67
|
+
"GetTableEncryptionRequestTypeDef",
|
|
68
|
+
"GetTableEncryptionResponseTypeDef",
|
|
62
69
|
"GetTableMaintenanceConfigurationRequestTypeDef",
|
|
63
70
|
"GetTableMaintenanceConfigurationResponseTypeDef",
|
|
64
71
|
"GetTableMaintenanceJobStatusRequestTypeDef",
|
|
@@ -85,6 +92,7 @@ __all__ = (
|
|
|
85
92
|
"ListTablesResponseTypeDef",
|
|
86
93
|
"NamespaceSummaryTypeDef",
|
|
87
94
|
"PaginatorConfigTypeDef",
|
|
95
|
+
"PutTableBucketEncryptionRequestTypeDef",
|
|
88
96
|
"PutTableBucketMaintenanceConfigurationRequestTypeDef",
|
|
89
97
|
"PutTableBucketPolicyRequestTypeDef",
|
|
90
98
|
"PutTableMaintenanceConfigurationRequestTypeDef",
|
|
@@ -115,13 +123,17 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
115
123
|
RetryAttempts: int
|
|
116
124
|
HostId: NotRequired[str]
|
|
117
125
|
|
|
118
|
-
class
|
|
119
|
-
|
|
126
|
+
class EncryptionConfigurationTypeDef(TypedDict):
|
|
127
|
+
sseAlgorithm: SSEAlgorithmType
|
|
128
|
+
kmsKeyArn: NotRequired[str]
|
|
120
129
|
|
|
121
130
|
class DeleteNamespaceRequestTypeDef(TypedDict):
|
|
122
131
|
tableBucketARN: str
|
|
123
132
|
namespace: str
|
|
124
133
|
|
|
134
|
+
class DeleteTableBucketEncryptionRequestTypeDef(TypedDict):
|
|
135
|
+
tableBucketARN: str
|
|
136
|
+
|
|
125
137
|
class DeleteTableBucketPolicyRequestTypeDef(TypedDict):
|
|
126
138
|
tableBucketARN: str
|
|
127
139
|
|
|
@@ -143,6 +155,9 @@ class GetNamespaceRequestTypeDef(TypedDict):
|
|
|
143
155
|
tableBucketARN: str
|
|
144
156
|
namespace: str
|
|
145
157
|
|
|
158
|
+
class GetTableBucketEncryptionRequestTypeDef(TypedDict):
|
|
159
|
+
tableBucketARN: str
|
|
160
|
+
|
|
146
161
|
class GetTableBucketMaintenanceConfigurationRequestTypeDef(TypedDict):
|
|
147
162
|
tableBucketARN: str
|
|
148
163
|
|
|
@@ -152,6 +167,11 @@ class GetTableBucketPolicyRequestTypeDef(TypedDict):
|
|
|
152
167
|
class GetTableBucketRequestTypeDef(TypedDict):
|
|
153
168
|
tableBucketARN: str
|
|
154
169
|
|
|
170
|
+
class GetTableEncryptionRequestTypeDef(TypedDict):
|
|
171
|
+
tableBucketARN: str
|
|
172
|
+
namespace: str
|
|
173
|
+
name: str
|
|
174
|
+
|
|
155
175
|
class GetTableMaintenanceConfigurationRequestTypeDef(TypedDict):
|
|
156
176
|
tableBucketARN: str
|
|
157
177
|
namespace: str
|
|
@@ -218,6 +238,8 @@ class NamespaceSummaryTypeDef(TypedDict):
|
|
|
218
238
|
createdAt: datetime
|
|
219
239
|
createdBy: str
|
|
220
240
|
ownerAccountId: str
|
|
241
|
+
namespaceId: NotRequired[str]
|
|
242
|
+
tableBucketId: NotRequired[str]
|
|
221
243
|
|
|
222
244
|
class ListTableBucketsRequestTypeDef(TypedDict):
|
|
223
245
|
prefix: NotRequired[str]
|
|
@@ -229,6 +251,7 @@ class TableBucketSummaryTypeDef(TypedDict):
|
|
|
229
251
|
name: str
|
|
230
252
|
ownerAccountId: str
|
|
231
253
|
createdAt: datetime
|
|
254
|
+
tableBucketId: NotRequired[str]
|
|
232
255
|
|
|
233
256
|
class ListTablesRequestTypeDef(TypedDict):
|
|
234
257
|
tableBucketARN: str
|
|
@@ -246,6 +269,8 @@ TableSummaryTypeDef = TypedDict(
|
|
|
246
269
|
"tableARN": str,
|
|
247
270
|
"createdAt": datetime,
|
|
248
271
|
"modifiedAt": datetime,
|
|
272
|
+
"namespaceId": NotRequired[str],
|
|
273
|
+
"tableBucketId": NotRequired[str],
|
|
249
274
|
},
|
|
250
275
|
)
|
|
251
276
|
|
|
@@ -296,6 +321,8 @@ class GetNamespaceResponseTypeDef(TypedDict):
|
|
|
296
321
|
createdAt: datetime
|
|
297
322
|
createdBy: str
|
|
298
323
|
ownerAccountId: str
|
|
324
|
+
namespaceId: str
|
|
325
|
+
tableBucketId: str
|
|
299
326
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
300
327
|
|
|
301
328
|
class GetTableBucketPolicyResponseTypeDef(TypedDict):
|
|
@@ -307,6 +334,7 @@ class GetTableBucketResponseTypeDef(TypedDict):
|
|
|
307
334
|
name: str
|
|
308
335
|
ownerAccountId: str
|
|
309
336
|
createdAt: datetime
|
|
337
|
+
tableBucketId: str
|
|
310
338
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
311
339
|
|
|
312
340
|
class GetTableMetadataLocationResponseTypeDef(TypedDict):
|
|
@@ -326,6 +354,7 @@ GetTableResponseTypeDef = TypedDict(
|
|
|
326
354
|
"type": TableTypeType,
|
|
327
355
|
"tableARN": str,
|
|
328
356
|
"namespace": List[str],
|
|
357
|
+
"namespaceId": str,
|
|
329
358
|
"versionToken": str,
|
|
330
359
|
"metadataLocation": str,
|
|
331
360
|
"warehouseLocation": str,
|
|
@@ -336,6 +365,7 @@ GetTableResponseTypeDef = TypedDict(
|
|
|
336
365
|
"modifiedBy": str,
|
|
337
366
|
"ownerAccountId": str,
|
|
338
367
|
"format": Literal["ICEBERG"],
|
|
368
|
+
"tableBucketId": str,
|
|
339
369
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
340
370
|
},
|
|
341
371
|
)
|
|
@@ -348,6 +378,22 @@ class UpdateTableMetadataLocationResponseTypeDef(TypedDict):
|
|
|
348
378
|
metadataLocation: str
|
|
349
379
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
350
380
|
|
|
381
|
+
class CreateTableBucketRequestTypeDef(TypedDict):
|
|
382
|
+
name: str
|
|
383
|
+
encryptionConfiguration: NotRequired[EncryptionConfigurationTypeDef]
|
|
384
|
+
|
|
385
|
+
class GetTableBucketEncryptionResponseTypeDef(TypedDict):
|
|
386
|
+
encryptionConfiguration: EncryptionConfigurationTypeDef
|
|
387
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
388
|
+
|
|
389
|
+
class GetTableEncryptionResponseTypeDef(TypedDict):
|
|
390
|
+
encryptionConfiguration: EncryptionConfigurationTypeDef
|
|
391
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
392
|
+
|
|
393
|
+
class PutTableBucketEncryptionRequestTypeDef(TypedDict):
|
|
394
|
+
tableBucketARN: str
|
|
395
|
+
encryptionConfiguration: EncryptionConfigurationTypeDef
|
|
396
|
+
|
|
351
397
|
class GetTableMaintenanceJobStatusResponseTypeDef(TypedDict):
|
|
352
398
|
tableARN: str
|
|
353
399
|
status: Dict[TableMaintenanceJobTypeType, TableMaintenanceJobStatusValueTypeDef]
|
|
@@ -446,5 +492,6 @@ CreateTableRequestTypeDef = TypedDict(
|
|
|
446
492
|
"name": str,
|
|
447
493
|
"format": Literal["ICEBERG"],
|
|
448
494
|
"metadata": NotRequired[TableMetadataTypeDef],
|
|
495
|
+
"encryptionConfiguration": NotRequired[EncryptionConfigurationTypeDef],
|
|
449
496
|
},
|
|
450
497
|
)
|
mypy_boto3_s3tables/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-s3tables
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 S3Tables 1.
|
|
3
|
+
Version: 1.38.0
|
|
4
|
+
Summary: Type annotations for boto3 S3Tables 1.38.0 service generated with mypy-boto3-builder 8.10.1
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -39,6 +39,7 @@ Dynamic: description-content-type
|
|
|
39
39
|
Dynamic: home-page
|
|
40
40
|
Dynamic: keywords
|
|
41
41
|
Dynamic: license
|
|
42
|
+
Dynamic: license-file
|
|
42
43
|
Dynamic: project-url
|
|
43
44
|
Dynamic: requires-dist
|
|
44
45
|
Dynamic: requires-python
|
|
@@ -55,7 +56,7 @@ Dynamic: summary
|
|
|
55
56
|
|
|
56
57
|

|
|
57
58
|
|
|
58
|
-
Type annotations for [boto3 S3Tables 1.
|
|
59
|
+
Type annotations for [boto3 S3Tables 1.38.0](https://pypi.org/project/boto3/)
|
|
59
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -64,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
64
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
65
66
|
|
|
66
67
|
Generated with
|
|
67
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
|
|
68
69
|
|
|
69
70
|
More information can be found on
|
|
70
71
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -117,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
117
118
|
isolation.
|
|
118
119
|
|
|
119
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
120
|
-
`uvx --with 'boto3==1.
|
|
121
|
+
`uvx --with 'boto3==1.38.0' mypy-boto3-builder`
|
|
121
122
|
2. Select `boto3-stubs` AWS SDK.
|
|
122
123
|
3. Add `S3Tables` service.
|
|
123
124
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_s3tables/__init__.py,sha256=0FRXcAgUgA-cyY4r4zQiknXuuwRImIPZvpOUqFY1fK4,1077
|
|
2
|
+
mypy_boto3_s3tables/__init__.pyi,sha256=H45cLvIEKHeLx7gYL2N0hJ0IK_SiJ-jQMp4wCBtY-Cc,1076
|
|
3
|
+
mypy_boto3_s3tables/__main__.py,sha256=on-bt7srwjw91_Hs75EQLeAUMOH23i5LKMa4aZDpPJI,985
|
|
4
|
+
mypy_boto3_s3tables/client.py,sha256=YdI7GoTVwr1ABEa-4HejVDqq44DQgYHDQSXRnwa-BvI,22032
|
|
5
|
+
mypy_boto3_s3tables/client.pyi,sha256=ahuNL10FG1YDpPsFCMuroqLmHp3SeYSEc8jsznrWIX8,22029
|
|
6
|
+
mypy_boto3_s3tables/literals.py,sha256=BkBgohsuHsoh-tZWJHXCzCasCBPq4N_qlMXm9-Vwzv8,9907
|
|
7
|
+
mypy_boto3_s3tables/literals.pyi,sha256=8O2KMrulykvgRBZwkBiK188jZtKhZvBvqmGhTZMqct0,9905
|
|
8
|
+
mypy_boto3_s3tables/paginator.py,sha256=kxwI_U_08ugU5FZ5XuBBI1SVAO_eO6eJXR0ZDWPHxQY,4696
|
|
9
|
+
mypy_boto3_s3tables/paginator.pyi,sha256=g20DszBYx4Yvpt9LSme2o9ZWIuYqr9eBioI8nWPwKHo,4686
|
|
10
|
+
mypy_boto3_s3tables/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_s3tables/type_defs.py,sha256=xoPi81zR58Vlbo6K-h8MBn4y-8JHD3odiOVbZ0mb6uQ,14974
|
|
12
|
+
mypy_boto3_s3tables/type_defs.pyi,sha256=OJILvXRyiTUH_Lp_YFBDtf--9OxLf7sraZL_9PTpmLA,14904
|
|
13
|
+
mypy_boto3_s3tables/version.py,sha256=chIm161Dw81Gs3vO6CH1PT2nlb-lCUhY_igz_jcxAO8,92
|
|
14
|
+
mypy_boto3_s3tables-1.38.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
mypy_boto3_s3tables-1.38.0.dist-info/METADATA,sha256=httZydLrs_RnaFSSzC9VBWc5WuCq4bxOq0dm8YNVpPs,15197
|
|
16
|
+
mypy_boto3_s3tables-1.38.0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
|
17
|
+
mypy_boto3_s3tables-1.38.0.dist-info/top_level.txt,sha256=oAuE1209XLnkqMpCnFhvFNXfMFMSV_JABp2g57RZEdE,20
|
|
18
|
+
mypy_boto3_s3tables-1.38.0.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_s3tables/__init__.py,sha256=0FRXcAgUgA-cyY4r4zQiknXuuwRImIPZvpOUqFY1fK4,1077
|
|
2
|
-
mypy_boto3_s3tables/__init__.pyi,sha256=H45cLvIEKHeLx7gYL2N0hJ0IK_SiJ-jQMp4wCBtY-Cc,1076
|
|
3
|
-
mypy_boto3_s3tables/__main__.py,sha256=zDTqKN4mIqNu1qDUP2rDyDrqjOmZj1SV8uHnVY5T7rs,984
|
|
4
|
-
mypy_boto3_s3tables/client.py,sha256=zCiEQH2sW107da3d4sP4_7dY1I3BTOqTACrJwIpvHEU,19634
|
|
5
|
-
mypy_boto3_s3tables/client.pyi,sha256=FervV0-XGiQxseqygN_AIc4OF5YDEK-v1mtIokLca48,19631
|
|
6
|
-
mypy_boto3_s3tables/literals.py,sha256=9bbAUPeCtHnKa3_hHk97WtHnGPRzrGKmCCXyrgttfpY,9780
|
|
7
|
-
mypy_boto3_s3tables/literals.pyi,sha256=TPZ_VCUL5dr5x6sfDHqd4ddi8yJ_REAdvuaFU_cLZyM,9778
|
|
8
|
-
mypy_boto3_s3tables/paginator.py,sha256=kxwI_U_08ugU5FZ5XuBBI1SVAO_eO6eJXR0ZDWPHxQY,4696
|
|
9
|
-
mypy_boto3_s3tables/paginator.pyi,sha256=g20DszBYx4Yvpt9LSme2o9ZWIuYqr9eBioI8nWPwKHo,4686
|
|
10
|
-
mypy_boto3_s3tables/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_s3tables/type_defs.py,sha256=K2Hkg4vKpuL3NVE7xl4cxbpuCW5dW5hK-ItVwf6ig_Y,13311
|
|
12
|
-
mypy_boto3_s3tables/type_defs.pyi,sha256=ZwZXAwCYmQPR4UWzCHAP2hCiDDn12pFUavnawSfuhQQ,13248
|
|
13
|
-
mypy_boto3_s3tables/version.py,sha256=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,92
|
|
14
|
-
mypy_boto3_s3tables-1.37.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
mypy_boto3_s3tables-1.37.0.dist-info/METADATA,sha256=COWoWsK_0vB9OEzdVakZNjmK3FXgRP-Dxk2t8kywLVA,15173
|
|
16
|
-
mypy_boto3_s3tables-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
17
|
-
mypy_boto3_s3tables-1.37.0.dist-info/top_level.txt,sha256=oAuE1209XLnkqMpCnFhvFNXfMFMSV_JABp2g57RZEdE,20
|
|
18
|
-
mypy_boto3_s3tables-1.37.0.dist-info/RECORD,,
|
{mypy_boto3_s3tables-1.37.0.dist-info → mypy_boto3_s3tables-1.38.0.dist-info/licenses}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|