mypy-boto3-s3tables 1.35.74__py3-none-any.whl → 1.35.93__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/__init__.py +1 -1
- mypy_boto3_s3tables/__init__.pyi +1 -1
- mypy_boto3_s3tables/__main__.py +9 -8
- mypy_boto3_s3tables/client.py +24 -25
- mypy_boto3_s3tables/client.pyi +24 -24
- mypy_boto3_s3tables/literals.py +5 -2
- mypy_boto3_s3tables/literals.pyi +5 -2
- mypy_boto3_s3tables/paginator.py +36 -26
- mypy_boto3_s3tables/paginator.pyi +34 -25
- mypy_boto3_s3tables/type_defs.py +16 -9
- mypy_boto3_s3tables/type_defs.pyi +16 -9
- mypy_boto3_s3tables/version.py +2 -2
- {mypy_boto3_s3tables-1.35.74.dist-info → mypy_boto3_s3tables-1.35.93.dist-info}/LICENSE +1 -1
- {mypy_boto3_s3tables-1.35.74.dist-info → mypy_boto3_s3tables-1.35.93.dist-info}/METADATA +22 -8
- mypy_boto3_s3tables-1.35.93.dist-info/RECORD +18 -0
- {mypy_boto3_s3tables-1.35.74.dist-info → mypy_boto3_s3tables-1.35.93.dist-info}/WHEEL +1 -1
- mypy_boto3_s3tables-1.35.74.dist-info/RECORD +0 -18
- {mypy_boto3_s3tables-1.35.74.dist-info → mypy_boto3_s3tables-1.35.93.dist-info}/top_level.txt +0 -0
mypy_boto3_s3tables/__init__.py
CHANGED
mypy_boto3_s3tables/__init__.pyi
CHANGED
mypy_boto3_s3tables/__main__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -11,14 +11,14 @@ def print_info() -> None:
|
|
|
11
11
|
"""
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
|
-
|
|
15
|
-
"Type annotations for boto3 S3Tables 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
17
|
-
"Builder version: 8.
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 S3Tables 1.35.93\n"
|
|
16
|
+
"Version: 1.35.93\n"
|
|
17
|
+
"Builder version: 8.8.0\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"
|
|
21
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
sys.stdout.write("1.35.93\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -34,7 +34,8 @@ def main() -> None:
|
|
|
34
34
|
Main CLI entrypoint.
|
|
35
35
|
"""
|
|
36
36
|
if "--version" in sys.argv:
|
|
37
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
38
39
|
print_info()
|
|
39
40
|
|
|
40
41
|
|
mypy_boto3_s3tables/client.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for s3tables service
|
|
2
|
+
Type annotations for s3tables service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: S3TablesClient = session.client("s3tables")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import ListNamespacesPaginator, ListTableBucketsPaginator, ListTablesPaginator
|
|
25
29
|
from .type_defs import (
|
|
@@ -68,6 +72,11 @@ from .type_defs import (
|
|
|
68
72
|
UpdateTableMetadataLocationResponseTypeDef,
|
|
69
73
|
)
|
|
70
74
|
|
|
75
|
+
if sys.version_info >= (3, 9):
|
|
76
|
+
from builtins import type as Type
|
|
77
|
+
from collections.abc import Mapping
|
|
78
|
+
else:
|
|
79
|
+
from typing import Mapping, Type
|
|
71
80
|
if sys.version_info >= (3, 12):
|
|
72
81
|
from typing import Literal, Unpack
|
|
73
82
|
else:
|
|
@@ -77,15 +86,7 @@ else:
|
|
|
77
86
|
__all__ = ("S3TablesClient",)
|
|
78
87
|
|
|
79
88
|
|
|
80
|
-
class
|
|
81
|
-
MSG_TEMPLATE: str
|
|
82
|
-
|
|
83
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
84
|
-
self.response: Dict[str, Any]
|
|
85
|
-
self.operation_name: str
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
class Exceptions:
|
|
89
|
+
class Exceptions(BaseClientExceptions):
|
|
89
90
|
AccessDeniedException: Type[BotocoreClientError]
|
|
90
91
|
BadRequestException: Type[BotocoreClientError]
|
|
91
92
|
ClientError: Type[BotocoreClientError]
|
|
@@ -131,12 +132,6 @@ class S3TablesClient(BaseClient):
|
|
|
131
132
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#generate_presigned_url)
|
|
132
133
|
"""
|
|
133
134
|
|
|
134
|
-
def close(self) -> None:
|
|
135
|
-
"""
|
|
136
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/close.html)
|
|
137
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#close)
|
|
138
|
-
"""
|
|
139
|
-
|
|
140
135
|
def create_namespace(
|
|
141
136
|
self, **kwargs: Unpack[CreateNamespaceRequestRequestTypeDef]
|
|
142
137
|
) -> CreateNamespaceResponseTypeDef:
|
|
@@ -399,8 +394,10 @@ class S3TablesClient(BaseClient):
|
|
|
399
394
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#update_table_metadata_location)
|
|
400
395
|
"""
|
|
401
396
|
|
|
402
|
-
@overload
|
|
403
|
-
def get_paginator(
|
|
397
|
+
@overload # type: ignore[override]
|
|
398
|
+
def get_paginator( # type: ignore[override]
|
|
399
|
+
self, operation_name: Literal["list_namespaces"]
|
|
400
|
+
) -> ListNamespacesPaginator:
|
|
404
401
|
"""
|
|
405
402
|
Create a paginator for an operation.
|
|
406
403
|
|
|
@@ -408,8 +405,8 @@ class S3TablesClient(BaseClient):
|
|
|
408
405
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_paginator)
|
|
409
406
|
"""
|
|
410
407
|
|
|
411
|
-
@overload
|
|
412
|
-
def get_paginator(
|
|
408
|
+
@overload # type: ignore[override]
|
|
409
|
+
def get_paginator( # type: ignore[override]
|
|
413
410
|
self, operation_name: Literal["list_table_buckets"]
|
|
414
411
|
) -> ListTableBucketsPaginator:
|
|
415
412
|
"""
|
|
@@ -419,8 +416,10 @@ class S3TablesClient(BaseClient):
|
|
|
419
416
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_paginator)
|
|
420
417
|
"""
|
|
421
418
|
|
|
422
|
-
@overload
|
|
423
|
-
def get_paginator(
|
|
419
|
+
@overload # type: ignore[override]
|
|
420
|
+
def get_paginator( # type: ignore[override]
|
|
421
|
+
self, operation_name: Literal["list_tables"]
|
|
422
|
+
) -> ListTablesPaginator:
|
|
424
423
|
"""
|
|
425
424
|
Create a paginator for an operation.
|
|
426
425
|
|
mypy_boto3_s3tables/client.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for s3tables service
|
|
2
|
+
Type annotations for s3tables service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: S3TablesClient = session.client("s3tables")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import ListNamespacesPaginator, ListTableBucketsPaginator, ListTablesPaginator
|
|
25
29
|
from .type_defs import (
|
|
@@ -68,6 +72,11 @@ from .type_defs import (
|
|
|
68
72
|
UpdateTableMetadataLocationResponseTypeDef,
|
|
69
73
|
)
|
|
70
74
|
|
|
75
|
+
if sys.version_info >= (3, 9):
|
|
76
|
+
from builtins import type as Type
|
|
77
|
+
from collections.abc import Mapping
|
|
78
|
+
else:
|
|
79
|
+
from typing import Mapping, Type
|
|
71
80
|
if sys.version_info >= (3, 12):
|
|
72
81
|
from typing import Literal, Unpack
|
|
73
82
|
else:
|
|
@@ -75,14 +84,7 @@ else:
|
|
|
75
84
|
|
|
76
85
|
__all__ = ("S3TablesClient",)
|
|
77
86
|
|
|
78
|
-
class
|
|
79
|
-
MSG_TEMPLATE: str
|
|
80
|
-
|
|
81
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
82
|
-
self.response: Dict[str, Any]
|
|
83
|
-
self.operation_name: str
|
|
84
|
-
|
|
85
|
-
class Exceptions:
|
|
87
|
+
class Exceptions(BaseClientExceptions):
|
|
86
88
|
AccessDeniedException: Type[BotocoreClientError]
|
|
87
89
|
BadRequestException: Type[BotocoreClientError]
|
|
88
90
|
ClientError: Type[BotocoreClientError]
|
|
@@ -127,12 +129,6 @@ class S3TablesClient(BaseClient):
|
|
|
127
129
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#generate_presigned_url)
|
|
128
130
|
"""
|
|
129
131
|
|
|
130
|
-
def close(self) -> None:
|
|
131
|
-
"""
|
|
132
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/client/close.html)
|
|
133
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#close)
|
|
134
|
-
"""
|
|
135
|
-
|
|
136
132
|
def create_namespace(
|
|
137
133
|
self, **kwargs: Unpack[CreateNamespaceRequestRequestTypeDef]
|
|
138
134
|
) -> CreateNamespaceResponseTypeDef:
|
|
@@ -395,8 +391,10 @@ class S3TablesClient(BaseClient):
|
|
|
395
391
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#update_table_metadata_location)
|
|
396
392
|
"""
|
|
397
393
|
|
|
398
|
-
@overload
|
|
399
|
-
def get_paginator(
|
|
394
|
+
@overload # type: ignore[override]
|
|
395
|
+
def get_paginator( # type: ignore[override]
|
|
396
|
+
self, operation_name: Literal["list_namespaces"]
|
|
397
|
+
) -> ListNamespacesPaginator:
|
|
400
398
|
"""
|
|
401
399
|
Create a paginator for an operation.
|
|
402
400
|
|
|
@@ -404,8 +402,8 @@ class S3TablesClient(BaseClient):
|
|
|
404
402
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_paginator)
|
|
405
403
|
"""
|
|
406
404
|
|
|
407
|
-
@overload
|
|
408
|
-
def get_paginator(
|
|
405
|
+
@overload # type: ignore[override]
|
|
406
|
+
def get_paginator( # type: ignore[override]
|
|
409
407
|
self, operation_name: Literal["list_table_buckets"]
|
|
410
408
|
) -> ListTableBucketsPaginator:
|
|
411
409
|
"""
|
|
@@ -415,8 +413,10 @@ class S3TablesClient(BaseClient):
|
|
|
415
413
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/client/#get_paginator)
|
|
416
414
|
"""
|
|
417
415
|
|
|
418
|
-
@overload
|
|
419
|
-
def get_paginator(
|
|
416
|
+
@overload # type: ignore[override]
|
|
417
|
+
def get_paginator( # type: ignore[override]
|
|
418
|
+
self, operation_name: Literal["list_tables"]
|
|
419
|
+
) -> ListTablesPaginator:
|
|
420
420
|
"""
|
|
421
421
|
Create a paginator for an operation.
|
|
422
422
|
|
mypy_boto3_s3tables/literals.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for s3tables service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: JobStatusType = "Disabled"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -88,12 +88,15 @@ ServiceName = Literal[
|
|
|
88
88
|
"b2bi",
|
|
89
89
|
"backup",
|
|
90
90
|
"backup-gateway",
|
|
91
|
+
"backupsearch",
|
|
91
92
|
"batch",
|
|
92
93
|
"bcm-data-exports",
|
|
93
94
|
"bcm-pricing-calculator",
|
|
94
95
|
"bedrock",
|
|
95
96
|
"bedrock-agent",
|
|
96
97
|
"bedrock-agent-runtime",
|
|
98
|
+
"bedrock-data-automation",
|
|
99
|
+
"bedrock-data-automation-runtime",
|
|
97
100
|
"bedrock-runtime",
|
|
98
101
|
"billing",
|
|
99
102
|
"billingconductor",
|
mypy_boto3_s3tables/literals.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for s3tables service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: JobStatusType = "Disabled"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -86,12 +86,15 @@ ServiceName = Literal[
|
|
|
86
86
|
"b2bi",
|
|
87
87
|
"backup",
|
|
88
88
|
"backup-gateway",
|
|
89
|
+
"backupsearch",
|
|
89
90
|
"batch",
|
|
90
91
|
"bcm-data-exports",
|
|
91
92
|
"bcm-pricing-calculator",
|
|
92
93
|
"bedrock",
|
|
93
94
|
"bedrock-agent",
|
|
94
95
|
"bedrock-agent-runtime",
|
|
96
|
+
"bedrock-data-automation",
|
|
97
|
+
"bedrock-data-automation-runtime",
|
|
95
98
|
"bedrock-runtime",
|
|
96
99
|
"billing",
|
|
97
100
|
"billingconductor",
|
mypy_boto3_s3tables/paginator.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for s3tables service client paginators.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -23,20 +23,22 @@ Usage::
|
|
|
23
23
|
list_tables_paginator: ListTablesPaginator = client.get_paginator("list_tables")
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
Copyright
|
|
26
|
+
Copyright 2025 Vlad Emelianov
|
|
27
27
|
"""
|
|
28
28
|
|
|
29
|
+
from __future__ import annotations
|
|
30
|
+
|
|
29
31
|
import sys
|
|
30
|
-
from typing import
|
|
32
|
+
from typing import TYPE_CHECKING
|
|
31
33
|
|
|
32
34
|
from botocore.paginate import PageIterator, Paginator
|
|
33
35
|
|
|
34
36
|
from .type_defs import (
|
|
35
|
-
|
|
37
|
+
ListNamespacesRequestPaginateTypeDef,
|
|
36
38
|
ListNamespacesResponseTypeDef,
|
|
37
|
-
|
|
39
|
+
ListTableBucketsRequestPaginateTypeDef,
|
|
38
40
|
ListTableBucketsResponseTypeDef,
|
|
39
|
-
|
|
41
|
+
ListTablesRequestPaginateTypeDef,
|
|
40
42
|
ListTablesResponseTypeDef,
|
|
41
43
|
)
|
|
42
44
|
|
|
@@ -49,55 +51,63 @@ else:
|
|
|
49
51
|
__all__ = ("ListNamespacesPaginator", "ListTableBucketsPaginator", "ListTablesPaginator")
|
|
50
52
|
|
|
51
53
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
57
|
-
"""
|
|
58
|
-
Proxy method to specify iterator item type.
|
|
59
|
-
"""
|
|
54
|
+
if TYPE_CHECKING:
|
|
55
|
+
_ListNamespacesPaginatorBase = Paginator[ListNamespacesResponseTypeDef]
|
|
56
|
+
else:
|
|
57
|
+
_ListNamespacesPaginatorBase = Paginator # type: ignore[assignment]
|
|
60
58
|
|
|
61
59
|
|
|
62
|
-
class ListNamespacesPaginator(
|
|
60
|
+
class ListNamespacesPaginator(_ListNamespacesPaginatorBase):
|
|
63
61
|
"""
|
|
64
62
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListNamespaces.html#S3Tables.Paginator.ListNamespaces)
|
|
65
63
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listnamespacespaginator)
|
|
66
64
|
"""
|
|
67
65
|
|
|
68
|
-
def paginate(
|
|
69
|
-
self, **kwargs: Unpack[
|
|
70
|
-
) ->
|
|
66
|
+
def paginate( # type: ignore[override]
|
|
67
|
+
self, **kwargs: Unpack[ListNamespacesRequestPaginateTypeDef]
|
|
68
|
+
) -> PageIterator[ListNamespacesResponseTypeDef]:
|
|
71
69
|
"""
|
|
72
70
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListNamespaces.html#S3Tables.Paginator.ListNamespaces.paginate)
|
|
73
71
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listnamespacespaginator)
|
|
74
72
|
"""
|
|
75
73
|
|
|
76
74
|
|
|
77
|
-
|
|
75
|
+
if TYPE_CHECKING:
|
|
76
|
+
_ListTableBucketsPaginatorBase = Paginator[ListTableBucketsResponseTypeDef]
|
|
77
|
+
else:
|
|
78
|
+
_ListTableBucketsPaginatorBase = Paginator # type: ignore[assignment]
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
class ListTableBucketsPaginator(_ListTableBucketsPaginatorBase):
|
|
78
82
|
"""
|
|
79
83
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListTableBuckets.html#S3Tables.Paginator.ListTableBuckets)
|
|
80
84
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listtablebucketspaginator)
|
|
81
85
|
"""
|
|
82
86
|
|
|
83
|
-
def paginate(
|
|
84
|
-
self, **kwargs: Unpack[
|
|
85
|
-
) ->
|
|
87
|
+
def paginate( # type: ignore[override]
|
|
88
|
+
self, **kwargs: Unpack[ListTableBucketsRequestPaginateTypeDef]
|
|
89
|
+
) -> PageIterator[ListTableBucketsResponseTypeDef]:
|
|
86
90
|
"""
|
|
87
91
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListTableBuckets.html#S3Tables.Paginator.ListTableBuckets.paginate)
|
|
88
92
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listtablebucketspaginator)
|
|
89
93
|
"""
|
|
90
94
|
|
|
91
95
|
|
|
92
|
-
|
|
96
|
+
if TYPE_CHECKING:
|
|
97
|
+
_ListTablesPaginatorBase = Paginator[ListTablesResponseTypeDef]
|
|
98
|
+
else:
|
|
99
|
+
_ListTablesPaginatorBase = Paginator # type: ignore[assignment]
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
class ListTablesPaginator(_ListTablesPaginatorBase):
|
|
93
103
|
"""
|
|
94
104
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListTables.html#S3Tables.Paginator.ListTables)
|
|
95
105
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listtablespaginator)
|
|
96
106
|
"""
|
|
97
107
|
|
|
98
|
-
def paginate(
|
|
99
|
-
self, **kwargs: Unpack[
|
|
100
|
-
) ->
|
|
108
|
+
def paginate( # type: ignore[override]
|
|
109
|
+
self, **kwargs: Unpack[ListTablesRequestPaginateTypeDef]
|
|
110
|
+
) -> PageIterator[ListTablesResponseTypeDef]:
|
|
101
111
|
"""
|
|
102
112
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListTables.html#S3Tables.Paginator.ListTables.paginate)
|
|
103
113
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listtablespaginator)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for s3tables service client paginators.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -23,20 +23,22 @@ Usage::
|
|
|
23
23
|
list_tables_paginator: ListTablesPaginator = client.get_paginator("list_tables")
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
Copyright
|
|
26
|
+
Copyright 2025 Vlad Emelianov
|
|
27
27
|
"""
|
|
28
28
|
|
|
29
|
+
from __future__ import annotations
|
|
30
|
+
|
|
29
31
|
import sys
|
|
30
|
-
from typing import
|
|
32
|
+
from typing import TYPE_CHECKING
|
|
31
33
|
|
|
32
34
|
from botocore.paginate import PageIterator, Paginator
|
|
33
35
|
|
|
34
36
|
from .type_defs import (
|
|
35
|
-
|
|
37
|
+
ListNamespacesRequestPaginateTypeDef,
|
|
36
38
|
ListNamespacesResponseTypeDef,
|
|
37
|
-
|
|
39
|
+
ListTableBucketsRequestPaginateTypeDef,
|
|
38
40
|
ListTableBucketsResponseTypeDef,
|
|
39
|
-
|
|
41
|
+
ListTablesRequestPaginateTypeDef,
|
|
40
42
|
ListTablesResponseTypeDef,
|
|
41
43
|
)
|
|
42
44
|
|
|
@@ -47,48 +49,55 @@ else:
|
|
|
47
49
|
|
|
48
50
|
__all__ = ("ListNamespacesPaginator", "ListTableBucketsPaginator", "ListTablesPaginator")
|
|
49
51
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"""
|
|
55
|
-
Proxy method to specify iterator item type.
|
|
56
|
-
"""
|
|
52
|
+
if TYPE_CHECKING:
|
|
53
|
+
_ListNamespacesPaginatorBase = Paginator[ListNamespacesResponseTypeDef]
|
|
54
|
+
else:
|
|
55
|
+
_ListNamespacesPaginatorBase = Paginator # type: ignore[assignment]
|
|
57
56
|
|
|
58
|
-
class ListNamespacesPaginator(
|
|
57
|
+
class ListNamespacesPaginator(_ListNamespacesPaginatorBase):
|
|
59
58
|
"""
|
|
60
59
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListNamespaces.html#S3Tables.Paginator.ListNamespaces)
|
|
61
60
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listnamespacespaginator)
|
|
62
61
|
"""
|
|
63
|
-
def paginate(
|
|
64
|
-
self, **kwargs: Unpack[
|
|
65
|
-
) ->
|
|
62
|
+
def paginate( # type: ignore[override]
|
|
63
|
+
self, **kwargs: Unpack[ListNamespacesRequestPaginateTypeDef]
|
|
64
|
+
) -> PageIterator[ListNamespacesResponseTypeDef]:
|
|
66
65
|
"""
|
|
67
66
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListNamespaces.html#S3Tables.Paginator.ListNamespaces.paginate)
|
|
68
67
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listnamespacespaginator)
|
|
69
68
|
"""
|
|
70
69
|
|
|
71
|
-
|
|
70
|
+
if TYPE_CHECKING:
|
|
71
|
+
_ListTableBucketsPaginatorBase = Paginator[ListTableBucketsResponseTypeDef]
|
|
72
|
+
else:
|
|
73
|
+
_ListTableBucketsPaginatorBase = Paginator # type: ignore[assignment]
|
|
74
|
+
|
|
75
|
+
class ListTableBucketsPaginator(_ListTableBucketsPaginatorBase):
|
|
72
76
|
"""
|
|
73
77
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListTableBuckets.html#S3Tables.Paginator.ListTableBuckets)
|
|
74
78
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listtablebucketspaginator)
|
|
75
79
|
"""
|
|
76
|
-
def paginate(
|
|
77
|
-
self, **kwargs: Unpack[
|
|
78
|
-
) ->
|
|
80
|
+
def paginate( # type: ignore[override]
|
|
81
|
+
self, **kwargs: Unpack[ListTableBucketsRequestPaginateTypeDef]
|
|
82
|
+
) -> PageIterator[ListTableBucketsResponseTypeDef]:
|
|
79
83
|
"""
|
|
80
84
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListTableBuckets.html#S3Tables.Paginator.ListTableBuckets.paginate)
|
|
81
85
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listtablebucketspaginator)
|
|
82
86
|
"""
|
|
83
87
|
|
|
84
|
-
|
|
88
|
+
if TYPE_CHECKING:
|
|
89
|
+
_ListTablesPaginatorBase = Paginator[ListTablesResponseTypeDef]
|
|
90
|
+
else:
|
|
91
|
+
_ListTablesPaginatorBase = Paginator # type: ignore[assignment]
|
|
92
|
+
|
|
93
|
+
class ListTablesPaginator(_ListTablesPaginatorBase):
|
|
85
94
|
"""
|
|
86
95
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListTables.html#S3Tables.Paginator.ListTables)
|
|
87
96
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listtablespaginator)
|
|
88
97
|
"""
|
|
89
|
-
def paginate(
|
|
90
|
-
self, **kwargs: Unpack[
|
|
91
|
-
) ->
|
|
98
|
+
def paginate( # type: ignore[override]
|
|
99
|
+
self, **kwargs: Unpack[ListTablesRequestPaginateTypeDef]
|
|
100
|
+
) -> PageIterator[ListTablesResponseTypeDef]:
|
|
92
101
|
"""
|
|
93
102
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3tables/paginator/ListTables.html#S3Tables.Paginator.ListTables.paginate)
|
|
94
103
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/paginators/#listtablespaginator)
|
mypy_boto3_s3tables/type_defs.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for s3tables service type definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/type_defs/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,12 +11,13 @@ Usage::
|
|
|
11
11
|
data: CreateNamespaceRequestRequestTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
17
19
|
import sys
|
|
18
20
|
from datetime import datetime
|
|
19
|
-
from typing import Dict, List, Sequence
|
|
20
21
|
|
|
21
22
|
from .literals import (
|
|
22
23
|
JobStatusType,
|
|
@@ -26,6 +27,12 @@ from .literals import (
|
|
|
26
27
|
TableTypeType,
|
|
27
28
|
)
|
|
28
29
|
|
|
30
|
+
if sys.version_info >= (3, 9):
|
|
31
|
+
from builtins import dict as Dict
|
|
32
|
+
from builtins import list as List
|
|
33
|
+
from collections.abc import Sequence
|
|
34
|
+
else:
|
|
35
|
+
from typing import Dict, List, Sequence
|
|
29
36
|
if sys.version_info >= (3, 12):
|
|
30
37
|
from typing import Literal, NotRequired, TypedDict
|
|
31
38
|
else:
|
|
@@ -66,13 +73,13 @@ __all__ = (
|
|
|
66
73
|
"IcebergCompactionSettingsTypeDef",
|
|
67
74
|
"IcebergSnapshotManagementSettingsTypeDef",
|
|
68
75
|
"IcebergUnreferencedFileRemovalSettingsTypeDef",
|
|
69
|
-
"
|
|
76
|
+
"ListNamespacesRequestPaginateTypeDef",
|
|
70
77
|
"ListNamespacesRequestRequestTypeDef",
|
|
71
78
|
"ListNamespacesResponseTypeDef",
|
|
72
|
-
"
|
|
79
|
+
"ListTableBucketsRequestPaginateTypeDef",
|
|
73
80
|
"ListTableBucketsRequestRequestTypeDef",
|
|
74
81
|
"ListTableBucketsResponseTypeDef",
|
|
75
|
-
"
|
|
82
|
+
"ListTablesRequestPaginateTypeDef",
|
|
76
83
|
"ListTablesRequestRequestTypeDef",
|
|
77
84
|
"ListTablesResponseTypeDef",
|
|
78
85
|
"NamespaceSummaryTypeDef",
|
|
@@ -399,18 +406,18 @@ class TableBucketMaintenanceSettingsTypeDef(TypedDict):
|
|
|
399
406
|
icebergUnreferencedFileRemoval: NotRequired[IcebergUnreferencedFileRemovalSettingsTypeDef]
|
|
400
407
|
|
|
401
408
|
|
|
402
|
-
class
|
|
409
|
+
class ListNamespacesRequestPaginateTypeDef(TypedDict):
|
|
403
410
|
tableBucketARN: str
|
|
404
411
|
prefix: NotRequired[str]
|
|
405
412
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
406
413
|
|
|
407
414
|
|
|
408
|
-
class
|
|
415
|
+
class ListTableBucketsRequestPaginateTypeDef(TypedDict):
|
|
409
416
|
prefix: NotRequired[str]
|
|
410
417
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
411
418
|
|
|
412
419
|
|
|
413
|
-
class
|
|
420
|
+
class ListTablesRequestPaginateTypeDef(TypedDict):
|
|
414
421
|
tableBucketARN: str
|
|
415
422
|
namespace: NotRequired[str]
|
|
416
423
|
prefix: NotRequired[str]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for s3tables service type definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3tables/type_defs/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,12 +11,13 @@ Usage::
|
|
|
11
11
|
data: CreateNamespaceRequestRequestTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
17
19
|
import sys
|
|
18
20
|
from datetime import datetime
|
|
19
|
-
from typing import Dict, List, Sequence
|
|
20
21
|
|
|
21
22
|
from .literals import (
|
|
22
23
|
JobStatusType,
|
|
@@ -26,6 +27,12 @@ from .literals import (
|
|
|
26
27
|
TableTypeType,
|
|
27
28
|
)
|
|
28
29
|
|
|
30
|
+
if sys.version_info >= (3, 9):
|
|
31
|
+
from builtins import dict as Dict
|
|
32
|
+
from builtins import list as List
|
|
33
|
+
from collections.abc import Sequence
|
|
34
|
+
else:
|
|
35
|
+
from typing import Dict, List, Sequence
|
|
29
36
|
if sys.version_info >= (3, 12):
|
|
30
37
|
from typing import Literal, NotRequired, TypedDict
|
|
31
38
|
else:
|
|
@@ -65,13 +72,13 @@ __all__ = (
|
|
|
65
72
|
"IcebergCompactionSettingsTypeDef",
|
|
66
73
|
"IcebergSnapshotManagementSettingsTypeDef",
|
|
67
74
|
"IcebergUnreferencedFileRemovalSettingsTypeDef",
|
|
68
|
-
"
|
|
75
|
+
"ListNamespacesRequestPaginateTypeDef",
|
|
69
76
|
"ListNamespacesRequestRequestTypeDef",
|
|
70
77
|
"ListNamespacesResponseTypeDef",
|
|
71
|
-
"
|
|
78
|
+
"ListTableBucketsRequestPaginateTypeDef",
|
|
72
79
|
"ListTableBucketsRequestRequestTypeDef",
|
|
73
80
|
"ListTableBucketsResponseTypeDef",
|
|
74
|
-
"
|
|
81
|
+
"ListTablesRequestPaginateTypeDef",
|
|
75
82
|
"ListTablesRequestRequestTypeDef",
|
|
76
83
|
"ListTablesResponseTypeDef",
|
|
77
84
|
"NamespaceSummaryTypeDef",
|
|
@@ -350,16 +357,16 @@ class TableMaintenanceSettingsTypeDef(TypedDict):
|
|
|
350
357
|
class TableBucketMaintenanceSettingsTypeDef(TypedDict):
|
|
351
358
|
icebergUnreferencedFileRemoval: NotRequired[IcebergUnreferencedFileRemovalSettingsTypeDef]
|
|
352
359
|
|
|
353
|
-
class
|
|
360
|
+
class ListNamespacesRequestPaginateTypeDef(TypedDict):
|
|
354
361
|
tableBucketARN: str
|
|
355
362
|
prefix: NotRequired[str]
|
|
356
363
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
357
364
|
|
|
358
|
-
class
|
|
365
|
+
class ListTableBucketsRequestPaginateTypeDef(TypedDict):
|
|
359
366
|
prefix: NotRequired[str]
|
|
360
367
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
361
368
|
|
|
362
|
-
class
|
|
369
|
+
class ListTablesRequestPaginateTypeDef(TypedDict):
|
|
363
370
|
tableBucketARN: str
|
|
364
371
|
namespace: NotRequired[str]
|
|
365
372
|
prefix: NotRequired[str]
|
mypy_boto3_s3tables/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-s3tables
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3 S3Tables 1.35.
|
|
3
|
+
Version: 1.35.93
|
|
4
|
+
Summary: Type annotations for boto3 S3Tables 1.35.93 service generated with mypy-boto3-builder 8.8.0
|
|
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
|
|
@@ -30,7 +30,7 @@ Classifier: Typing :: Stubs Only
|
|
|
30
30
|
Requires-Python: >=3.8
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
License-File: LICENSE
|
|
33
|
-
Requires-Dist: typing-extensions
|
|
33
|
+
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
34
|
|
|
35
35
|
<a id="mypy-boto3-s3tables"></a>
|
|
36
36
|
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
43
|
|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
Type annotations for [boto3 S3Tables 1.35.
|
|
46
|
+
Type annotations for [boto3 S3Tables 1.35.93](https://pypi.org/project/boto3/)
|
|
47
47
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -51,8 +51,8 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
51
51
|
[mypy](https://github.com/python/mypy),
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
|
-
Generated
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
54
|
+
Generated with
|
|
55
|
+
[mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -64,6 +64,7 @@ See how it helps you find and fix potential bugs:
|
|
|
64
64
|
|
|
65
65
|
- [mypy-boto3-s3tables](#mypy-boto3-s3tables)
|
|
66
66
|
- [How to install](#how-to-install)
|
|
67
|
+
- [Generate locally (recommended)](<#generate-locally-(recommended)>)
|
|
67
68
|
- [VSCode extension](#vscode-extension)
|
|
68
69
|
- [From PyPI with pip](#from-pypi-with-pip)
|
|
69
70
|
- [How to uninstall](#how-to-uninstall)
|
|
@@ -94,6 +95,21 @@ See how it helps you find and fix potential bugs:
|
|
|
94
95
|
|
|
95
96
|
## How to install
|
|
96
97
|
|
|
98
|
+
<a id="generate-locally-(recommended)"></a>
|
|
99
|
+
|
|
100
|
+
### Generate locally (recommended)
|
|
101
|
+
|
|
102
|
+
You can generate type annotations for `boto3` package locally with
|
|
103
|
+
`mypy_boto3_builder`. Use
|
|
104
|
+
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
105
|
+
isolation.
|
|
106
|
+
|
|
107
|
+
1. Run mypy-boto3-builder in your package root directory:
|
|
108
|
+
`uvx --with 'boto3==1.35.93' mypy_boto3_builder`
|
|
109
|
+
2. Select `boto3-stubs` AWS SDK.
|
|
110
|
+
3. Add `S3Tables` service.
|
|
111
|
+
4. Use provided commands to install generated packages.
|
|
112
|
+
|
|
97
113
|
<a id="vscode-extension"></a>
|
|
98
114
|
|
|
99
115
|
### VSCode extension
|
|
@@ -114,12 +130,10 @@ Install `boto3-stubs` for `S3Tables` service.
|
|
|
114
130
|
# install with boto3 type annotations
|
|
115
131
|
python -m pip install 'boto3-stubs[s3tables]'
|
|
116
132
|
|
|
117
|
-
|
|
118
133
|
# Lite version does not provide session.client/resource overloads
|
|
119
134
|
# it is more RAM-friendly, but requires explicit type annotations
|
|
120
135
|
python -m pip install 'boto3-stubs-lite[s3tables]'
|
|
121
136
|
|
|
122
|
-
|
|
123
137
|
# standalone installation
|
|
124
138
|
python -m pip install mypy-boto3-s3tables
|
|
125
139
|
```
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_s3tables/__init__.py,sha256=PcDhCE_Zzs4IEpxnYUjWZCwp7i3uw55io7xtX1s2n5A,995
|
|
2
|
+
mypy_boto3_s3tables/__init__.pyi,sha256=GsyAL_s0OpTho6jY2o8nHd601mz-BGG0bfv9Ao-vCdE,994
|
|
3
|
+
mypy_boto3_s3tables/__main__.py,sha256=0hLJE5wwFG3xEfXQw3re_mz2fDwCrikC32f8Na_vTDo,987
|
|
4
|
+
mypy_boto3_s3tables/client.py,sha256=6ZYMPcXmSHnaYCWZyQqNGXFP-mIEJElXYdlgiCIPHJQ,20012
|
|
5
|
+
mypy_boto3_s3tables/client.pyi,sha256=zS180Xrm7c0Poyf11U04hX8ngdP0qbhmUDt2SwGc2nw,20009
|
|
6
|
+
mypy_boto3_s3tables/literals.py,sha256=Zwg_3sRL-7XYOXN9Kco81vJF0M2nIx8gEf0hb6bifNQ,9856
|
|
7
|
+
mypy_boto3_s3tables/literals.pyi,sha256=WArMFwq_GkaGTqDKWYGLVwpZS_1kKHj0rXXKQX4cnhE,9854
|
|
8
|
+
mypy_boto3_s3tables/paginator.py,sha256=UnhqH4AqWbMLKFQGHWK72bfrmnxKuOfDy8K3yt1bsDU,4696
|
|
9
|
+
mypy_boto3_s3tables/paginator.pyi,sha256=pwWOVf0B5HBhTiqhb9FSGC-SJtHvgVKtbIuo3JbXUgQ,4686
|
|
10
|
+
mypy_boto3_s3tables/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_s3tables/type_defs.py,sha256=RzOE9v_eZIsHvQYl6ALSsbtS2quk-aYcKCWD8Tb8SK4,13141
|
|
12
|
+
mypy_boto3_s3tables/type_defs.pyi,sha256=b-lMleQi8lsRNhQl5vyhvhbuG1WZidDrJORW4LWbUko,13081
|
|
13
|
+
mypy_boto3_s3tables/version.py,sha256=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
|
|
14
|
+
mypy_boto3_s3tables-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
mypy_boto3_s3tables-1.35.93.dist-info/METADATA,sha256=lbKGsa59qU2CvEeuaILH7zednA0e4G254NpCbQp4w90,14826
|
|
16
|
+
mypy_boto3_s3tables-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
17
|
+
mypy_boto3_s3tables-1.35.93.dist-info/top_level.txt,sha256=oAuE1209XLnkqMpCnFhvFNXfMFMSV_JABp2g57RZEdE,20
|
|
18
|
+
mypy_boto3_s3tables-1.35.93.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_s3tables/__init__.py,sha256=xY221g3lPMwD_9QPnOkX0JZEkH0IFAYv7EkgnZzz5BQ,995
|
|
2
|
-
mypy_boto3_s3tables/__init__.pyi,sha256=-VzWx4l3ITG9InS-gc57J4aTBzgHhLoQZL4PQ-vru5E,994
|
|
3
|
-
mypy_boto3_s3tables/__main__.py,sha256=hJ29XdBZChT4B5SCrfMJKeG7_O1mc3NDqLfNUld-2f8,953
|
|
4
|
-
mypy_boto3_s3tables/client.py,sha256=BA6jA1SND27Zp39FcXeSuzMGutM8WzyVtDWe1J7StO0,20055
|
|
5
|
-
mypy_boto3_s3tables/client.pyi,sha256=FPZuLjSJWIN07Hrhh99xLtukCNxHMw9u2HPxOJiZ1wU,20051
|
|
6
|
-
mypy_boto3_s3tables/literals.py,sha256=SzW2SQeOdlSYaxkadAw4Sr3U9zrjpB_hDPWDb-mkg6Y,9771
|
|
7
|
-
mypy_boto3_s3tables/literals.pyi,sha256=YLLiFjuRTf15qsT5bYmjewPf8GdWr8mxxXHg80k2ScE,9769
|
|
8
|
-
mypy_boto3_s3tables/paginator.py,sha256=jN_R136h4I1yyqTWjVgiO9gRtjw2N9dYd-Vfy17qJMo,4336
|
|
9
|
-
mypy_boto3_s3tables/paginator.pyi,sha256=FVoIAlw5Sari1mjCw5EcFTix4CnBf6uY36qUP5druiI,4327
|
|
10
|
-
mypy_boto3_s3tables/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_s3tables/type_defs.py,sha256=0qoq9c3pfoVCHJ1Q_mH3r4h1WRk5UH475mQOMurL3LE,13032
|
|
12
|
-
mypy_boto3_s3tables/type_defs.pyi,sha256=jaed2-g5MnTZVLn3rNcyRYdn6S-3EUhk5s94eamDyfA,12972
|
|
13
|
-
mypy_boto3_s3tables/version.py,sha256=B0P5JUO-cREkwttMqs7oU9i3UOmgK6CWkZC0OK5p5h4,93
|
|
14
|
-
mypy_boto3_s3tables-1.35.74.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
15
|
-
mypy_boto3_s3tables-1.35.74.dist-info/METADATA,sha256=0yLbSgrB4mTfca_ifSRDEj3IEdrQ_WFBUeH2vQ9kKFQ,14274
|
|
16
|
-
mypy_boto3_s3tables-1.35.74.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
17
|
-
mypy_boto3_s3tables-1.35.74.dist-info/top_level.txt,sha256=oAuE1209XLnkqMpCnFhvFNXfMFMSV_JABp2g57RZEdE,20
|
|
18
|
-
mypy_boto3_s3tables-1.35.74.dist-info/RECORD,,
|
{mypy_boto3_s3tables-1.35.74.dist-info → mypy_boto3_s3tables-1.35.93.dist-info}/top_level.txt
RENAMED
|
File without changes
|