mypy-boto3-athena 1.41.0__tar.gz → 1.42.3__tar.gz
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.
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/PKG-INFO +4 -4
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/README.md +2 -2
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena/__main__.py +3 -3
- mypy_boto3_athena-1.41.0/mypy_boto3_athena/client.pyi → mypy_boto3_athena-1.42.3/mypy_boto3_athena/client.py +27 -0
- mypy_boto3_athena-1.41.0/mypy_boto3_athena/client.py → mypy_boto3_athena-1.42.3/mypy_boto3_athena/client.pyi +24 -3
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena/literals.py +5 -0
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena/literals.pyi +5 -0
- mypy_boto3_athena-1.41.0/mypy_boto3_athena/type_defs.pyi → mypy_boto3_athena-1.42.3/mypy_boto3_athena/type_defs.py +400 -73
- mypy_boto3_athena-1.41.0/mypy_boto3_athena/type_defs.py → mypy_boto3_athena-1.42.3/mypy_boto3_athena/type_defs.pyi +187 -261
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena/version.py +1 -1
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena.egg-info/PKG-INFO +4 -4
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/pyproject.toml +2 -2
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/LICENSE +0 -0
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena/__init__.py +0 -0
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena/__init__.pyi +0 -0
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena/paginator.py +0 -0
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena/paginator.pyi +0 -0
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena/py.typed +0 -0
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena.egg-info/SOURCES.txt +0 -0
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena.egg-info/dependency_links.txt +0 -0
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena.egg-info/requires.txt +0 -0
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/mypy_boto3_athena.egg-info/top_level.txt +0 -0
- {mypy_boto3_athena-1.41.0 → mypy_boto3_athena-1.42.3}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-athena
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 Athena 1.
|
|
3
|
+
Version: 1.42.3
|
|
4
|
+
Summary: Type annotations for boto3 Athena 1.42.3 service generated with mypy-boto3-builder 8.12.0
|
|
5
5
|
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
@@ -42,7 +42,7 @@ Dynamic: license-file
|
|
|
42
42
|
|
|
43
43
|

