mypy-boto3-athena 1.26.103__py3-none-any.whl → 1.26.134__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.
- mypy_boto3_athena/__main__.py +3 -3
- mypy_boto3_athena/client.py +77 -2
- mypy_boto3_athena/client.pyi +70 -2
- mypy_boto3_athena/literals.py +7 -0
- mypy_boto3_athena/literals.pyi +7 -0
- mypy_boto3_athena/type_defs.py +177 -0
- mypy_boto3_athena/type_defs.pyi +171 -0
- mypy_boto3_athena/version.py +1 -1
- {mypy_boto3_athena-1.26.103.dist-info → mypy_boto3_athena-1.26.134.dist-info}/METADATA +20 -4
- mypy_boto3_athena-1.26.134.dist-info/RECORD +18 -0
- mypy_boto3_athena-1.26.103.dist-info/RECORD +0 -18
- {mypy_boto3_athena-1.26.103.dist-info → mypy_boto3_athena-1.26.134.dist-info}/LICENSE +0 -0
- {mypy_boto3_athena-1.26.103.dist-info → mypy_boto3_athena-1.26.134.dist-info}/WHEEL +0 -0
- {mypy_boto3_athena-1.26.103.dist-info → mypy_boto3_athena-1.26.134.dist-info}/top_level.txt +0 -0
mypy_boto3_athena/__main__.py
CHANGED
|
@@ -9,8 +9,8 @@ def print_info() -> None:
|
|
|
9
9
|
Print package info to stdout.
|
|
10
10
|
"""
|
|
11
11
|
print(
|
|
12
|
-
"Type annotations for boto3.Athena 1.26.
|
|
13
|
-
" 7.14.
|
|
12
|
+
"Type annotations for boto3.Athena 1.26.134\nVersion: 1.26.134\nBuilder version:"
|
|
13
|
+
" 7.14.5\nDocs: "
|
|
14
14
|
" https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena//\nBoto3 docs: "
|
|
15
15
|
" https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena\nOther"
|
|
16
16
|
" services: https://pypi.org/project/boto3-stubs/\nChangelog: "
|
|
@@ -22,7 +22,7 @@ def print_version() -> None:
|
|
|
22
22
|
"""
|
|
23
23
|
Print package version to stdout.
|
|
24
24
|
"""
|
|
25
|
-
print("1.26.
|
|
25
|
+
print("1.26.134")
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def main() -> None:
|
mypy_boto3_athena/client.py
CHANGED
|
@@ -39,6 +39,7 @@ from .type_defs import (
|
|
|
39
39
|
BatchGetPreparedStatementOutputTypeDef,
|
|
40
40
|
BatchGetQueryExecutionOutputTypeDef,
|
|
41
41
|
CalculationConfigurationTypeDef,
|
|
42
|
+
CapacityAssignmentTypeDef,
|
|
42
43
|
CreateNamedQueryOutputTypeDef,
|
|
43
44
|
CreateNotebookOutputTypeDef,
|
|
44
45
|
CreatePresignedNotebookUrlResponseTypeDef,
|
|
@@ -48,6 +49,8 @@ from .type_defs import (
|
|
|
48
49
|
GetCalculationExecutionCodeResponseTypeDef,
|
|
49
50
|
GetCalculationExecutionResponseTypeDef,
|
|
50
51
|
GetCalculationExecutionStatusResponseTypeDef,
|
|
52
|
+
GetCapacityAssignmentConfigurationOutputTypeDef,
|
|
53
|
+
GetCapacityReservationOutputTypeDef,
|
|
51
54
|
GetDatabaseOutputTypeDef,
|
|
52
55
|
GetDataCatalogOutputTypeDef,
|
|
53
56
|
GetNamedQueryOutputTypeDef,
|
|
@@ -63,6 +66,7 @@ from .type_defs import (
|
|
|
63
66
|
ImportNotebookOutputTypeDef,
|
|
64
67
|
ListApplicationDPUSizesOutputTypeDef,
|
|
65
68
|
ListCalculationExecutionsResponseTypeDef,
|
|
69
|
+
ListCapacityReservationsOutputTypeDef,
|
|
66
70
|
ListDatabasesOutputTypeDef,
|
|
67
71
|
ListDataCatalogsOutputTypeDef,
|
|
68
72
|
ListEngineVersionsOutputTypeDef,
|
|
@@ -174,6 +178,14 @@ class AthenaClient(BaseClient):
|
|
|
174
178
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#can_paginate)
|
|
175
179
|
"""
|
|
176
180
|
|
|
181
|
+
def cancel_capacity_reservation(self, *, Name: str) -> Dict[str, Any]:
|
|
182
|
+
"""
|
|
183
|
+
Cancels the capacity reservation with the specified name.
|
|
184
|
+
|
|
185
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.cancel_capacity_reservation)
|
|
186
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#cancel_capacity_reservation)
|
|
187
|
+
"""
|
|
188
|
+
|
|
177
189
|
def close(self) -> None:
|
|
178
190
|
"""
|
|
179
191
|
Closes underlying endpoint connections.
|
|
@@ -182,6 +194,17 @@ class AthenaClient(BaseClient):
|
|
|
182
194
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#close)
|
|
183
195
|
"""
|
|
184
196
|
|
|
197
|
+
def create_capacity_reservation(
|
|
198
|
+
self, *, TargetDpus: int, Name: str, Tags: Sequence[TagTypeDef] = ...
|
|
199
|
+
) -> Dict[str, Any]:
|
|
200
|
+
"""
|
|
201
|
+
Creates a capacity reservation with the specified name and number of requested
|
|
202
|
+
data processing units.
|
|
203
|
+
|
|
204
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.create_capacity_reservation)
|
|
205
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#create_capacity_reservation)
|
|
206
|
+
"""
|
|
207
|
+
|
|
185
208
|
def create_data_catalog(
|
|
186
209
|
self,
|
|
187
210
|
*,
|
|
@@ -356,6 +379,25 @@ class AthenaClient(BaseClient):
|
|
|
356
379
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_calculation_execution_status)
|
|
357
380
|
"""
|
|
358
381
|
|
|
382
|
+
def get_capacity_assignment_configuration(
|
|
383
|
+
self, *, CapacityReservationName: str
|
|
384
|
+
) -> GetCapacityAssignmentConfigurationOutputTypeDef:
|
|
385
|
+
"""
|
|
386
|
+
Gets the capacity assignment configuration for a capacity reservation, if one
|
|
387
|
+
exists.
|
|
388
|
+
|
|
389
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.get_capacity_assignment_configuration)
|
|
390
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_capacity_assignment_configuration)
|
|
391
|
+
"""
|
|
392
|
+
|
|
393
|
+
def get_capacity_reservation(self, *, Name: str) -> GetCapacityReservationOutputTypeDef:
|
|
394
|
+
"""
|
|
395
|
+
Returns information about the capacity reservation with the specified name.
|
|
396
|
+
|
|
397
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.get_capacity_reservation)
|
|
398
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_capacity_reservation)
|
|
399
|
+
"""
|
|
400
|
+
|
|
359
401
|
def get_data_catalog(self, *, Name: str) -> GetDataCatalogOutputTypeDef:
|
|
360
402
|
"""
|
|
361
403
|
Returns the specified data catalog.
|
|
@@ -508,6 +550,16 @@ class AthenaClient(BaseClient):
|
|
|
508
550
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#list_calculation_executions)
|
|
509
551
|
"""
|
|
510
552
|
|
|
553
|
+
def list_capacity_reservations(
|
|
554
|
+
self, *, NextToken: str = ..., MaxResults: int = ...
|
|
555
|
+
) -> ListCapacityReservationsOutputTypeDef:
|
|
556
|
+
"""
|
|
557
|
+
Lists the capacity reservations for the current account.
|
|
558
|
+
|
|
559
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.list_capacity_reservations)
|
|
560
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#list_capacity_reservations)
|
|
561
|
+
"""
|
|
562
|
+
|
|
511
563
|
def list_data_catalogs(
|
|
512
564
|
self, *, NextToken: str = ..., MaxResults: int = ...
|
|
513
565
|
) -> ListDataCatalogsOutputTypeDef:
|
|
@@ -648,7 +700,7 @@ class AthenaClient(BaseClient):
|
|
|
648
700
|
self, *, ResourceARN: str, NextToken: str = ..., MaxResults: int = ...
|
|
649
701
|
) -> ListTagsForResourceOutputTypeDef:
|
|
650
702
|
"""
|
|
651
|
-
Lists the tags associated with an Athena
|
|
703
|
+
Lists the tags associated with an Athena resource.
|
|
652
704
|
|
|
653
705
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.list_tags_for_resource)
|
|
654
706
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#list_tags_for_resource)
|
|
@@ -664,6 +716,20 @@ class AthenaClient(BaseClient):
|
|
|
664
716
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#list_work_groups)
|
|
665
717
|
"""
|
|
666
718
|
|
|
719
|
+
def put_capacity_assignment_configuration(
|
|
720
|
+
self,
|
|
721
|
+
*,
|
|
722
|
+
CapacityReservationName: str,
|
|
723
|
+
CapacityAssignments: Sequence[CapacityAssignmentTypeDef]
|
|
724
|
+
) -> Dict[str, Any]:
|
|
725
|
+
"""
|
|
726
|
+
Puts a new capacity assignment configuration for a specified capacity
|
|
727
|
+
reservation.
|
|
728
|
+
|
|
729
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.put_capacity_assignment_configuration)
|
|
730
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#put_capacity_assignment_configuration)
|
|
731
|
+
"""
|
|
732
|
+
|
|
667
733
|
def start_calculation_execution(
|
|
668
734
|
self,
|
|
669
735
|
*,
|
|
@@ -751,12 +817,21 @@ class AthenaClient(BaseClient):
|
|
|
751
817
|
|
|
752
818
|
def untag_resource(self, *, ResourceARN: str, TagKeys: Sequence[str]) -> Dict[str, Any]:
|
|
753
819
|
"""
|
|
754
|
-
Removes one or more tags from
|
|
820
|
+
Removes one or more tags from an Athena resource.
|
|
755
821
|
|
|
756
822
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.untag_resource)
|
|
757
823
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#untag_resource)
|
|
758
824
|
"""
|
|
759
825
|
|
|
826
|
+
def update_capacity_reservation(self, *, TargetDpus: int, Name: str) -> Dict[str, Any]:
|
|
827
|
+
"""
|
|
828
|
+
Updates the number of requested data processing units for the capacity
|
|
829
|
+
reservation with the specified name.
|
|
830
|
+
|
|
831
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.update_capacity_reservation)
|
|
832
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#update_capacity_reservation)
|
|
833
|
+
"""
|
|
834
|
+
|
|
760
835
|
def update_data_catalog(
|
|
761
836
|
self,
|
|
762
837
|
*,
|
mypy_boto3_athena/client.pyi
CHANGED
|
@@ -39,6 +39,7 @@ from .type_defs import (
|
|
|
39
39
|
BatchGetPreparedStatementOutputTypeDef,
|
|
40
40
|
BatchGetQueryExecutionOutputTypeDef,
|
|
41
41
|
CalculationConfigurationTypeDef,
|
|
42
|
+
CapacityAssignmentTypeDef,
|
|
42
43
|
CreateNamedQueryOutputTypeDef,
|
|
43
44
|
CreateNotebookOutputTypeDef,
|
|
44
45
|
CreatePresignedNotebookUrlResponseTypeDef,
|
|
@@ -48,6 +49,8 @@ from .type_defs import (
|
|
|
48
49
|
GetCalculationExecutionCodeResponseTypeDef,
|
|
49
50
|
GetCalculationExecutionResponseTypeDef,
|
|
50
51
|
GetCalculationExecutionStatusResponseTypeDef,
|
|
52
|
+
GetCapacityAssignmentConfigurationOutputTypeDef,
|
|
53
|
+
GetCapacityReservationOutputTypeDef,
|
|
51
54
|
GetDatabaseOutputTypeDef,
|
|
52
55
|
GetDataCatalogOutputTypeDef,
|
|
53
56
|
GetNamedQueryOutputTypeDef,
|
|
@@ -63,6 +66,7 @@ from .type_defs import (
|
|
|
63
66
|
ImportNotebookOutputTypeDef,
|
|
64
67
|
ListApplicationDPUSizesOutputTypeDef,
|
|
65
68
|
ListCalculationExecutionsResponseTypeDef,
|
|
69
|
+
ListCapacityReservationsOutputTypeDef,
|
|
66
70
|
ListDatabasesOutputTypeDef,
|
|
67
71
|
ListDataCatalogsOutputTypeDef,
|
|
68
72
|
ListEngineVersionsOutputTypeDef,
|
|
@@ -165,6 +169,13 @@ class AthenaClient(BaseClient):
|
|
|
165
169
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.can_paginate)
|
|
166
170
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#can_paginate)
|
|
167
171
|
"""
|
|
172
|
+
def cancel_capacity_reservation(self, *, Name: str) -> Dict[str, Any]:
|
|
173
|
+
"""
|
|
174
|
+
Cancels the capacity reservation with the specified name.
|
|
175
|
+
|
|
176
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.cancel_capacity_reservation)
|
|
177
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#cancel_capacity_reservation)
|
|
178
|
+
"""
|
|
168
179
|
def close(self) -> None:
|
|
169
180
|
"""
|
|
170
181
|
Closes underlying endpoint connections.
|
|
@@ -172,6 +183,16 @@ class AthenaClient(BaseClient):
|
|
|
172
183
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.close)
|
|
173
184
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#close)
|
|
174
185
|
"""
|
|
186
|
+
def create_capacity_reservation(
|
|
187
|
+
self, *, TargetDpus: int, Name: str, Tags: Sequence[TagTypeDef] = ...
|
|
188
|
+
) -> Dict[str, Any]:
|
|
189
|
+
"""
|
|
190
|
+
Creates a capacity reservation with the specified name and number of requested
|
|
191
|
+
data processing units.
|
|
192
|
+
|
|
193
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.create_capacity_reservation)
|
|
194
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#create_capacity_reservation)
|
|
195
|
+
"""
|
|
175
196
|
def create_data_catalog(
|
|
176
197
|
self,
|
|
177
198
|
*,
|
|
@@ -330,6 +351,23 @@ class AthenaClient(BaseClient):
|
|
|
330
351
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.get_calculation_execution_status)
|
|
331
352
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_calculation_execution_status)
|
|
332
353
|
"""
|
|
354
|
+
def get_capacity_assignment_configuration(
|
|
355
|
+
self, *, CapacityReservationName: str
|
|
356
|
+
) -> GetCapacityAssignmentConfigurationOutputTypeDef:
|
|
357
|
+
"""
|
|
358
|
+
Gets the capacity assignment configuration for a capacity reservation, if one
|
|
359
|
+
exists.
|
|
360
|
+
|
|
361
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.get_capacity_assignment_configuration)
|
|
362
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_capacity_assignment_configuration)
|
|
363
|
+
"""
|
|
364
|
+
def get_capacity_reservation(self, *, Name: str) -> GetCapacityReservationOutputTypeDef:
|
|
365
|
+
"""
|
|
366
|
+
Returns information about the capacity reservation with the specified name.
|
|
367
|
+
|
|
368
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.get_capacity_reservation)
|
|
369
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#get_capacity_reservation)
|
|
370
|
+
"""
|
|
333
371
|
def get_data_catalog(self, *, Name: str) -> GetDataCatalogOutputTypeDef:
|
|
334
372
|
"""
|
|
335
373
|
Returns the specified data catalog.
|
|
@@ -467,6 +505,15 @@ class AthenaClient(BaseClient):
|
|
|
467
505
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.list_calculation_executions)
|
|
468
506
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#list_calculation_executions)
|
|
469
507
|
"""
|
|
508
|
+
def list_capacity_reservations(
|
|
509
|
+
self, *, NextToken: str = ..., MaxResults: int = ...
|
|
510
|
+
) -> ListCapacityReservationsOutputTypeDef:
|
|
511
|
+
"""
|
|
512
|
+
Lists the capacity reservations for the current account.
|
|
513
|
+
|
|
514
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.list_capacity_reservations)
|
|
515
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#list_capacity_reservations)
|
|
516
|
+
"""
|
|
470
517
|
def list_data_catalogs(
|
|
471
518
|
self, *, NextToken: str = ..., MaxResults: int = ...
|
|
472
519
|
) -> ListDataCatalogsOutputTypeDef:
|
|
@@ -596,7 +643,7 @@ class AthenaClient(BaseClient):
|
|
|
596
643
|
self, *, ResourceARN: str, NextToken: str = ..., MaxResults: int = ...
|
|
597
644
|
) -> ListTagsForResourceOutputTypeDef:
|
|
598
645
|
"""
|
|
599
|
-
Lists the tags associated with an Athena
|
|
646
|
+
Lists the tags associated with an Athena resource.
|
|
600
647
|
|
|
601
648
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.list_tags_for_resource)
|
|
602
649
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#list_tags_for_resource)
|
|
@@ -610,6 +657,19 @@ class AthenaClient(BaseClient):
|
|
|
610
657
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.list_work_groups)
|
|
611
658
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#list_work_groups)
|
|
612
659
|
"""
|
|
660
|
+
def put_capacity_assignment_configuration(
|
|
661
|
+
self,
|
|
662
|
+
*,
|
|
663
|
+
CapacityReservationName: str,
|
|
664
|
+
CapacityAssignments: Sequence[CapacityAssignmentTypeDef]
|
|
665
|
+
) -> Dict[str, Any]:
|
|
666
|
+
"""
|
|
667
|
+
Puts a new capacity assignment configuration for a specified capacity
|
|
668
|
+
reservation.
|
|
669
|
+
|
|
670
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.put_capacity_assignment_configuration)
|
|
671
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#put_capacity_assignment_configuration)
|
|
672
|
+
"""
|
|
613
673
|
def start_calculation_execution(
|
|
614
674
|
self,
|
|
615
675
|
*,
|
|
@@ -690,11 +750,19 @@ class AthenaClient(BaseClient):
|
|
|
690
750
|
"""
|
|
691
751
|
def untag_resource(self, *, ResourceARN: str, TagKeys: Sequence[str]) -> Dict[str, Any]:
|
|
692
752
|
"""
|
|
693
|
-
Removes one or more tags from
|
|
753
|
+
Removes one or more tags from an Athena resource.
|
|
694
754
|
|
|
695
755
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.untag_resource)
|
|
696
756
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#untag_resource)
|
|
697
757
|
"""
|
|
758
|
+
def update_capacity_reservation(self, *, TargetDpus: int, Name: str) -> Dict[str, Any]:
|
|
759
|
+
"""
|
|
760
|
+
Updates the number of requested data processing units for the capacity
|
|
761
|
+
reservation with the specified name.
|
|
762
|
+
|
|
763
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena.Client.update_capacity_reservation)
|
|
764
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/client/#update_capacity_reservation)
|
|
765
|
+
"""
|
|
698
766
|
def update_data_catalog(
|
|
699
767
|
self,
|
|
700
768
|
*,
|
mypy_boto3_athena/literals.py
CHANGED
|
@@ -21,6 +21,8 @@ else:
|
|
|
21
21
|
|
|
22
22
|
__all__ = (
|
|
23
23
|
"CalculationExecutionStateType",
|
|
24
|
+
"CapacityAllocationStatusType",
|
|
25
|
+
"CapacityReservationStatusType",
|
|
24
26
|
"ColumnNullableType",
|
|
25
27
|
"DataCatalogTypeType",
|
|
26
28
|
"EncryptionOptionType",
|
|
@@ -50,6 +52,10 @@ __all__ = (
|
|
|
50
52
|
CalculationExecutionStateType = Literal[
|
|
51
53
|
"CANCELED", "CANCELING", "COMPLETED", "CREATED", "CREATING", "FAILED", "QUEUED", "RUNNING"
|
|
52
54
|
]
|
|
55
|
+
CapacityAllocationStatusType = Literal["FAILED", "PENDING", "SUCCEEDED"]
|
|
56
|
+
CapacityReservationStatusType = Literal[
|
|
57
|
+
"ACTIVE", "CANCELLED", "CANCELLING", "FAILED", "PENDING", "UPDATE_PENDING"
|
|
58
|
+
]
|
|
53
59
|
ColumnNullableType = Literal["NOT_NULL", "NULLABLE", "UNKNOWN"]
|
|
54
60
|
DataCatalogTypeType = Literal["GLUE", "HIVE", "LAMBDA"]
|
|
55
61
|
EncryptionOptionType = Literal["CSE_KMS", "SSE_KMS", "SSE_S3"]
|
|
@@ -310,6 +316,7 @@ ServiceName = Literal[
|
|
|
310
316
|
"opsworks",
|
|
311
317
|
"opsworkscm",
|
|
312
318
|
"organizations",
|
|
319
|
+
"osis",
|
|
313
320
|
"outposts",
|
|
314
321
|
"panorama",
|
|
315
322
|
"personalize",
|
mypy_boto3_athena/literals.pyi
CHANGED
|
@@ -20,6 +20,8 @@ else:
|
|
|
20
20
|
|
|
21
21
|
__all__ = (
|
|
22
22
|
"CalculationExecutionStateType",
|
|
23
|
+
"CapacityAllocationStatusType",
|
|
24
|
+
"CapacityReservationStatusType",
|
|
23
25
|
"ColumnNullableType",
|
|
24
26
|
"DataCatalogTypeType",
|
|
25
27
|
"EncryptionOptionType",
|
|
@@ -48,6 +50,10 @@ __all__ = (
|
|
|
48
50
|
CalculationExecutionStateType = Literal[
|
|
49
51
|
"CANCELED", "CANCELING", "COMPLETED", "CREATED", "CREATING", "FAILED", "QUEUED", "RUNNING"
|
|
50
52
|
]
|
|
53
|
+
CapacityAllocationStatusType = Literal["FAILED", "PENDING", "SUCCEEDED"]
|
|
54
|
+
CapacityReservationStatusType = Literal[
|
|
55
|
+
"ACTIVE", "CANCELLED", "CANCELLING", "FAILED", "PENDING", "UPDATE_PENDING"
|
|
56
|
+
]
|
|
51
57
|
ColumnNullableType = Literal["NOT_NULL", "NULLABLE", "UNKNOWN"]
|
|
52
58
|
DataCatalogTypeType = Literal["GLUE", "HIVE", "LAMBDA"]
|
|
53
59
|
EncryptionOptionType = Literal["CSE_KMS", "SSE_KMS", "SSE_S3"]
|
|
@@ -308,6 +314,7 @@ ServiceName = Literal[
|
|
|
308
314
|
"opsworks",
|
|
309
315
|
"opsworkscm",
|
|
310
316
|
"organizations",
|
|
317
|
+
"osis",
|
|
311
318
|
"outposts",
|
|
312
319
|
"panorama",
|
|
313
320
|
"personalize",
|
mypy_boto3_athena/type_defs.py
CHANGED
|
@@ -17,6 +17,8 @@ from typing import Any, Dict, List, Mapping, Sequence
|
|
|
17
17
|
|
|
18
18
|
from .literals import (
|
|
19
19
|
CalculationExecutionStateType,
|
|
20
|
+
CapacityAllocationStatusType,
|
|
21
|
+
CapacityReservationStatusType,
|
|
20
22
|
ColumnNullableType,
|
|
21
23
|
DataCatalogTypeType,
|
|
22
24
|
EncryptionOptionType,
|
|
@@ -55,6 +57,9 @@ __all__ = (
|
|
|
55
57
|
"CalculationResultTypeDef",
|
|
56
58
|
"CalculationStatisticsTypeDef",
|
|
57
59
|
"CalculationStatusTypeDef",
|
|
60
|
+
"CancelCapacityReservationInputRequestTypeDef",
|
|
61
|
+
"CapacityAllocationTypeDef",
|
|
62
|
+
"CapacityAssignmentTypeDef",
|
|
58
63
|
"ColumnInfoTypeDef",
|
|
59
64
|
"ColumnTypeDef",
|
|
60
65
|
"TagTypeDef",
|
|
@@ -82,6 +87,8 @@ __all__ = (
|
|
|
82
87
|
"GetCalculationExecutionCodeRequestRequestTypeDef",
|
|
83
88
|
"GetCalculationExecutionRequestRequestTypeDef",
|
|
84
89
|
"GetCalculationExecutionStatusRequestRequestTypeDef",
|
|
90
|
+
"GetCapacityAssignmentConfigurationInputRequestTypeDef",
|
|
91
|
+
"GetCapacityReservationInputRequestTypeDef",
|
|
85
92
|
"GetDataCatalogInputRequestTypeDef",
|
|
86
93
|
"GetDatabaseInputRequestTypeDef",
|
|
87
94
|
"GetNamedQueryInputRequestTypeDef",
|
|
@@ -100,6 +107,7 @@ __all__ = (
|
|
|
100
107
|
"ImportNotebookInputRequestTypeDef",
|
|
101
108
|
"ListApplicationDPUSizesInputRequestTypeDef",
|
|
102
109
|
"ListCalculationExecutionsRequestRequestTypeDef",
|
|
110
|
+
"ListCapacityReservationsInputRequestTypeDef",
|
|
103
111
|
"ListDataCatalogsInputRequestTypeDef",
|
|
104
112
|
"ListDatabasesInputRequestTypeDef",
|
|
105
113
|
"ListEngineVersionsInputRequestTypeDef",
|
|
@@ -125,6 +133,7 @@ __all__ = (
|
|
|
125
133
|
"StopQueryExecutionInputRequestTypeDef",
|
|
126
134
|
"TerminateSessionRequestRequestTypeDef",
|
|
127
135
|
"UntagResourceInputRequestTypeDef",
|
|
136
|
+
"UpdateCapacityReservationInputRequestTypeDef",
|
|
128
137
|
"UpdateDataCatalogInputRequestTypeDef",
|
|
129
138
|
"UpdateNamedQueryInputRequestTypeDef",
|
|
130
139
|
"UpdateNotebookInputRequestTypeDef",
|
|
@@ -152,8 +161,12 @@ __all__ = (
|
|
|
152
161
|
"CalculationSummaryTypeDef",
|
|
153
162
|
"GetCalculationExecutionResponseTypeDef",
|
|
154
163
|
"GetCalculationExecutionStatusResponseTypeDef",
|
|
164
|
+
"CapacityReservationTypeDef",
|
|
165
|
+
"CapacityAssignmentConfigurationTypeDef",
|
|
166
|
+
"PutCapacityAssignmentConfigurationInputRequestTypeDef",
|
|
155
167
|
"ResultSetMetadataTypeDef",
|
|
156
168
|
"TableMetadataTypeDef",
|
|
169
|
+
"CreateCapacityReservationInputRequestTypeDef",
|
|
157
170
|
"CreateDataCatalogInputRequestTypeDef",
|
|
158
171
|
"ListTagsForResourceOutputTypeDef",
|
|
159
172
|
"TagResourceInputRequestTypeDef",
|
|
@@ -188,6 +201,9 @@ __all__ = (
|
|
|
188
201
|
"QueryRuntimeStatisticsTypeDef",
|
|
189
202
|
"ResultReuseConfigurationTypeDef",
|
|
190
203
|
"ListCalculationExecutionsResponseTypeDef",
|
|
204
|
+
"GetCapacityReservationOutputTypeDef",
|
|
205
|
+
"ListCapacityReservationsOutputTypeDef",
|
|
206
|
+
"GetCapacityAssignmentConfigurationOutputTypeDef",
|
|
191
207
|
"GetTableMetadataOutputTypeDef",
|
|
192
208
|
"ListTableMetadataOutputTypeDef",
|
|
193
209
|
"ResultSetTypeDef",
|
|
@@ -372,6 +388,44 @@ CalculationStatusTypeDef = TypedDict(
|
|
|
372
388
|
total=False,
|
|
373
389
|
)
|
|
374
390
|
|
|
391
|
+
CancelCapacityReservationInputRequestTypeDef = TypedDict(
|
|
392
|
+
"CancelCapacityReservationInputRequestTypeDef",
|
|
393
|
+
{
|
|
394
|
+
"Name": str,
|
|
395
|
+
},
|
|
396
|
+
)
|
|
397
|
+
|
|
398
|
+
_RequiredCapacityAllocationTypeDef = TypedDict(
|
|
399
|
+
"_RequiredCapacityAllocationTypeDef",
|
|
400
|
+
{
|
|
401
|
+
"Status": CapacityAllocationStatusType,
|
|
402
|
+
"RequestTime": datetime,
|
|
403
|
+
},
|
|
404
|
+
)
|
|
405
|
+
_OptionalCapacityAllocationTypeDef = TypedDict(
|
|
406
|
+
"_OptionalCapacityAllocationTypeDef",
|
|
407
|
+
{
|
|
408
|
+
"StatusMessage": str,
|
|
409
|
+
"RequestCompletionTime": datetime,
|
|
410
|
+
},
|
|
411
|
+
total=False,
|
|
412
|
+
)
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
class CapacityAllocationTypeDef(
|
|
416
|
+
_RequiredCapacityAllocationTypeDef, _OptionalCapacityAllocationTypeDef
|
|
417
|
+
):
|
|
418
|
+
pass
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
CapacityAssignmentTypeDef = TypedDict(
|
|
422
|
+
"CapacityAssignmentTypeDef",
|
|
423
|
+
{
|
|
424
|
+
"WorkGroupNames": List[str],
|
|
425
|
+
},
|
|
426
|
+
total=False,
|
|
427
|
+
)
|
|
428
|
+
|
|
375
429
|
_RequiredColumnInfoTypeDef = TypedDict(
|
|
376
430
|
"_RequiredColumnInfoTypeDef",
|
|
377
431
|
{
|
|
@@ -654,6 +708,7 @@ _OptionalEngineConfigurationTypeDef = TypedDict(
|
|
|
654
708
|
"CoordinatorDpuSize": int,
|
|
655
709
|
"DefaultExecutorDpuSize": int,
|
|
656
710
|
"AdditionalConfigs": Dict[str, str],
|
|
711
|
+
"SparkProperties": Dict[str, str],
|
|
657
712
|
},
|
|
658
713
|
total=False,
|
|
659
714
|
)
|
|
@@ -746,6 +801,20 @@ GetCalculationExecutionStatusRequestRequestTypeDef = TypedDict(
|
|
|
746
801
|
},
|
|
747
802
|
)
|
|
748
803
|
|
|
804
|
+
GetCapacityAssignmentConfigurationInputRequestTypeDef = TypedDict(
|
|
805
|
+
"GetCapacityAssignmentConfigurationInputRequestTypeDef",
|
|
806
|
+
{
|
|
807
|
+
"CapacityReservationName": str,
|
|
808
|
+
},
|
|
809
|
+
)
|
|
810
|
+
|
|
811
|
+
GetCapacityReservationInputRequestTypeDef = TypedDict(
|
|
812
|
+
"GetCapacityReservationInputRequestTypeDef",
|
|
813
|
+
{
|
|
814
|
+
"Name": str,
|
|
815
|
+
},
|
|
816
|
+
)
|
|
817
|
+
|
|
749
818
|
GetDataCatalogInputRequestTypeDef = TypedDict(
|
|
750
819
|
"GetDataCatalogInputRequestTypeDef",
|
|
751
820
|
{
|
|
@@ -937,6 +1006,15 @@ class ListCalculationExecutionsRequestRequestTypeDef(
|
|
|
937
1006
|
pass
|
|
938
1007
|
|
|
939
1008
|
|
|
1009
|
+
ListCapacityReservationsInputRequestTypeDef = TypedDict(
|
|
1010
|
+
"ListCapacityReservationsInputRequestTypeDef",
|
|
1011
|
+
{
|
|
1012
|
+
"NextToken": str,
|
|
1013
|
+
"MaxResults": int,
|
|
1014
|
+
},
|
|
1015
|
+
total=False,
|
|
1016
|
+
)
|
|
1017
|
+
|
|
940
1018
|
ListDataCatalogsInputRequestTypeDef = TypedDict(
|
|
941
1019
|
"ListDataCatalogsInputRequestTypeDef",
|
|
942
1020
|
{
|
|
@@ -1278,6 +1356,14 @@ UntagResourceInputRequestTypeDef = TypedDict(
|
|
|
1278
1356
|
},
|
|
1279
1357
|
)
|
|
1280
1358
|
|
|
1359
|
+
UpdateCapacityReservationInputRequestTypeDef = TypedDict(
|
|
1360
|
+
"UpdateCapacityReservationInputRequestTypeDef",
|
|
1361
|
+
{
|
|
1362
|
+
"TargetDpus": int,
|
|
1363
|
+
"Name": str,
|
|
1364
|
+
},
|
|
1365
|
+
)
|
|
1366
|
+
|
|
1281
1367
|
_RequiredUpdateDataCatalogInputRequestTypeDef = TypedDict(
|
|
1282
1368
|
"_RequiredUpdateDataCatalogInputRequestTypeDef",
|
|
1283
1369
|
{
|
|
@@ -1610,6 +1696,49 @@ GetCalculationExecutionStatusResponseTypeDef = TypedDict(
|
|
|
1610
1696
|
},
|
|
1611
1697
|
)
|
|
1612
1698
|
|
|
1699
|
+
_RequiredCapacityReservationTypeDef = TypedDict(
|
|
1700
|
+
"_RequiredCapacityReservationTypeDef",
|
|
1701
|
+
{
|
|
1702
|
+
"Name": str,
|
|
1703
|
+
"Status": CapacityReservationStatusType,
|
|
1704
|
+
"TargetDpus": int,
|
|
1705
|
+
"AllocatedDpus": int,
|
|
1706
|
+
"CreationTime": datetime,
|
|
1707
|
+
},
|
|
1708
|
+
)
|
|
1709
|
+
_OptionalCapacityReservationTypeDef = TypedDict(
|
|
1710
|
+
"_OptionalCapacityReservationTypeDef",
|
|
1711
|
+
{
|
|
1712
|
+
"LastAllocation": CapacityAllocationTypeDef,
|
|
1713
|
+
"LastSuccessfulAllocationTime": datetime,
|
|
1714
|
+
},
|
|
1715
|
+
total=False,
|
|
1716
|
+
)
|
|
1717
|
+
|
|
1718
|
+
|
|
1719
|
+
class CapacityReservationTypeDef(
|
|
1720
|
+
_RequiredCapacityReservationTypeDef, _OptionalCapacityReservationTypeDef
|
|
1721
|
+
):
|
|
1722
|
+
pass
|
|
1723
|
+
|
|
1724
|
+
|
|
1725
|
+
CapacityAssignmentConfigurationTypeDef = TypedDict(
|
|
1726
|
+
"CapacityAssignmentConfigurationTypeDef",
|
|
1727
|
+
{
|
|
1728
|
+
"CapacityReservationName": str,
|
|
1729
|
+
"CapacityAssignments": List[CapacityAssignmentTypeDef],
|
|
1730
|
+
},
|
|
1731
|
+
total=False,
|
|
1732
|
+
)
|
|
1733
|
+
|
|
1734
|
+
PutCapacityAssignmentConfigurationInputRequestTypeDef = TypedDict(
|
|
1735
|
+
"PutCapacityAssignmentConfigurationInputRequestTypeDef",
|
|
1736
|
+
{
|
|
1737
|
+
"CapacityReservationName": str,
|
|
1738
|
+
"CapacityAssignments": Sequence[CapacityAssignmentTypeDef],
|
|
1739
|
+
},
|
|
1740
|
+
)
|
|
1741
|
+
|
|
1613
1742
|
ResultSetMetadataTypeDef = TypedDict(
|
|
1614
1743
|
"ResultSetMetadataTypeDef",
|
|
1615
1744
|
{
|
|
@@ -1642,6 +1771,29 @@ class TableMetadataTypeDef(_RequiredTableMetadataTypeDef, _OptionalTableMetadata
|
|
|
1642
1771
|
pass
|
|
1643
1772
|
|
|
1644
1773
|
|
|
1774
|
+
_RequiredCreateCapacityReservationInputRequestTypeDef = TypedDict(
|
|
1775
|
+
"_RequiredCreateCapacityReservationInputRequestTypeDef",
|
|
1776
|
+
{
|
|
1777
|
+
"TargetDpus": int,
|
|
1778
|
+
"Name": str,
|
|
1779
|
+
},
|
|
1780
|
+
)
|
|
1781
|
+
_OptionalCreateCapacityReservationInputRequestTypeDef = TypedDict(
|
|
1782
|
+
"_OptionalCreateCapacityReservationInputRequestTypeDef",
|
|
1783
|
+
{
|
|
1784
|
+
"Tags": Sequence[TagTypeDef],
|
|
1785
|
+
},
|
|
1786
|
+
total=False,
|
|
1787
|
+
)
|
|
1788
|
+
|
|
1789
|
+
|
|
1790
|
+
class CreateCapacityReservationInputRequestTypeDef(
|
|
1791
|
+
_RequiredCreateCapacityReservationInputRequestTypeDef,
|
|
1792
|
+
_OptionalCreateCapacityReservationInputRequestTypeDef,
|
|
1793
|
+
):
|
|
1794
|
+
pass
|
|
1795
|
+
|
|
1796
|
+
|
|
1645
1797
|
_RequiredCreateDataCatalogInputRequestTypeDef = TypedDict(
|
|
1646
1798
|
"_RequiredCreateDataCatalogInputRequestTypeDef",
|
|
1647
1799
|
{
|
|
@@ -2065,6 +2217,31 @@ ListCalculationExecutionsResponseTypeDef = TypedDict(
|
|
|
2065
2217
|
},
|
|
2066
2218
|
)
|
|
2067
2219
|
|
|
2220
|
+
GetCapacityReservationOutputTypeDef = TypedDict(
|
|
2221
|
+
"GetCapacityReservationOutputTypeDef",
|
|
2222
|
+
{
|
|
2223
|
+
"CapacityReservation": CapacityReservationTypeDef,
|
|
2224
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2225
|
+
},
|
|
2226
|
+
)
|
|
2227
|
+
|
|
2228
|
+
ListCapacityReservationsOutputTypeDef = TypedDict(
|
|
2229
|
+
"ListCapacityReservationsOutputTypeDef",
|
|
2230
|
+
{
|
|
2231
|
+
"NextToken": str,
|
|
2232
|
+
"CapacityReservations": List[CapacityReservationTypeDef],
|
|
2233
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2234
|
+
},
|
|
2235
|
+
)
|
|
2236
|
+
|
|
2237
|
+
GetCapacityAssignmentConfigurationOutputTypeDef = TypedDict(
|
|
2238
|
+
"GetCapacityAssignmentConfigurationOutputTypeDef",
|
|
2239
|
+
{
|
|
2240
|
+
"CapacityAssignmentConfiguration": CapacityAssignmentConfigurationTypeDef,
|
|
2241
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2242
|
+
},
|
|
2243
|
+
)
|
|
2244
|
+
|
|
2068
2245
|
GetTableMetadataOutputTypeDef = TypedDict(
|
|
2069
2246
|
"GetTableMetadataOutputTypeDef",
|
|
2070
2247
|
{
|
mypy_boto3_athena/type_defs.pyi
CHANGED
|
@@ -17,6 +17,8 @@ from typing import Any, Dict, List, Mapping, Sequence
|
|
|
17
17
|
|
|
18
18
|
from .literals import (
|
|
19
19
|
CalculationExecutionStateType,
|
|
20
|
+
CapacityAllocationStatusType,
|
|
21
|
+
CapacityReservationStatusType,
|
|
20
22
|
ColumnNullableType,
|
|
21
23
|
DataCatalogTypeType,
|
|
22
24
|
EncryptionOptionType,
|
|
@@ -54,6 +56,9 @@ __all__ = (
|
|
|
54
56
|
"CalculationResultTypeDef",
|
|
55
57
|
"CalculationStatisticsTypeDef",
|
|
56
58
|
"CalculationStatusTypeDef",
|
|
59
|
+
"CancelCapacityReservationInputRequestTypeDef",
|
|
60
|
+
"CapacityAllocationTypeDef",
|
|
61
|
+
"CapacityAssignmentTypeDef",
|
|
57
62
|
"ColumnInfoTypeDef",
|
|
58
63
|
"ColumnTypeDef",
|
|
59
64
|
"TagTypeDef",
|
|
@@ -81,6 +86,8 @@ __all__ = (
|
|
|
81
86
|
"GetCalculationExecutionCodeRequestRequestTypeDef",
|
|
82
87
|
"GetCalculationExecutionRequestRequestTypeDef",
|
|
83
88
|
"GetCalculationExecutionStatusRequestRequestTypeDef",
|
|
89
|
+
"GetCapacityAssignmentConfigurationInputRequestTypeDef",
|
|
90
|
+
"GetCapacityReservationInputRequestTypeDef",
|
|
84
91
|
"GetDataCatalogInputRequestTypeDef",
|
|
85
92
|
"GetDatabaseInputRequestTypeDef",
|
|
86
93
|
"GetNamedQueryInputRequestTypeDef",
|
|
@@ -99,6 +106,7 @@ __all__ = (
|
|
|
99
106
|
"ImportNotebookInputRequestTypeDef",
|
|
100
107
|
"ListApplicationDPUSizesInputRequestTypeDef",
|
|
101
108
|
"ListCalculationExecutionsRequestRequestTypeDef",
|
|
109
|
+
"ListCapacityReservationsInputRequestTypeDef",
|
|
102
110
|
"ListDataCatalogsInputRequestTypeDef",
|
|
103
111
|
"ListDatabasesInputRequestTypeDef",
|
|
104
112
|
"ListEngineVersionsInputRequestTypeDef",
|
|
@@ -124,6 +132,7 @@ __all__ = (
|
|
|
124
132
|
"StopQueryExecutionInputRequestTypeDef",
|
|
125
133
|
"TerminateSessionRequestRequestTypeDef",
|
|
126
134
|
"UntagResourceInputRequestTypeDef",
|
|
135
|
+
"UpdateCapacityReservationInputRequestTypeDef",
|
|
127
136
|
"UpdateDataCatalogInputRequestTypeDef",
|
|
128
137
|
"UpdateNamedQueryInputRequestTypeDef",
|
|
129
138
|
"UpdateNotebookInputRequestTypeDef",
|
|
@@ -151,8 +160,12 @@ __all__ = (
|
|
|
151
160
|
"CalculationSummaryTypeDef",
|
|
152
161
|
"GetCalculationExecutionResponseTypeDef",
|
|
153
162
|
"GetCalculationExecutionStatusResponseTypeDef",
|
|
163
|
+
"CapacityReservationTypeDef",
|
|
164
|
+
"CapacityAssignmentConfigurationTypeDef",
|
|
165
|
+
"PutCapacityAssignmentConfigurationInputRequestTypeDef",
|
|
154
166
|
"ResultSetMetadataTypeDef",
|
|
155
167
|
"TableMetadataTypeDef",
|
|
168
|
+
"CreateCapacityReservationInputRequestTypeDef",
|
|
156
169
|
"CreateDataCatalogInputRequestTypeDef",
|
|
157
170
|
"ListTagsForResourceOutputTypeDef",
|
|
158
171
|
"TagResourceInputRequestTypeDef",
|
|
@@ -187,6 +200,9 @@ __all__ = (
|
|
|
187
200
|
"QueryRuntimeStatisticsTypeDef",
|
|
188
201
|
"ResultReuseConfigurationTypeDef",
|
|
189
202
|
"ListCalculationExecutionsResponseTypeDef",
|
|
203
|
+
"GetCapacityReservationOutputTypeDef",
|
|
204
|
+
"ListCapacityReservationsOutputTypeDef",
|
|
205
|
+
"GetCapacityAssignmentConfigurationOutputTypeDef",
|
|
190
206
|
"GetTableMetadataOutputTypeDef",
|
|
191
207
|
"ListTableMetadataOutputTypeDef",
|
|
192
208
|
"ResultSetTypeDef",
|
|
@@ -369,6 +385,42 @@ CalculationStatusTypeDef = TypedDict(
|
|
|
369
385
|
total=False,
|
|
370
386
|
)
|
|
371
387
|
|
|
388
|
+
CancelCapacityReservationInputRequestTypeDef = TypedDict(
|
|
389
|
+
"CancelCapacityReservationInputRequestTypeDef",
|
|
390
|
+
{
|
|
391
|
+
"Name": str,
|
|
392
|
+
},
|
|
393
|
+
)
|
|
394
|
+
|
|
395
|
+
_RequiredCapacityAllocationTypeDef = TypedDict(
|
|
396
|
+
"_RequiredCapacityAllocationTypeDef",
|
|
397
|
+
{
|
|
398
|
+
"Status": CapacityAllocationStatusType,
|
|
399
|
+
"RequestTime": datetime,
|
|
400
|
+
},
|
|
401
|
+
)
|
|
402
|
+
_OptionalCapacityAllocationTypeDef = TypedDict(
|
|
403
|
+
"_OptionalCapacityAllocationTypeDef",
|
|
404
|
+
{
|
|
405
|
+
"StatusMessage": str,
|
|
406
|
+
"RequestCompletionTime": datetime,
|
|
407
|
+
},
|
|
408
|
+
total=False,
|
|
409
|
+
)
|
|
410
|
+
|
|
411
|
+
class CapacityAllocationTypeDef(
|
|
412
|
+
_RequiredCapacityAllocationTypeDef, _OptionalCapacityAllocationTypeDef
|
|
413
|
+
):
|
|
414
|
+
pass
|
|
415
|
+
|
|
416
|
+
CapacityAssignmentTypeDef = TypedDict(
|
|
417
|
+
"CapacityAssignmentTypeDef",
|
|
418
|
+
{
|
|
419
|
+
"WorkGroupNames": List[str],
|
|
420
|
+
},
|
|
421
|
+
total=False,
|
|
422
|
+
)
|
|
423
|
+
|
|
372
424
|
_RequiredColumnInfoTypeDef = TypedDict(
|
|
373
425
|
"_RequiredColumnInfoTypeDef",
|
|
374
426
|
{
|
|
@@ -633,6 +685,7 @@ _OptionalEngineConfigurationTypeDef = TypedDict(
|
|
|
633
685
|
"CoordinatorDpuSize": int,
|
|
634
686
|
"DefaultExecutorDpuSize": int,
|
|
635
687
|
"AdditionalConfigs": Dict[str, str],
|
|
688
|
+
"SparkProperties": Dict[str, str],
|
|
636
689
|
},
|
|
637
690
|
total=False,
|
|
638
691
|
)
|
|
@@ -721,6 +774,20 @@ GetCalculationExecutionStatusRequestRequestTypeDef = TypedDict(
|
|
|
721
774
|
},
|
|
722
775
|
)
|
|
723
776
|
|
|
777
|
+
GetCapacityAssignmentConfigurationInputRequestTypeDef = TypedDict(
|
|
778
|
+
"GetCapacityAssignmentConfigurationInputRequestTypeDef",
|
|
779
|
+
{
|
|
780
|
+
"CapacityReservationName": str,
|
|
781
|
+
},
|
|
782
|
+
)
|
|
783
|
+
|
|
784
|
+
GetCapacityReservationInputRequestTypeDef = TypedDict(
|
|
785
|
+
"GetCapacityReservationInputRequestTypeDef",
|
|
786
|
+
{
|
|
787
|
+
"Name": str,
|
|
788
|
+
},
|
|
789
|
+
)
|
|
790
|
+
|
|
724
791
|
GetDataCatalogInputRequestTypeDef = TypedDict(
|
|
725
792
|
"GetDataCatalogInputRequestTypeDef",
|
|
726
793
|
{
|
|
@@ -906,6 +973,15 @@ class ListCalculationExecutionsRequestRequestTypeDef(
|
|
|
906
973
|
):
|
|
907
974
|
pass
|
|
908
975
|
|
|
976
|
+
ListCapacityReservationsInputRequestTypeDef = TypedDict(
|
|
977
|
+
"ListCapacityReservationsInputRequestTypeDef",
|
|
978
|
+
{
|
|
979
|
+
"NextToken": str,
|
|
980
|
+
"MaxResults": int,
|
|
981
|
+
},
|
|
982
|
+
total=False,
|
|
983
|
+
)
|
|
984
|
+
|
|
909
985
|
ListDataCatalogsInputRequestTypeDef = TypedDict(
|
|
910
986
|
"ListDataCatalogsInputRequestTypeDef",
|
|
911
987
|
{
|
|
@@ -1231,6 +1307,14 @@ UntagResourceInputRequestTypeDef = TypedDict(
|
|
|
1231
1307
|
},
|
|
1232
1308
|
)
|
|
1233
1309
|
|
|
1310
|
+
UpdateCapacityReservationInputRequestTypeDef = TypedDict(
|
|
1311
|
+
"UpdateCapacityReservationInputRequestTypeDef",
|
|
1312
|
+
{
|
|
1313
|
+
"TargetDpus": int,
|
|
1314
|
+
"Name": str,
|
|
1315
|
+
},
|
|
1316
|
+
)
|
|
1317
|
+
|
|
1234
1318
|
_RequiredUpdateDataCatalogInputRequestTypeDef = TypedDict(
|
|
1235
1319
|
"_RequiredUpdateDataCatalogInputRequestTypeDef",
|
|
1236
1320
|
{
|
|
@@ -1551,6 +1635,47 @@ GetCalculationExecutionStatusResponseTypeDef = TypedDict(
|
|
|
1551
1635
|
},
|
|
1552
1636
|
)
|
|
1553
1637
|
|
|
1638
|
+
_RequiredCapacityReservationTypeDef = TypedDict(
|
|
1639
|
+
"_RequiredCapacityReservationTypeDef",
|
|
1640
|
+
{
|
|
1641
|
+
"Name": str,
|
|
1642
|
+
"Status": CapacityReservationStatusType,
|
|
1643
|
+
"TargetDpus": int,
|
|
1644
|
+
"AllocatedDpus": int,
|
|
1645
|
+
"CreationTime": datetime,
|
|
1646
|
+
},
|
|
1647
|
+
)
|
|
1648
|
+
_OptionalCapacityReservationTypeDef = TypedDict(
|
|
1649
|
+
"_OptionalCapacityReservationTypeDef",
|
|
1650
|
+
{
|
|
1651
|
+
"LastAllocation": CapacityAllocationTypeDef,
|
|
1652
|
+
"LastSuccessfulAllocationTime": datetime,
|
|
1653
|
+
},
|
|
1654
|
+
total=False,
|
|
1655
|
+
)
|
|
1656
|
+
|
|
1657
|
+
class CapacityReservationTypeDef(
|
|
1658
|
+
_RequiredCapacityReservationTypeDef, _OptionalCapacityReservationTypeDef
|
|
1659
|
+
):
|
|
1660
|
+
pass
|
|
1661
|
+
|
|
1662
|
+
CapacityAssignmentConfigurationTypeDef = TypedDict(
|
|
1663
|
+
"CapacityAssignmentConfigurationTypeDef",
|
|
1664
|
+
{
|
|
1665
|
+
"CapacityReservationName": str,
|
|
1666
|
+
"CapacityAssignments": List[CapacityAssignmentTypeDef],
|
|
1667
|
+
},
|
|
1668
|
+
total=False,
|
|
1669
|
+
)
|
|
1670
|
+
|
|
1671
|
+
PutCapacityAssignmentConfigurationInputRequestTypeDef = TypedDict(
|
|
1672
|
+
"PutCapacityAssignmentConfigurationInputRequestTypeDef",
|
|
1673
|
+
{
|
|
1674
|
+
"CapacityReservationName": str,
|
|
1675
|
+
"CapacityAssignments": Sequence[CapacityAssignmentTypeDef],
|
|
1676
|
+
},
|
|
1677
|
+
)
|
|
1678
|
+
|
|
1554
1679
|
ResultSetMetadataTypeDef = TypedDict(
|
|
1555
1680
|
"ResultSetMetadataTypeDef",
|
|
1556
1681
|
{
|
|
@@ -1581,6 +1706,27 @@ _OptionalTableMetadataTypeDef = TypedDict(
|
|
|
1581
1706
|
class TableMetadataTypeDef(_RequiredTableMetadataTypeDef, _OptionalTableMetadataTypeDef):
|
|
1582
1707
|
pass
|
|
1583
1708
|
|
|
1709
|
+
_RequiredCreateCapacityReservationInputRequestTypeDef = TypedDict(
|
|
1710
|
+
"_RequiredCreateCapacityReservationInputRequestTypeDef",
|
|
1711
|
+
{
|
|
1712
|
+
"TargetDpus": int,
|
|
1713
|
+
"Name": str,
|
|
1714
|
+
},
|
|
1715
|
+
)
|
|
1716
|
+
_OptionalCreateCapacityReservationInputRequestTypeDef = TypedDict(
|
|
1717
|
+
"_OptionalCreateCapacityReservationInputRequestTypeDef",
|
|
1718
|
+
{
|
|
1719
|
+
"Tags": Sequence[TagTypeDef],
|
|
1720
|
+
},
|
|
1721
|
+
total=False,
|
|
1722
|
+
)
|
|
1723
|
+
|
|
1724
|
+
class CreateCapacityReservationInputRequestTypeDef(
|
|
1725
|
+
_RequiredCreateCapacityReservationInputRequestTypeDef,
|
|
1726
|
+
_OptionalCreateCapacityReservationInputRequestTypeDef,
|
|
1727
|
+
):
|
|
1728
|
+
pass
|
|
1729
|
+
|
|
1584
1730
|
_RequiredCreateDataCatalogInputRequestTypeDef = TypedDict(
|
|
1585
1731
|
"_RequiredCreateDataCatalogInputRequestTypeDef",
|
|
1586
1732
|
{
|
|
@@ -1990,6 +2136,31 @@ ListCalculationExecutionsResponseTypeDef = TypedDict(
|
|
|
1990
2136
|
},
|
|
1991
2137
|
)
|
|
1992
2138
|
|
|
2139
|
+
GetCapacityReservationOutputTypeDef = TypedDict(
|
|
2140
|
+
"GetCapacityReservationOutputTypeDef",
|
|
2141
|
+
{
|
|
2142
|
+
"CapacityReservation": CapacityReservationTypeDef,
|
|
2143
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2144
|
+
},
|
|
2145
|
+
)
|
|
2146
|
+
|
|
2147
|
+
ListCapacityReservationsOutputTypeDef = TypedDict(
|
|
2148
|
+
"ListCapacityReservationsOutputTypeDef",
|
|
2149
|
+
{
|
|
2150
|
+
"NextToken": str,
|
|
2151
|
+
"CapacityReservations": List[CapacityReservationTypeDef],
|
|
2152
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2153
|
+
},
|
|
2154
|
+
)
|
|
2155
|
+
|
|
2156
|
+
GetCapacityAssignmentConfigurationOutputTypeDef = TypedDict(
|
|
2157
|
+
"GetCapacityAssignmentConfigurationOutputTypeDef",
|
|
2158
|
+
{
|
|
2159
|
+
"CapacityAssignmentConfiguration": CapacityAssignmentConfigurationTypeDef,
|
|
2160
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2161
|
+
},
|
|
2162
|
+
)
|
|
2163
|
+
|
|
1993
2164
|
GetTableMetadataOutputTypeDef = TypedDict(
|
|
1994
2165
|
"GetTableMetadataOutputTypeDef",
|
|
1995
2166
|
{
|
mypy_boto3_athena/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-athena
|
|
3
|
-
Version: 1.26.
|
|
4
|
-
Summary: Type annotations for boto3.Athena 1.26.
|
|
3
|
+
Version: 1.26.134
|
|
4
|
+
Summary: Type annotations for boto3.Athena 1.26.134 service generated with mypy-boto3-builder 7.14.5
|
|
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
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions (>=4.1.0) ; python_version < "3.9"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.Athena 1.26.
|
|
46
|
+
[boto3.Athena 1.26.134](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/athena.html#Athena)
|
|
47
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated by
|
|
55
|
-
[mypy-boto3-builder 7.14.
|
|
55
|
+
[mypy-boto3-builder 7.14.5](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
|
|
@@ -322,6 +322,8 @@ that can be used in user code for type checking.
|
|
|
322
322
|
```python
|
|
323
323
|
from mypy_boto3_athena.literals import (
|
|
324
324
|
CalculationExecutionStateType,
|
|
325
|
+
CapacityAllocationStatusType,
|
|
326
|
+
CapacityReservationStatusType,
|
|
325
327
|
ColumnNullableType,
|
|
326
328
|
DataCatalogTypeType,
|
|
327
329
|
EncryptionOptionType,
|
|
@@ -377,6 +379,9 @@ from mypy_boto3_athena.type_defs import (
|
|
|
377
379
|
CalculationResultTypeDef,
|
|
378
380
|
CalculationStatisticsTypeDef,
|
|
379
381
|
CalculationStatusTypeDef,
|
|
382
|
+
CancelCapacityReservationInputRequestTypeDef,
|
|
383
|
+
CapacityAllocationTypeDef,
|
|
384
|
+
CapacityAssignmentTypeDef,
|
|
380
385
|
ColumnInfoTypeDef,
|
|
381
386
|
ColumnTypeDef,
|
|
382
387
|
TagTypeDef,
|
|
@@ -404,6 +409,8 @@ from mypy_boto3_athena.type_defs import (
|
|
|
404
409
|
GetCalculationExecutionCodeRequestRequestTypeDef,
|
|
405
410
|
GetCalculationExecutionRequestRequestTypeDef,
|
|
406
411
|
GetCalculationExecutionStatusRequestRequestTypeDef,
|
|
412
|
+
GetCapacityAssignmentConfigurationInputRequestTypeDef,
|
|
413
|
+
GetCapacityReservationInputRequestTypeDef,
|
|
407
414
|
GetDataCatalogInputRequestTypeDef,
|
|
408
415
|
GetDatabaseInputRequestTypeDef,
|
|
409
416
|
GetNamedQueryInputRequestTypeDef,
|
|
@@ -422,6 +429,7 @@ from mypy_boto3_athena.type_defs import (
|
|
|
422
429
|
ImportNotebookInputRequestTypeDef,
|
|
423
430
|
ListApplicationDPUSizesInputRequestTypeDef,
|
|
424
431
|
ListCalculationExecutionsRequestRequestTypeDef,
|
|
432
|
+
ListCapacityReservationsInputRequestTypeDef,
|
|
425
433
|
ListDataCatalogsInputRequestTypeDef,
|
|
426
434
|
ListDatabasesInputRequestTypeDef,
|
|
427
435
|
ListEngineVersionsInputRequestTypeDef,
|
|
@@ -447,6 +455,7 @@ from mypy_boto3_athena.type_defs import (
|
|
|
447
455
|
StopQueryExecutionInputRequestTypeDef,
|
|
448
456
|
TerminateSessionRequestRequestTypeDef,
|
|
449
457
|
UntagResourceInputRequestTypeDef,
|
|
458
|
+
UpdateCapacityReservationInputRequestTypeDef,
|
|
450
459
|
UpdateDataCatalogInputRequestTypeDef,
|
|
451
460
|
UpdateNamedQueryInputRequestTypeDef,
|
|
452
461
|
UpdateNotebookInputRequestTypeDef,
|
|
@@ -474,8 +483,12 @@ from mypy_boto3_athena.type_defs import (
|
|
|
474
483
|
CalculationSummaryTypeDef,
|
|
475
484
|
GetCalculationExecutionResponseTypeDef,
|
|
476
485
|
GetCalculationExecutionStatusResponseTypeDef,
|
|
486
|
+
CapacityReservationTypeDef,
|
|
487
|
+
CapacityAssignmentConfigurationTypeDef,
|
|
488
|
+
PutCapacityAssignmentConfigurationInputRequestTypeDef,
|
|
477
489
|
ResultSetMetadataTypeDef,
|
|
478
490
|
TableMetadataTypeDef,
|
|
491
|
+
CreateCapacityReservationInputRequestTypeDef,
|
|
479
492
|
CreateDataCatalogInputRequestTypeDef,
|
|
480
493
|
ListTagsForResourceOutputTypeDef,
|
|
481
494
|
TagResourceInputRequestTypeDef,
|
|
@@ -510,6 +523,9 @@ from mypy_boto3_athena.type_defs import (
|
|
|
510
523
|
QueryRuntimeStatisticsTypeDef,
|
|
511
524
|
ResultReuseConfigurationTypeDef,
|
|
512
525
|
ListCalculationExecutionsResponseTypeDef,
|
|
526
|
+
GetCapacityReservationOutputTypeDef,
|
|
527
|
+
ListCapacityReservationsOutputTypeDef,
|
|
528
|
+
GetCapacityAssignmentConfigurationOutputTypeDef,
|
|
513
529
|
GetTableMetadataOutputTypeDef,
|
|
514
530
|
ListTableMetadataOutputTypeDef,
|
|
515
531
|
ResultSetTypeDef,
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
mypy_boto3_athena/__init__.py,sha256=F2CB2NfmC9stoHr6KOqU0tqsa3dKw2aZeakKTemr8Wc,1850
|
|
2
|
+
mypy_boto3_athena/__init__.pyi,sha256=bMc5hm4j91-e4j7ooiRpgIiGs6nERwnKd2ygaqmvMnw,1849
|
|
3
|
+
mypy_boto3_athena/__main__.py,sha256=-aAQHL-5w9bw05niEcg9ldksRXpTPDPSF4zeyYz5cgg,906
|
|
4
|
+
mypy_boto3_athena/client.py,sha256=OT-RHQX0vJ8URgzh8t8mIrRKYXyeKt5X_yMQPTI-UnQ,45662
|
|
5
|
+
mypy_boto3_athena/client.pyi,sha256=bzpRVj2dov-UwWFSf8y7sQVc_PSgmNxbmrdNCZ7vP4I,45581
|
|
6
|
+
mypy_boto3_athena/literals.py,sha256=N63Vm1gWTmAXeZ1NKiLqmTMqLN-18gdcvJQWwAGorFE,10266
|
|
7
|
+
mypy_boto3_athena/literals.pyi,sha256=aD0KAMJerpChlQT1iW_o3rW_KjO-eRNVPg_ny4-iQ0U,10264
|
|
8
|
+
mypy_boto3_athena/paginator.py,sha256=Q210PRklUE3LlLUI2RI0AGpurkppJKFAPa_UQ0SNVqw,8255
|
|
9
|
+
mypy_boto3_athena/paginator.pyi,sha256=aBfUFvfd1PeevJ4d9yRvuBK5LKVqYAKlx0UMZQwmHds,8246
|
|
10
|
+
mypy_boto3_athena/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_athena/type_defs.py,sha256=VtjWpXCvTSkj5mVOZc1G1vgtLlw4Ak93M1k6JTwRNdA,62499
|
|
12
|
+
mypy_boto3_athena/type_defs.pyi,sha256=iDGRWIGOz9O-0PS1_5moYeukFf_C3TE0RgBLmKVgetk,62410
|
|
13
|
+
mypy_boto3_athena/version.py,sha256=slkodQnY5pvW55fFdBcymqFfSZ_AeC8zu5tROFxuuvE,62
|
|
14
|
+
mypy_boto3_athena-1.26.134.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
15
|
+
mypy_boto3_athena-1.26.134.dist-info/METADATA,sha256=8x3zYGhnCTjm7HD54zFy5dAvXMzBg8lhEaprphOAfZI,20939
|
|
16
|
+
mypy_boto3_athena-1.26.134.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
17
|
+
mypy_boto3_athena-1.26.134.dist-info/top_level.txt,sha256=zhATfWFKeSfNk0lB3FXaQgvfFX_G02p4RuEUJSe6u0Q,18
|
|
18
|
+
mypy_boto3_athena-1.26.134.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
mypy_boto3_athena/__init__.py,sha256=F2CB2NfmC9stoHr6KOqU0tqsa3dKw2aZeakKTemr8Wc,1850
|
|
2
|
-
mypy_boto3_athena/__init__.pyi,sha256=bMc5hm4j91-e4j7ooiRpgIiGs6nERwnKd2ygaqmvMnw,1849
|
|
3
|
-
mypy_boto3_athena/__main__.py,sha256=CQXV4PgthAjqHE6IfxOQpXgai7ilbEXUZxaudYqvAJg,906
|
|
4
|
-
mypy_boto3_athena/client.py,sha256=VP07J3PKUZzzIPrJTaRudK7ZSmaHcjCEuCvBBsuPLXw,41642
|
|
5
|
-
mypy_boto3_athena/client.pyi,sha256=bUO6eZjIpCIde6wPOHuDYzyPkXHBd3YG29d1KhX4zRc,41568
|
|
6
|
-
mypy_boto3_athena/literals.py,sha256=ogueuVL_JSsifcb8QQPZHAl-h2117VTOz6_y6D9IdJ0,9986
|
|
7
|
-
mypy_boto3_athena/literals.pyi,sha256=v1yr21MmJ6nuLPKciw-tvOcUANQN3P4JNScdC7_aKIg,9984
|
|
8
|
-
mypy_boto3_athena/paginator.py,sha256=Q210PRklUE3LlLUI2RI0AGpurkppJKFAPa_UQ0SNVqw,8255
|
|
9
|
-
mypy_boto3_athena/paginator.pyi,sha256=aBfUFvfd1PeevJ4d9yRvuBK5LKVqYAKlx0UMZQwmHds,8246
|
|
10
|
-
mypy_boto3_athena/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_athena/type_defs.py,sha256=EhiptlISr-C7t5V2U6Fd12qwpzTpVy3wrqphxQ-6E8I,57804
|
|
12
|
-
mypy_boto3_athena/type_defs.pyi,sha256=ooVt6ardFa8Nybbr6M4tOYnazYXLUHVb2w7IrcDmnGo,57721
|
|
13
|
-
mypy_boto3_athena/version.py,sha256=sa7DdCMZFs4BvjYbGOgYeYYOZA4t0DvTSH2UmU_pr6I,62
|
|
14
|
-
mypy_boto3_athena-1.26.103.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
15
|
-
mypy_boto3_athena-1.26.103.dist-info/METADATA,sha256=9SlgE94lHmWb_7XolVo7KkHCMIQ1LZbjHUyWHY4NpjM,20231
|
|
16
|
-
mypy_boto3_athena-1.26.103.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
17
|
-
mypy_boto3_athena-1.26.103.dist-info/top_level.txt,sha256=zhATfWFKeSfNk0lB3FXaQgvfFX_G02p4RuEUJSe6u0Q,18
|
|
18
|
-
mypy_boto3_athena-1.26.103.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|