mypy-boto3-athena 1.33.8__py3-none-any.whl → 1.34.23__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.
@@ -43,7 +43,6 @@ from .paginator import (
43
43
 
44
44
  Client = AthenaClient
45
45
 
46
-
47
46
  __all__ = (
48
47
  "AthenaClient",
49
48
  "Client",
@@ -10,8 +10,8 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.Athena 1.33.8\nVersion: 1.33.8\nBuilder version:"
14
- " 7.21.0\nDocs: "
13
+ "Type annotations for boto3.Athena 1.34.23\nVersion: 1.34.23\nBuilder version:"
14
+ " 7.23.1\nDocs: "
15
15
  " https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena//\nBoto3 docs: "
16
16
  " https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena\nOther"
17
17
  " services: https://pypi.org/project/boto3-stubs/\nChangelog: "
@@ -23,7 +23,7 @@ def print_version() -> None:
23
23
  """
24
24
  Print package version to stdout.
25
25
  """
26
- print("1.33.8")
26
+ print("1.34.23")
27
27
 
28
28
 
29
29
  def main() -> None:
@@ -99,7 +99,6 @@ if sys.version_info >= (3, 12):
99
99
  else:
100
100
  from typing_extensions import Literal
101
101
 
102
-
103
102
  __all__ = ("AthenaClient",)
104
103
 
105
104
 
@@ -217,7 +216,7 @@ class AthenaClient(BaseClient):
217
216
  Type: DataCatalogTypeType,
218
217
  Description: str = ...,
219
218
  Parameters: Mapping[str, str] = ...,
220
- Tags: Sequence[TagTypeDef] = ...
219
+ Tags: Sequence[TagTypeDef] = ...,
221
220
  ) -> Dict[str, Any]:
222
221
  """
223
222
  Creates (registers) a data catalog with the specified name and properties.
@@ -234,7 +233,7 @@ class AthenaClient(BaseClient):
234
233
  QueryString: str,
235
234
  Description: str = ...,
236
235
  ClientRequestToken: str = ...,
237
- WorkGroup: str = ...
236
+ WorkGroup: str = ...,
238
237
  ) -> CreateNamedQueryOutputTypeDef:
239
238
  """
240
239
  Creates a named query in the specified workgroup.
@@ -279,7 +278,7 @@ class AthenaClient(BaseClient):
279
278
  Name: str,
280
279
  Configuration: WorkGroupConfigurationTypeDef = ...,
281
280
  Description: str = ...,
282
- Tags: Sequence[TagTypeDef] = ...
281
+ Tags: Sequence[TagTypeDef] = ...,
283
282
  ) -> Dict[str, Any]:
284
283
  """
285
284
  Creates a workgroup with the specified name.
@@ -532,9 +531,10 @@ class AthenaClient(BaseClient):
532
531
  *,
533
532
  WorkGroup: str,
534
533
  Name: str,
535
- Payload: str,
536
534
  Type: Literal["IPYNB"],
537
- ClientRequestToken: str = ...
535
+ Payload: str = ...,
536
+ NotebookS3LocationUri: str = ...,
537
+ ClientRequestToken: str = ...,
538
538
  ) -> ImportNotebookOutputTypeDef:
539
539
  """
540
540
  Imports a single `ipynb` file to a Spark enabled workgroup.
@@ -561,7 +561,7 @@ class AthenaClient(BaseClient):
561
561
  SessionId: str,
562
562
  StateFilter: CalculationExecutionStateType = ...,
563
563
  MaxResults: int = ...,
564
- NextToken: str = ...
564
+ NextToken: str = ...,
565
565
  ) -> ListCalculationExecutionsResponseTypeDef:
566
566
  """
567
567
  Lists the calculations that have been submitted to a session in descending
@@ -619,7 +619,7 @@ class AthenaClient(BaseClient):
619
619
  SessionId: str,
620
620
  ExecutorStateFilter: ExecutorStateType = ...,
621
621
  MaxResults: int = ...,
622
- NextToken: str = ...
622
+ NextToken: str = ...,
623
623
  ) -> ListExecutorsResponseTypeDef:
624
624
  """
625
625
  Lists, in descending order, the executors that joined a session.