|
|
44
44
|
|
|
45
|
-
Type annotations for [boto3 Athena 1.
|
|
45
|
+
Type annotations for [boto3 Athena 1.42.3](https://pypi.org/project/boto3/)
|
|
46
46
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
47
47
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
48
48
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -104,7 +104,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
104
104
|
isolation.
|
|
105
105
|
|
|
106
106
|
1. Run mypy-boto3-builder in your package root directory:
|
|
107
|
-
`uvx --with 'boto3==1.
|
|
107
|
+
`uvx --with 'boto3==1.42.3' mypy-boto3-builder`
|
|
108
108
|
2. Select `boto3-stubs` AWS SDK.
|
|
109
109
|
3. Add `Athena` service.
|
|
110
110
|
4. Use provided commands to install generated packages.
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|

|
|
11
11
|
|
|
12
|
-
Type annotations for [boto3 Athena 1.
|
|
12
|
+
Type annotations for [boto3 Athena 1.42.3](https://pypi.org/project/boto3/)
|
|
13
13
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
14
14
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
15
15
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -71,7 +71,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
71
71
|
isolation.
|
|
72
72
|
|
|
73
73
|
1. Run mypy-boto3-builder in your package root directory:
|
|
74
|
-
`uvx --with 'boto3==1.
|
|
74
|
+
`uvx --with 'boto3==1.42.3' mypy-boto3-builder`
|
|
75
75
|
2. Select `boto3-stubs` AWS SDK.
|
|
76
76
|
3. Add `Athena` service.
|
|
77
77
|
4. Use provided commands to install generated packages.
|
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 Athena 1.
|
|
16
|
-
"Version: 1.
|
|
15
|
+
"Type annotations for boto3 Athena 1.42.3\n"
|
|
16
|
+
"Version: 1.42.3\n"
|
|
17
17
|
"Builder version: 8.12.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#athena\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.42.3\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -89,6 +89,10 @@ from .type_defs import (
|
|
|
89
89
|
GetQueryResultsOutputTypeDef,
|
|
90
90
|
GetQueryRuntimeStatisticsInputTypeDef,
|
|
91
91
|
GetQueryRuntimeStatisticsOutputTypeDef,
|
|
92
|
+
GetResourceDashboardRequestTypeDef,
|
|
93
|
+
GetResourceDashboardResponseTypeDef,
|
|
94
|
+
GetSessionEndpointRequestTypeDef,
|
|
95
|
+
GetSessionEndpointResponseTypeDef,
|
|
92
96
|
GetSessionRequestTypeDef,
|
|
93
97
|
GetSessionResponseTypeDef,
|
|
94
98
|
GetSessionStatusRequestTypeDef,
|
|
@@ -159,8 +163,10 @@ if sys.version_info >= (3, 12):
|
|
|
159
163
|
else:
|
|
160
164
|
from typing_extensions import Literal, Unpack
|
|
161
165
|
|
|
166
|
+
|
|
162
167
|
__all__ = ("AthenaClient",)
|
|
163
168
|
|
|
169
|
+
|
|
164
170
|
class Exceptions(BaseClientExceptions):
|
|
165
171
|
ClientError: type[BotocoreClientError]
|
|
166
172
|
InternalServerException: type[BotocoreClientError]
|
|
@@ -170,6 +176,7 @@ class Exceptions(BaseClientExceptions):
|
|
|
170
176
|
SessionAlreadyExistsException: type[BotocoreClientError]
|
|
171
177
|
TooManyRequestsException: type[BotocoreClientError]
|
|
172
178
|
|
|
179
|
+
|
|
173
180
|
class AthenaClient(BaseClient):
|
|
174
181
|
"""
|
|
175
182
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client)
|
|
@@ -518,6 +525,16 @@ class AthenaClient(BaseClient):
|
|
|
518
525
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_query_runtime_statistics)
|
|
519
526
|
"""
|
|
520
527
|
|
|
528
|
+
def get_resource_dashboard(
|
|
529
|
+
self, **kwargs: Unpack[GetResourceDashboardRequestTypeDef]
|
|
530
|
+
) -> GetResourceDashboardResponseTypeDef:
|
|
531
|
+
"""
|
|
532
|
+
Gets the Live UI/Persistence UI for a session.
|
|
533
|
+
|
|
534
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena/client/get_resource_dashboard.html)
|
|
535
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_resource_dashboard)
|
|
536
|
+
"""
|
|
537
|
+
|
|
521
538
|
def get_session(self, **kwargs: Unpack[GetSessionRequestTypeDef]) -> GetSessionResponseTypeDef:
|
|
522
539
|
"""
|
|
523
540
|
Gets the full details of a previously created session, including the session
|
|
@@ -527,6 +544,16 @@ class AthenaClient(BaseClient):
|
|
|
527
544
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_session)
|
|
528
545
|
"""
|
|
529
546
|
|
|
547
|
+
def get_session_endpoint(
|
|
548
|
+
self, **kwargs: Unpack[GetSessionEndpointRequestTypeDef]
|
|
549
|
+
) -> GetSessionEndpointResponseTypeDef:
|
|
550
|
+
"""
|
|
551
|
+
Gets a connection endpoint and authentication token for a given session Id.
|
|
552
|
+
|
|
553
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena/client/get_session_endpoint.html)
|
|
554
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_session_endpoint)
|
|
555
|
+
"""
|
|
556
|
+
|
|
530
557
|
def get_session_status(
|
|
531
558
|
self, **kwargs: Unpack[GetSessionStatusRequestTypeDef]
|
|
532
559
|
) -> GetSessionStatusResponseTypeDef:
|
|
@@ -89,6 +89,10 @@ from .type_defs import (
|
|
|
89
89
|
GetQueryResultsOutputTypeDef,
|
|
90
90
|
GetQueryRuntimeStatisticsInputTypeDef,
|
|
91
91
|
GetQueryRuntimeStatisticsOutputTypeDef,
|
|
92
|
+
GetResourceDashboardRequestTypeDef,
|
|
93
|
+
GetResourceDashboardResponseTypeDef,
|
|
94
|
+
GetSessionEndpointRequestTypeDef,
|
|
95
|
+
GetSessionEndpointResponseTypeDef,
|
|
92
96
|
GetSessionRequestTypeDef,
|
|
93
97
|
GetSessionResponseTypeDef,
|
|
94
98
|
GetSessionStatusRequestTypeDef,
|
|
@@ -159,10 +163,8 @@ if sys.version_info >= (3, 12):
|
|
|
159
163
|
else:
|
|
160
164
|
from typing_extensions import Literal, Unpack
|
|
161
165
|
|
|
162
|
-
|
|
163
166
|
__all__ = ("AthenaClient",)
|
|
164
167
|
|
|
165
|
-
|
|
166
168
|
class Exceptions(BaseClientExceptions):
|
|
167
169
|
ClientError: type[BotocoreClientError]
|
|
168
170
|
InternalServerException: type[BotocoreClientError]
|
|
@@ -172,7 +174,6 @@ class Exceptions(BaseClientExceptions):
|
|
|
172
174
|
SessionAlreadyExistsException: type[BotocoreClientError]
|
|
173
175
|
TooManyRequestsException: type[BotocoreClientError]
|
|
174
176
|
|
|
175
|
-
|
|
176
177
|
class AthenaClient(BaseClient):
|
|
177
178
|
"""
|
|
178
179
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client)
|
|
@@ -521,6 +522,16 @@ class AthenaClient(BaseClient):
|
|
|
521
522
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_query_runtime_statistics)
|
|
522
523
|
"""
|
|
523
524
|
|
|
525
|
+
def get_resource_dashboard(
|
|
526
|
+
self, **kwargs: Unpack[GetResourceDashboardRequestTypeDef]
|
|
527
|
+
) -> GetResourceDashboardResponseTypeDef:
|
|
528
|
+
"""
|
|
529
|
+
Gets the Live UI/Persistence UI for a session.
|
|
530
|
+
|
|
531
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena/client/get_resource_dashboard.html)
|
|
532
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_resource_dashboard)
|
|
533
|
+
"""
|
|
534
|
+
|
|
524
535
|
def get_session(self, **kwargs: Unpack[GetSessionRequestTypeDef]) -> GetSessionResponseTypeDef:
|
|
525
536
|
"""
|
|
526
537
|
Gets the full details of a previously created session, including the session
|
|
@@ -530,6 +541,16 @@ class AthenaClient(BaseClient):
|
|
|
530
541
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_session)
|
|
531
542
|
"""
|
|
532
543
|
|
|
544
|
+
def get_session_endpoint(
|
|
545
|
+
self, **kwargs: Unpack[GetSessionEndpointRequestTypeDef]
|
|
546
|
+
) -> GetSessionEndpointResponseTypeDef:
|
|
547
|
+
"""
|
|
548
|
+
Gets a connection endpoint and authentication token for a given session Id.
|
|
549
|
+
|
|
550
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena/client/get_session_endpoint.html)
|
|
551
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_session_endpoint)
|
|
552
|
+
"""
|
|
553
|
+
|
|
533
554
|
def get_session_status(
|
|
534
555
|
self, **kwargs: Unpack[GetSessionStatusRequestTypeDef]
|
|
535
556
|
) -> GetSessionStatusResponseTypeDef:
|
|
@@ -216,6 +216,7 @@ ServiceName = Literal[
|
|
|
216
216
|
"comprehend",
|
|
217
217
|
"comprehendmedical",
|
|
218
218
|
"compute-optimizer",
|
|
219
|
+
"compute-optimizer-automation",
|
|
219
220
|
"config",
|
|
220
221
|
"connect",
|
|
221
222
|
"connect-contact-lens",
|
|
@@ -396,6 +397,7 @@ ServiceName = Literal[
|
|
|
396
397
|
"networkmonitor",
|
|
397
398
|
"notifications",
|
|
398
399
|
"notificationscontacts",
|
|
400
|
+
"nova-act",
|
|
399
401
|
"oam",
|
|
400
402
|
"observabilityadmin",
|
|
401
403
|
"odb",
|
|
@@ -406,6 +408,8 @@ ServiceName = Literal[
|
|
|
406
408
|
"osis",
|
|
407
409
|
"outposts",
|
|
408
410
|
"panorama",
|
|
411
|
+
"partnercentral-account",
|
|
412
|
+
"partnercentral-benefits",
|
|
409
413
|
"partnercentral-channel",
|
|
410
414
|
"partnercentral-selling",
|
|
411
415
|
"payment-cryptography",
|
|
@@ -448,6 +452,7 @@ ServiceName = Literal[
|
|
|
448
452
|
"route53-recovery-control-config",
|
|
449
453
|
"route53-recovery-readiness",
|
|
450
454
|
"route53domains",
|
|
455
|
+
"route53globalresolver",
|
|
451
456
|
"route53profiles",
|
|
452
457
|
"route53resolver",
|
|
453
458
|
"rtbfabric",
|
|
@@ -214,6 +214,7 @@ ServiceName = Literal[
|
|
|
214
214
|
"comprehend",
|
|
215
215
|
"comprehendmedical",
|
|
216
216
|
"compute-optimizer",
|
|
217
|
+
"compute-optimizer-automation",
|
|
217
218
|
"config",
|
|
218
219
|
"connect",
|
|
219
220
|
"connect-contact-lens",
|
|
@@ -394,6 +395,7 @@ ServiceName = Literal[
|
|
|
394
395
|
"networkmonitor",
|
|
395
396
|
"notifications",
|
|
396
397
|
"notificationscontacts",
|
|
398
|
+
"nova-act",
|
|
397
399
|
"oam",
|
|
398
400
|
"observabilityadmin",
|
|
399
401
|
"odb",
|
|
@@ -404,6 +406,8 @@ ServiceName = Literal[
|
|
|
404
406
|
"osis",
|
|
405
407
|
"outposts",
|
|
406
408
|
"panorama",
|
|
409
|
+
"partnercentral-account",
|
|
410
|
+
"partnercentral-benefits",
|
|
407
411
|
"partnercentral-channel",
|
|
408
412
|
"partnercentral-selling",
|
|
409
413
|
"payment-cryptography",
|
|
@@ -446,6 +450,7 @@ ServiceName = Literal[
|
|
|
446
450
|
"route53-recovery-control-config",
|
|
447
451
|
"route53-recovery-readiness",
|
|
448
452
|
"route53domains",
|
|
453
|
+
"route53globalresolver",
|
|
449
454
|
"route53profiles",
|
|
450
455
|
"route53resolver",
|
|
451
456
|
"rtbfabric",
|