@@ -645,7 +645,7 @@ class AthenaClient(BaseClient):
645
645
  WorkGroup: str,
646
646
  Filters: FilterDefinitionTypeDef = ...,
647
647
  NextToken: str = ...,
648
- MaxResults: int = ...
648
+ MaxResults: int = ...,
649
649
  ) -> ListNotebookMetadataOutputTypeDef:
650
650
  """
651
651
  Displays the notebook files for the specified workgroup in paginated format.
@@ -694,7 +694,7 @@ class AthenaClient(BaseClient):
694
694
  WorkGroup: str,
695
695
  StateFilter: SessionStateType = ...,
696
696
  MaxResults: int = ...,
697
- NextToken: str = ...
697
+ NextToken: str = ...,
698
698
  ) -> ListSessionsResponseTypeDef:
699
699
  """
700
700
  Lists the sessions in a workgroup that are in an active state like `CREATING`,
@@ -713,7 +713,7 @@ class AthenaClient(BaseClient):
713
713
  Expression: str = ...,
714
714
  NextToken: str = ...,
715
715
  MaxResults: int = ...,
716
- WorkGroup: str = ...
716
+ WorkGroup: str = ...,
717
717
  ) -> ListTableMetadataOutputTypeDef:
718
718
  """
719
719
  Lists the metadata for the tables in the specified data catalog database.
@@ -746,7 +746,7 @@ class AthenaClient(BaseClient):
746
746
  self,
747
747
  *,
748
748
  CapacityReservationName: str,
749
- CapacityAssignments: Sequence[CapacityAssignmentTypeDef]
749
+ CapacityAssignments: Sequence[CapacityAssignmentTypeDef],
750
750
  ) -> Dict[str, Any]:
751
751
  """
752
752
  Puts a new capacity assignment configuration for a specified capacity
@@ -763,7 +763,7 @@ class AthenaClient(BaseClient):
763
763
  Description: str = ...,
764
764
  CalculationConfiguration: CalculationConfigurationTypeDef = ...,
765
765
  CodeBlock: str = ...,
766
- ClientRequestToken: str = ...
766
+ ClientRequestToken: str = ...,
767
767
  ) -> StartCalculationExecutionResponseTypeDef:
768
768
  """
769
769
  Submits calculations for execution within a session.
@@ -781,7 +781,7 @@ class AthenaClient(BaseClient):
781
781
  ResultConfiguration: ResultConfigurationTypeDef = ...,
782
782
  WorkGroup: str = ...,
783
783
  ExecutionParameters: Sequence[str] = ...,
784
- ResultReuseConfiguration: ResultReuseConfigurationTypeDef = ...
784
+ ResultReuseConfiguration: ResultReuseConfigurationTypeDef = ...,
785
785
  ) -> StartQueryExecutionOutputTypeDef:
786
786
  """
787
787
  Runs the SQL query statements contained in the `Query`.
@@ -798,7 +798,7 @@ class AthenaClient(BaseClient):
798
798
  Description: str = ...,
799
799
  NotebookVersion: str = ...,
800
800
  SessionIdleTimeoutInMinutes: int = ...,
801
- ClientRequestToken: str = ...
801
+ ClientRequestToken: str = ...,
802
802
  ) -> StartSessionResponseTypeDef:
803
803
  """
804
804
  Creates a session for running calculations within a workgroup.
@@ -865,7 +865,7 @@ class AthenaClient(BaseClient):
865
865
  Name: str,
866
866
  Type: DataCatalogTypeType,
867
867
  Description: str = ...,
868
- Parameters: Mapping[str, str] = ...
868
+ Parameters: Mapping[str, str] = ...,
869
869
  ) -> Dict[str, Any]:
870
870
  """
871
871
  Updates the data catalog that has the specified name.
@@ -891,7 +891,7 @@ class AthenaClient(BaseClient):
891
891
  Payload: str,
892
892
  Type: Literal["IPYNB"],
893
893
  SessionId: str = ...,
894
- ClientRequestToken: str = ...
894
+ ClientRequestToken: str = ...,
895
895
  ) -> Dict[str, Any]:
896
896
  """
897
897
  Updates the contents of a Spark notebook.
@@ -926,7 +926,7 @@ class AthenaClient(BaseClient):
926
926
  WorkGroup: str,
927
927
  Description: str = ...,
928
928
  ConfigurationUpdates: WorkGroupConfigurationUpdatesTypeDef = ...,
929
- State: WorkGroupStateType = ...
929
+ State: WorkGroupStateType = ...,
930
930
  ) -> Dict[str, Any]:
931
931
  """
932
932
  Updates the workgroup with the specified name.
@@ -213,7 +213,7 @@ class AthenaClient(BaseClient):
213
213
  Type: DataCatalogTypeType,
214
214
  Description: str = ...,
215
215
  Parameters: Mapping[str, str] = ...,
216
- Tags: Sequence[TagTypeDef] = ...
216
+ Tags: Sequence[TagTypeDef] = ...,
217
217
  ) -> Dict[str, Any]:
218
218
  """
219
219
  Creates (registers) a data catalog with the specified name and properties.
@@ -230,7 +230,7 @@ class AthenaClient(BaseClient):
230
230
  QueryString: str,
231
231
  Description: str = ...,
232
232
  ClientRequestToken: str = ...,
233
- WorkGroup: str = ...
233
+ WorkGroup: str = ...,
234
234
  ) -> CreateNamedQueryOutputTypeDef:
235
235
  """
236
236
  Creates a named query in the specified workgroup.
@@ -275,7 +275,7 @@ class AthenaClient(BaseClient):
275
275
  Name: str,
276
276
  Configuration: WorkGroupConfigurationTypeDef = ...,
277
277
  Description: str = ...,
278
- Tags: Sequence[TagTypeDef] = ...
278
+ Tags: Sequence[TagTypeDef] = ...,
279
279
  ) -> Dict[str, Any]:
280
280
  """
281
281
  Creates a workgroup with the specified name.
@@ -528,9 +528,10 @@ class AthenaClient(BaseClient):
528
528
  *,
529
529
  WorkGroup: str,
530
530
  Name: str,
531
- Payload: str,
532
531
  Type: Literal["IPYNB"],
533
- ClientRequestToken: str = ...
532
+ Payload: str = ...,
533
+ NotebookS3LocationUri: str = ...,
534
+ ClientRequestToken: str = ...,
534
535
  ) -> ImportNotebookOutputTypeDef:
535
536
  """
536
537
  Imports a single `ipynb` file to a Spark enabled workgroup.
@@ -557,7 +558,7 @@ class AthenaClient(BaseClient):
557
558
  SessionId: str,
558
559
  StateFilter: CalculationExecutionStateType = ...,
559
560
  MaxResults: int = ...,
560
- NextToken: str = ...
561
+ NextToken: str = ...,
561
562
  ) -> ListCalculationExecutionsResponseTypeDef:
562
563
  """
563
564
  Lists the calculations that have been submitted to a session in descending
@@ -615,7 +616,7 @@ class AthenaClient(BaseClient):
615
616
  SessionId: str,
616
617
  ExecutorStateFilter: ExecutorStateType = ...,
617
618
  MaxResults: int = ...,
618
- NextToken: str = ...
619
+ NextToken: str = ...,
619
620
  ) -> ListExecutorsResponseTypeDef:
620
621
  """
621
622
  Lists, in descending order, the executors that joined a session.
@@ -641,7 +642,7 @@ class AthenaClient(BaseClient):
641
642
  WorkGroup: str,
642
643
  Filters: FilterDefinitionTypeDef = ...,
643
644
  NextToken: str = ...,
644
- MaxResults: int = ...
645
+ MaxResults: int = ...,
645
646
  ) -> ListNotebookMetadataOutputTypeDef:
646
647
  """
647
648
  Displays the notebook files for the specified workgroup in paginated format.
@@ -690,7 +691,7 @@ class AthenaClient(BaseClient):
690
691
  WorkGroup: str,
691
692
  StateFilter: SessionStateType = ...,
692
693
  MaxResults: int = ...,
693
- NextToken: str = ...
694
+ NextToken: str = ...,
694
695
  ) -> ListSessionsResponseTypeDef:
695
696
  """
696
697
  Lists the sessions in a workgroup that are in an active state like `CREATING`,
@@ -709,7 +710,7 @@ class AthenaClient(BaseClient):
709
710
  Expression: str = ...,
710
711
  NextToken: str = ...,
711
712
  MaxResults: int = ...,
712
- WorkGroup: str = ...
713
+ WorkGroup: str = ...,
713
714
  ) -> ListTableMetadataOutputTypeDef:
714
715
  """
715
716
  Lists the metadata for the tables in the specified data catalog database.
@@ -742,7 +743,7 @@ class AthenaClient(BaseClient):
742
743
  self,
743
744
  *,
744
745
  CapacityReservationName: str,
745
- CapacityAssignments: Sequence[CapacityAssignmentTypeDef]
746
+ CapacityAssignments: Sequence[CapacityAssignmentTypeDef],
746
747
  ) -> Dict[str, Any]:
747
748
  """
748
749
  Puts a new capacity assignment configuration for a specified capacity
@@ -759,7 +760,7 @@ class AthenaClient(BaseClient):
759
760
  Description: str = ...,
760
761
  CalculationConfiguration: CalculationConfigurationTypeDef = ...,
761
762
  CodeBlock: str = ...,
762
- ClientRequestToken: str = ...
763
+ ClientRequestToken: str = ...,
763
764
  ) -> StartCalculationExecutionResponseTypeDef:
764
765
  """
765
766
  Submits calculations for execution within a session.
@@ -777,7 +778,7 @@ class AthenaClient(BaseClient):
777
778
  ResultConfiguration: ResultConfigurationTypeDef = ...,
778
779
  WorkGroup: str = ...,
779
780
  ExecutionParameters: Sequence[str] = ...,
780
- ResultReuseConfiguration: ResultReuseConfigurationTypeDef = ...
781
+ ResultReuseConfiguration: ResultReuseConfigurationTypeDef = ...,
781
782
  ) -> StartQueryExecutionOutputTypeDef:
782
783
  """
783
784
  Runs the SQL query statements contained in the `Query`.
@@ -794,7 +795,7 @@ class AthenaClient(BaseClient):
794
795
  Description: str = ...,
795
796
  NotebookVersion: str = ...,
796
797
  SessionIdleTimeoutInMinutes: int = ...,
797
- ClientRequestToken: str = ...
798
+ ClientRequestToken: str = ...,
798
799
  ) -> StartSessionResponseTypeDef:
799
800
  """
800
801
  Creates a session for running calculations within a workgroup.
@@ -861,7 +862,7 @@ class AthenaClient(BaseClient):
861
862
  Name: str,
862
863
  Type: DataCatalogTypeType,
863
864
  Description: str = ...,
864
- Parameters: Mapping[str, str] = ...
865
+ Parameters: Mapping[str, str] = ...,
865
866
  ) -> Dict[str, Any]:
866
867
  """
867
868
  Updates the data catalog that has the specified name.
@@ -887,7 +888,7 @@ class AthenaClient(BaseClient):
887
888
  Payload: str,
888
889
  Type: Literal["IPYNB"],
889
890
  SessionId: str = ...,
890
- ClientRequestToken: str = ...
891
+ ClientRequestToken: str = ...,
891
892
  ) -> Dict[str, Any]:
892
893
  """
893
894
  Updates the contents of a Spark notebook.
@@ -922,7 +923,7 @@ class AthenaClient(BaseClient):
922
923
  WorkGroup: str,
923
924
  Description: str = ...,
924
925
  ConfigurationUpdates: WorkGroupConfigurationUpdatesTypeDef = ...,
925
- State: WorkGroupStateType = ...
926
+ State: WorkGroupStateType = ...,
926
927
  ) -> Dict[str, Any]:
927
928
  """
928
929
  Updates the workgroup with the specified name.
@@ -19,7 +19,6 @@ if sys.version_info >= (3, 12):
19
19
  else:
20
20
  from typing_extensions import Literal
21
21
 
22
-
23
22
  __all__ = (
24
23
  "AuthenticationTypeType",
25
24
  "CalculationExecutionStateType",
@@ -50,7 +49,6 @@ __all__ = (
50
49
  "RegionName",
51
50
  )
52
51
 
53
-
54
52
  AuthenticationTypeType = Literal["DIRECTORY_IDENTITY"]
55
53
  CalculationExecutionStateType = Literal[
56
54
  "CANCELED", "CANCELING", "COMPLETED", "CREATED", "CREATING", "FAILED", "QUEUED", "RUNNING"
@@ -329,9 +327,11 @@ ServiceName = Literal[
329
327
  "mturk",
330
328
  "mwaa",
331
329
  "neptune",
330
+ "neptune-graph",
332
331
  "neptunedata",
333
332
  "network-firewall",
334
333
  "networkmanager",
334
+ "networkmonitor",
335
335
  "nimble",
336
336
  "oam",
337
337
  "omics",
@@ -429,6 +429,7 @@ ServiceName = Literal[
429
429
  "stepfunctions",
430
430
  "storagegateway",
431
431
  "sts",
432
+ "supplychain",
432
433
  "support",
433
434
  "support-app",
434
435
  "swf",
@@ -327,9 +327,11 @@ ServiceName = Literal[
327
327
  "mturk",
328
328
  "mwaa",
329
329
  "neptune",
330
+ "neptune-graph",
330
331
  "neptunedata",
331
332
  "network-firewall",
332
333
  "networkmanager",
334
+ "networkmonitor",
333
335
  "nimble",
334
336
  "oam",
335
337
  "omics",
@@ -427,6 +429,7 @@ ServiceName = Literal[
427
429
  "stepfunctions",
428
430
  "storagegateway",
429
431
  "sts",
432
+ "supplychain",
430
433
  "support",
431
434
  "support-app",
432
435
  "swf",
@@ -57,7 +57,6 @@ __all__ = (
57
57
  "ListTagsForResourcePaginator",
58
58
  )
59
59
 
60
-
61
60
  _ItemTypeDef = TypeVar("_ItemTypeDef")
62
61
 
63
62
 
@@ -109,7 +108,7 @@ class ListDatabasesPaginator(Paginator):
109
108
  *,
110
109
  CatalogName: str,
111
110
  WorkGroup: str = ...,
112
- PaginationConfig: PaginatorConfigTypeDef = ...
111
+ PaginationConfig: PaginatorConfigTypeDef = ...,
113
112
  ) -> _PageIterator[ListDatabasesOutputTypeDef]:
114
113
  """
115
114
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Paginator.ListDatabases.paginate)
@@ -160,7 +159,7 @@ class ListTableMetadataPaginator(Paginator):
160
159
  DatabaseName: str,
161
160
  Expression: str = ...,
162
161
  WorkGroup: str = ...,
163
- PaginationConfig: PaginatorConfigTypeDef = ...
162
+ PaginationConfig: PaginatorConfigTypeDef = ...,
164
163
  ) -> _PageIterator[ListTableMetadataOutputTypeDef]:
165
164
  """
166
165
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Paginator.ListTableMetadata.paginate)
@@ -104,7 +104,7 @@ class ListDatabasesPaginator(Paginator):
104
104
  *,
105
105
  CatalogName: str,
106
106
  WorkGroup: str = ...,
107
- PaginationConfig: PaginatorConfigTypeDef = ...
107
+ PaginationConfig: PaginatorConfigTypeDef = ...,
108
108
  ) -> _PageIterator[ListDatabasesOutputTypeDef]:
109
109
  """
110
110
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Paginator.ListDatabases.paginate)
@@ -152,7 +152,7 @@ class ListTableMetadataPaginator(Paginator):
152
152
  DatabaseName: str,
153
153
  Expression: str = ...,
154
154
  WorkGroup: str = ...,
155
- PaginationConfig: PaginatorConfigTypeDef = ...
155
+ PaginationConfig: PaginatorConfigTypeDef = ...,
156
156
  ) -> _PageIterator[ListTableMetadataOutputTypeDef]:
157
157
  """
158
158
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Paginator.ListTableMetadata.paginate)
@@ -44,7 +44,6 @@ if sys.version_info >= (3, 12):
44
44
  else:
45
45
  from typing_extensions import TypedDict
46
46
 
47
-
48
47
  __all__ = (
49
48
  "AclConfigurationTypeDef",
50
49
  "ApplicationDPUSizesTypeDef",
@@ -724,8 +723,9 @@ ImportNotebookInputRequestTypeDef = TypedDict(
724
723
  {
725
724
  "WorkGroup": str,
726
725
  "Name": str,
727
- "Payload": str,
728
726
  "Type": Literal["IPYNB"],
727
+ "Payload": NotRequired[str],
728
+ "NotebookS3LocationUri": NotRequired[str],
729
729
  "ClientRequestToken": NotRequired[str],
730
730
  },
731
731
  )
@@ -723,8 +723,9 @@ ImportNotebookInputRequestTypeDef = TypedDict(
723
723
  {
724
724
  "WorkGroup": str,
725
725
  "Name": str,
726
- "Payload": str,
727
726
  "Type": Literal["IPYNB"],
727
+ "Payload": NotRequired[str],
728
+ "NotebookS3LocationUri": NotRequired[str],
728
729
  "ClientRequestToken": NotRequired[str],
729
730
  },
730
731
  )
@@ -2,4 +2,4 @@
2
2
  Source of truth for version.
3
3
  """
4
4
 
5
- __version__ = "1.33.8"
5
+ __version__ = "1.34.23"
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 Vlad Emelianov
3
+ Copyright (c) 2024 Vlad Emelianov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-athena
3
- Version: 1.33.8
4
- Summary: Type annotations for boto3.Athena 1.33.8 service generated with mypy-boto3-builder 7.21.0
3
+ Version: 1.34.23
4
+ Summary: Type annotations for boto3.Athena 1.34.23 service generated with mypy-boto3-builder 7.23.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
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
17
17
  Classifier: Natural Language :: English
18
18
  Classifier: Operating System :: OS Independent
19
19
  Classifier: Programming Language :: Python :: 3
20
- Classifier: Programming Language :: Python :: 3.7
21
20
  Classifier: Programming Language :: Python :: 3.8
22
21
  Classifier: Programming Language :: Python :: 3.9
23
22
  Classifier: Programming Language :: Python :: 3.10
@@ -26,8 +25,8 @@ Classifier: Programming Language :: Python :: 3.12
26
25
  Classifier: Programming Language :: Python :: 3.13
27
26
  Classifier: Programming Language :: Python :: 3 :: Only
28
27
  Classifier: Programming Language :: Python :: Implementation :: CPython
29
- Classifier: Typing :: Typed
30
- Requires-Python: >=3.7
28
+ Classifier: Typing :: Stubs Only
29
+ Requires-Python: >=3.8
31
30
  Description-Content-Type: text/markdown
32
31
  License-File: LICENSE
33
32
  Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
@@ -44,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
44
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
44
 
46
45
  Type annotations for
47
- [boto3.Athena 1.33.8](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena)
46
+ [boto3.Athena 1.34.23](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena)
48
47
  service compatible with [VSCode](https://code.visualstudio.com/),
49
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
50
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -53,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
53
52
  [pyright](https://github.com/microsoft/pyright) and other tools.
54
53
 
55
54
  Generated by
56
- [mypy-boto3-builder 7.21.0](https://github.com/youtype/mypy_boto3_builder).
55
+ [mypy-boto3-builder 7.23.1](https://github.com/youtype/mypy_boto3_builder).
57
56
 
58
57
  More information can be found on
59
58
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -0,0 +1,18 @@
1
+ mypy_boto3_athena/__init__.py,sha256=hw3sQXnONJY3vVIKAcnpM82YmS362Q0T_L-90eiMIdQ,1850
2
+ mypy_boto3_athena/__init__.pyi,sha256=hw3sQXnONJY3vVIKAcnpM82YmS362Q0T_L-90eiMIdQ,1850
3
+ mypy_boto3_athena/__main__.py,sha256=RuNz4AJiqlfBrJeMmb4AaQimBvPNCee74RHRWexOOsk,904
4
+ mypy_boto3_athena/client.py,sha256=qYuv0V61jalsTUHTMpUARey6T4mgNoiCknCS4YIlPGc,46452
5
+ mypy_boto3_athena/client.pyi,sha256=WQjqtZgyaVczI7Fm2Wxhtg7_imtoiTRPEkZH0fHZIZo,46449
6
+ mypy_boto3_athena/literals.py,sha256=eS6RoLh7gRFh_xvXseBbq6DT7TZkyiORWhzFDTz12go,11228
7
+ mypy_boto3_athena/literals.pyi,sha256=eS6RoLh7gRFh_xvXseBbq6DT7TZkyiORWhzFDTz12go,11228
8
+ mypy_boto3_athena/paginator.py,sha256=k8-4EkRckXm0H4FtwX2qyIY1wemsfA7-BaFak53XXvE,8363
9
+ mypy_boto3_athena/paginator.pyi,sha256=EoapBOmCnvVDJF3-GUBn13jPZ_-s2fv84uWAmoaLgf4,8355
10
+ mypy_boto3_athena/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_athena/type_defs.py,sha256=m8Vx0GJxB-fxe-rDhGT0jxP4N_2CFGEuZ0IzQg-xepA,53853
12
+ mypy_boto3_athena/type_defs.pyi,sha256=m8Vx0GJxB-fxe-rDhGT0jxP4N_2CFGEuZ0IzQg-xepA,53853
13
+ mypy_boto3_athena/version.py,sha256=FA3hq608ZZsw8r6xmBnqAenJKH72Jm7CzdEd3snqtto,62
14
+ mypy_boto3_athena-1.34.23.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
15
+ mypy_boto3_athena-1.34.23.dist-info/METADATA,sha256=Fy8AD2nn7q6I8obtHIuREGeGYNOMC4TNf0z9J122Xj4,13463
16
+ mypy_boto3_athena-1.34.23.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
17
+ mypy_boto3_athena-1.34.23.dist-info/top_level.txt,sha256=zhATfWFKeSfNk0lB3FXaQgvfFX_G02p4RuEUJSe6u0Q,18
18
+ mypy_boto3_athena-1.34.23.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- mypy_boto3_athena/__init__.py,sha256=BLus0-dGGQQNuRnhbvD5HLzWXgoD5qqfw3jRRSBf6xw,1851
2
- mypy_boto3_athena/__init__.pyi,sha256=hw3sQXnONJY3vVIKAcnpM82YmS362Q0T_L-90eiMIdQ,1850
3
- mypy_boto3_athena/__main__.py,sha256=12NQicFtCsIXhQ5BAxlc3dYnimDwZIQ1wWMrEmApgaE,901
4
- mypy_boto3_athena/client.py,sha256=dUTfTlbZCS3P4B-aIv5VjTdTCDihqpWEZys3FRHFL-4,46389
5
- mypy_boto3_athena/client.pyi,sha256=QUZDSx73NzfeVQJKkI9ZuNyjM6Awd5BXxa__tUkMV7U,46385
6
- mypy_boto3_athena/literals.py,sha256=bJpbNKkTvwl73qhIFw_wOmqMFvoC0Of0RJ4WIEm6rKo,11168
7
- mypy_boto3_athena/literals.pyi,sha256=zoCeE88NVNs4Rtz0IWaswRc7-8yqmygWJ72-C6kbVnw,11166
8
- mypy_boto3_athena/paginator.py,sha256=IvKiPosiyI-L0VY3H_Qf3O0We2YK35I9KOdpBxd0MAw,8362
9
- mypy_boto3_athena/paginator.pyi,sha256=vPrHMu9DPALRoKushJa9WnLedNGRkDq2OqdXME1Fca4,8353
10
- mypy_boto3_athena/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_athena/type_defs.py,sha256=aEmIYKxNWh7tIbKIze9MEPKN1iuzG68Z0_pZ4Hx4nuk,53790
12
- mypy_boto3_athena/type_defs.pyi,sha256=4zZvy4bkx3ZtERQMpPMAH0JKQKlGxJ0KinRPRdWmk_k,53789
13
- mypy_boto3_athena/version.py,sha256=DIyOWQlyZZnJohBiXC4n1KFUG8XeFHEjipYZ0nmqPBg,61
14
- mypy_boto3_athena-1.33.8.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
15
- mypy_boto3_athena-1.33.8.dist-info/METADATA,sha256=uFJ8a7Vdp93u6auWzLtXN7_huZ4QzCzatQD7SPFYKZ4,13505
16
- mypy_boto3_athena-1.33.8.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
17
- mypy_boto3_athena-1.33.8.dist-info/top_level.txt,sha256=zhATfWFKeSfNk0lB3FXaQgvfFX_G02p4RuEUJSe6u0Q,18
18
- mypy_boto3_athena-1.33.8.dist-info/RECORD,,