mypy-boto3-eks 1.35.0__py3-none-any.whl → 1.35.57__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_eks/__init__.py +1 -0
- mypy_boto3_eks/__main__.py +4 -4
- mypy_boto3_eks/client.py +132 -262
- mypy_boto3_eks/client.pyi +131 -262
- mypy_boto3_eks/literals.py +18 -8
- mypy_boto3_eks/literals.pyi +16 -8
- mypy_boto3_eks/paginator.py +46 -44
- mypy_boto3_eks/paginator.pyi +44 -57
- mypy_boto3_eks/type_defs.py +1422 -1765
- mypy_boto3_eks/type_defs.pyi +1224 -1778
- mypy_boto3_eks/version.py +1 -1
- mypy_boto3_eks/waiter.py +26 -17
- mypy_boto3_eks/waiter.pyi +25 -25
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.35.57.dist-info}/METADATA +9 -9
- mypy_boto3_eks-1.35.57.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.35.57.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.35.0.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.35.57.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.35.57.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/literals.py
CHANGED
|
@@ -19,6 +19,7 @@ if sys.version_info >= (3, 12):
|
|
|
19
19
|
else:
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
|
+
|
|
22
23
|
__all__ = (
|
|
23
24
|
"AMITypesType",
|
|
24
25
|
"AccessScopeTypeType",
|
|
@@ -36,6 +37,7 @@ __all__ = (
|
|
|
36
37
|
"ConfigStatusType",
|
|
37
38
|
"ConnectorConfigProviderType",
|
|
38
39
|
"DescribeAddonVersionsPaginatorName",
|
|
40
|
+
"EKSServiceName",
|
|
39
41
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
40
42
|
"EksAnywhereSubscriptionStatusType",
|
|
41
43
|
"EksAnywhereSubscriptionTermUnitType",
|
|
@@ -63,20 +65,20 @@ __all__ = (
|
|
|
63
65
|
"NodegroupDeletedWaiterName",
|
|
64
66
|
"NodegroupIssueCodeType",
|
|
65
67
|
"NodegroupStatusType",
|
|
68
|
+
"PaginatorName",
|
|
69
|
+
"RegionName",
|
|
66
70
|
"ResolveConflictsType",
|
|
71
|
+
"ResourceServiceName",
|
|
72
|
+
"ServiceName",
|
|
67
73
|
"SupportTypeType",
|
|
68
74
|
"TaintEffectType",
|
|
69
75
|
"UpdateParamTypeType",
|
|
70
76
|
"UpdateStatusType",
|
|
71
77
|
"UpdateTypeType",
|
|
72
|
-
"EKSServiceName",
|
|
73
|
-
"ServiceName",
|
|
74
|
-
"ResourceServiceName",
|
|
75
|
-
"PaginatorName",
|
|
76
78
|
"WaiterName",
|
|
77
|
-
"RegionName",
|
|
78
79
|
)
|
|
79
80
|
|
|
81
|
+
|
|
80
82
|
AMITypesType = Literal[
|
|
81
83
|
"AL2023_ARM_64_STANDARD",
|
|
82
84
|
"AL2023_x86_64_NEURON",
|
|
@@ -211,6 +213,7 @@ NodegroupIssueCodeType = Literal[
|
|
|
211
213
|
"AutoScalingGroupOptInRequired",
|
|
212
214
|
"AutoScalingGroupRateLimitExceeded",
|
|
213
215
|
"ClusterUnreachable",
|
|
216
|
+
"Ec2InstanceTypeDoesNotExist",
|
|
214
217
|
"Ec2LaunchTemplateDeletionFailure",
|
|
215
218
|
"Ec2LaunchTemplateInvalidConfiguration",
|
|
216
219
|
"Ec2LaunchTemplateMaxLimitExceeded",
|
|
@@ -274,6 +277,7 @@ UpdateParamTypeType = Literal[
|
|
|
274
277
|
"TaintsToRemove",
|
|
275
278
|
"UpgradePolicy",
|
|
276
279
|
"Version",
|
|
280
|
+
"ZonalShiftConfig",
|
|
277
281
|
]
|
|
278
282
|
UpdateStatusType = Literal["Cancelled", "Failed", "InProgress", "Successful"]
|
|
279
283
|
UpdateTypeType = Literal[
|
|
@@ -288,6 +292,7 @@ UpdateTypeType = Literal[
|
|
|
288
292
|
"UpgradePolicyUpdate",
|
|
289
293
|
"VersionUpdate",
|
|
290
294
|
"VpcConfigUpdate",
|
|
295
|
+
"ZonalShiftConfigUpdate",
|
|
291
296
|
]
|
|
292
297
|
EKSServiceName = Literal["eks"]
|
|
293
298
|
ServiceName = Literal[
|
|
@@ -367,7 +372,6 @@ ServiceName = Literal[
|
|
|
367
372
|
"codeguru-security",
|
|
368
373
|
"codeguruprofiler",
|
|
369
374
|
"codepipeline",
|
|
370
|
-
"codestar",
|
|
371
375
|
"codestar-connections",
|
|
372
376
|
"codestar-notifications",
|
|
373
377
|
"cognito-identity",
|
|
@@ -405,6 +409,7 @@ ServiceName = Literal[
|
|
|
405
409
|
"docdb-elastic",
|
|
406
410
|
"drs",
|
|
407
411
|
"ds",
|
|
412
|
+
"ds-data",
|
|
408
413
|
"dynamodb",
|
|
409
414
|
"dynamodbstreams",
|
|
410
415
|
"ebs",
|
|
@@ -440,6 +445,9 @@ ServiceName = Literal[
|
|
|
440
445
|
"freetier",
|
|
441
446
|
"fsx",
|
|
442
447
|
"gamelift",
|
|
448
|
+
"geo-maps",
|
|
449
|
+
"geo-places",
|
|
450
|
+
"geo-routes",
|
|
443
451
|
"glacier",
|
|
444
452
|
"globalaccelerator",
|
|
445
453
|
"glue",
|
|
@@ -517,6 +525,7 @@ ServiceName = Literal[
|
|
|
517
525
|
"marketplace-catalog",
|
|
518
526
|
"marketplace-deployment",
|
|
519
527
|
"marketplace-entitlement",
|
|
528
|
+
"marketplace-reporting",
|
|
520
529
|
"marketplacecommerceanalytics",
|
|
521
530
|
"mediaconnect",
|
|
522
531
|
"mediaconvert",
|
|
@@ -545,7 +554,6 @@ ServiceName = Literal[
|
|
|
545
554
|
"network-firewall",
|
|
546
555
|
"networkmanager",
|
|
547
556
|
"networkmonitor",
|
|
548
|
-
"nimble",
|
|
549
557
|
"oam",
|
|
550
558
|
"omics",
|
|
551
559
|
"opensearch",
|
|
@@ -560,6 +568,7 @@ ServiceName = Literal[
|
|
|
560
568
|
"payment-cryptography-data",
|
|
561
569
|
"pca-connector-ad",
|
|
562
570
|
"pca-connector-scep",
|
|
571
|
+
"pcs",
|
|
563
572
|
"personalize",
|
|
564
573
|
"personalize-events",
|
|
565
574
|
"personalize-runtime",
|
|
@@ -634,6 +643,7 @@ ServiceName = Literal[
|
|
|
634
643
|
"snow-device-management",
|
|
635
644
|
"snowball",
|
|
636
645
|
"sns",
|
|
646
|
+
"socialmessaging",
|
|
637
647
|
"sqs",
|
|
638
648
|
"ssm",
|
|
639
649
|
"ssm-contacts",
|
|
@@ -670,7 +680,6 @@ ServiceName = Literal[
|
|
|
670
680
|
"wellarchitected",
|
|
671
681
|
"wisdom",
|
|
672
682
|
"workdocs",
|
|
673
|
-
"worklink",
|
|
674
683
|
"workmail",
|
|
675
684
|
"workmailmessageflow",
|
|
676
685
|
"workspaces",
|
|
@@ -727,6 +736,7 @@ RegionName = Literal[
|
|
|
727
736
|
"ap-southeast-2",
|
|
728
737
|
"ap-southeast-3",
|
|
729
738
|
"ap-southeast-4",
|
|
739
|
+
"ap-southeast-5",
|
|
730
740
|
"ca-central-1",
|
|
731
741
|
"ca-west-1",
|
|
732
742
|
"eu-central-1",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -36,6 +36,7 @@ __all__ = (
|
|
|
36
36
|
"ConfigStatusType",
|
|
37
37
|
"ConnectorConfigProviderType",
|
|
38
38
|
"DescribeAddonVersionsPaginatorName",
|
|
39
|
+
"EKSServiceName",
|
|
39
40
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
40
41
|
"EksAnywhereSubscriptionStatusType",
|
|
41
42
|
"EksAnywhereSubscriptionTermUnitType",
|
|
@@ -63,18 +64,17 @@ __all__ = (
|
|
|
63
64
|
"NodegroupDeletedWaiterName",
|
|
64
65
|
"NodegroupIssueCodeType",
|
|
65
66
|
"NodegroupStatusType",
|
|
67
|
+
"PaginatorName",
|
|
68
|
+
"RegionName",
|
|
66
69
|
"ResolveConflictsType",
|
|
70
|
+
"ResourceServiceName",
|
|
71
|
+
"ServiceName",
|
|
67
72
|
"SupportTypeType",
|
|
68
73
|
"TaintEffectType",
|
|
69
74
|
"UpdateParamTypeType",
|
|
70
75
|
"UpdateStatusType",
|
|
71
76
|
"UpdateTypeType",
|
|
72
|
-
"EKSServiceName",
|
|
73
|
-
"ServiceName",
|
|
74
|
-
"ResourceServiceName",
|
|
75
|
-
"PaginatorName",
|
|
76
77
|
"WaiterName",
|
|
77
|
-
"RegionName",
|
|
78
78
|
)
|
|
79
79
|
|
|
80
80
|
AMITypesType = Literal[
|
|
@@ -211,6 +211,7 @@ NodegroupIssueCodeType = Literal[
|
|
|
211
211
|
"AutoScalingGroupOptInRequired",
|
|
212
212
|
"AutoScalingGroupRateLimitExceeded",
|
|
213
213
|
"ClusterUnreachable",
|
|
214
|
+
"Ec2InstanceTypeDoesNotExist",
|
|
214
215
|
"Ec2LaunchTemplateDeletionFailure",
|
|
215
216
|
"Ec2LaunchTemplateInvalidConfiguration",
|
|
216
217
|
"Ec2LaunchTemplateMaxLimitExceeded",
|
|
@@ -274,6 +275,7 @@ UpdateParamTypeType = Literal[
|
|
|
274
275
|
"TaintsToRemove",
|
|
275
276
|
"UpgradePolicy",
|
|
276
277
|
"Version",
|
|
278
|
+
"ZonalShiftConfig",
|
|
277
279
|
]
|
|
278
280
|
UpdateStatusType = Literal["Cancelled", "Failed", "InProgress", "Successful"]
|
|
279
281
|
UpdateTypeType = Literal[
|
|
@@ -288,6 +290,7 @@ UpdateTypeType = Literal[
|
|
|
288
290
|
"UpgradePolicyUpdate",
|
|
289
291
|
"VersionUpdate",
|
|
290
292
|
"VpcConfigUpdate",
|
|
293
|
+
"ZonalShiftConfigUpdate",
|
|
291
294
|
]
|
|
292
295
|
EKSServiceName = Literal["eks"]
|
|
293
296
|
ServiceName = Literal[
|
|
@@ -367,7 +370,6 @@ ServiceName = Literal[
|
|
|
367
370
|
"codeguru-security",
|
|
368
371
|
"codeguruprofiler",
|
|
369
372
|
"codepipeline",
|
|
370
|
-
"codestar",
|
|
371
373
|
"codestar-connections",
|
|
372
374
|
"codestar-notifications",
|
|
373
375
|
"cognito-identity",
|
|
@@ -405,6 +407,7 @@ ServiceName = Literal[
|
|
|
405
407
|
"docdb-elastic",
|
|
406
408
|
"drs",
|
|
407
409
|
"ds",
|
|
410
|
+
"ds-data",
|
|
408
411
|
"dynamodb",
|
|
409
412
|
"dynamodbstreams",
|
|
410
413
|
"ebs",
|
|
@@ -440,6 +443,9 @@ ServiceName = Literal[
|
|
|
440
443
|
"freetier",
|
|
441
444
|
"fsx",
|
|
442
445
|
"gamelift",
|
|
446
|
+
"geo-maps",
|
|
447
|
+
"geo-places",
|
|
448
|
+
"geo-routes",
|
|
443
449
|
"glacier",
|
|
444
450
|
"globalaccelerator",
|
|
445
451
|
"glue",
|
|
@@ -517,6 +523,7 @@ ServiceName = Literal[
|
|
|
517
523
|
"marketplace-catalog",
|
|
518
524
|
"marketplace-deployment",
|
|
519
525
|
"marketplace-entitlement",
|
|
526
|
+
"marketplace-reporting",
|
|
520
527
|
"marketplacecommerceanalytics",
|
|
521
528
|
"mediaconnect",
|
|
522
529
|
"mediaconvert",
|
|
@@ -545,7 +552,6 @@ ServiceName = Literal[
|
|
|
545
552
|
"network-firewall",
|
|
546
553
|
"networkmanager",
|
|
547
554
|
"networkmonitor",
|
|
548
|
-
"nimble",
|
|
549
555
|
"oam",
|
|
550
556
|
"omics",
|
|
551
557
|
"opensearch",
|
|
@@ -560,6 +566,7 @@ ServiceName = Literal[
|
|
|
560
566
|
"payment-cryptography-data",
|
|
561
567
|
"pca-connector-ad",
|
|
562
568
|
"pca-connector-scep",
|
|
569
|
+
"pcs",
|
|
563
570
|
"personalize",
|
|
564
571
|
"personalize-events",
|
|
565
572
|
"personalize-runtime",
|
|
@@ -634,6 +641,7 @@ ServiceName = Literal[
|
|
|
634
641
|
"snow-device-management",
|
|
635
642
|
"snowball",
|
|
636
643
|
"sns",
|
|
644
|
+
"socialmessaging",
|
|
637
645
|
"sqs",
|
|
638
646
|
"ssm",
|
|
639
647
|
"ssm-contacts",
|
|
@@ -670,7 +678,6 @@ ServiceName = Literal[
|
|
|
670
678
|
"wellarchitected",
|
|
671
679
|
"wisdom",
|
|
672
680
|
"workdocs",
|
|
673
|
-
"worklink",
|
|
674
681
|
"workmail",
|
|
675
682
|
"workmailmessageflow",
|
|
676
683
|
"workspaces",
|
|
@@ -727,6 +734,7 @@ RegionName = Literal[
|
|
|
727
734
|
"ap-southeast-2",
|
|
728
735
|
"ap-southeast-3",
|
|
729
736
|
"ap-southeast-4",
|
|
737
|
+
"ap-southeast-5",
|
|
730
738
|
"ca-central-1",
|
|
731
739
|
"ca-west-1",
|
|
732
740
|
"eu-central-1",
|
mypy_boto3_eks/paginator.py
CHANGED
|
@@ -44,29 +44,46 @@ Usage::
|
|
|
44
44
|
```
|
|
45
45
|
"""
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
import sys
|
|
48
|
+
from typing import Generic, Iterator, TypeVar
|
|
48
49
|
|
|
49
50
|
from botocore.paginate import PageIterator, Paginator
|
|
50
51
|
|
|
51
|
-
from .literals import EksAnywhereSubscriptionStatusType
|
|
52
52
|
from .type_defs import (
|
|
53
|
+
DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef,
|
|
53
54
|
DescribeAddonVersionsResponseTypeDef,
|
|
54
|
-
|
|
55
|
+
ListAccessEntriesRequestListAccessEntriesPaginateTypeDef,
|
|
55
56
|
ListAccessEntriesResponseTypeDef,
|
|
57
|
+
ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef,
|
|
56
58
|
ListAccessPoliciesResponseTypeDef,
|
|
59
|
+
ListAddonsRequestListAddonsPaginateTypeDef,
|
|
57
60
|
ListAddonsResponseTypeDef,
|
|
61
|
+
ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef,
|
|
58
62
|
ListAssociatedAccessPoliciesResponseTypeDef,
|
|
63
|
+
ListClustersRequestListClustersPaginateTypeDef,
|
|
59
64
|
ListClustersResponseTypeDef,
|
|
65
|
+
ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef,
|
|
60
66
|
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
67
|
+
ListFargateProfilesRequestListFargateProfilesPaginateTypeDef,
|
|
61
68
|
ListFargateProfilesResponseTypeDef,
|
|
69
|
+
ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef,
|
|
62
70
|
ListIdentityProviderConfigsResponseTypeDef,
|
|
71
|
+
ListInsightsRequestListInsightsPaginateTypeDef,
|
|
63
72
|
ListInsightsResponseTypeDef,
|
|
73
|
+
ListNodegroupsRequestListNodegroupsPaginateTypeDef,
|
|
64
74
|
ListNodegroupsResponseTypeDef,
|
|
75
|
+
ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef,
|
|
65
76
|
ListPodIdentityAssociationsResponseTypeDef,
|
|
77
|
+
ListUpdatesRequestListUpdatesPaginateTypeDef,
|
|
66
78
|
ListUpdatesResponseTypeDef,
|
|
67
|
-
PaginatorConfigTypeDef,
|
|
68
79
|
)
|
|
69
80
|
|
|
81
|
+
if sys.version_info >= (3, 12):
|
|
82
|
+
from typing import Unpack
|
|
83
|
+
else:
|
|
84
|
+
from typing_extensions import Unpack
|
|
85
|
+
|
|
86
|
+
|
|
70
87
|
__all__ = (
|
|
71
88
|
"DescribeAddonVersionsPaginator",
|
|
72
89
|
"ListAccessEntriesPaginator",
|
|
@@ -83,10 +100,11 @@ __all__ = (
|
|
|
83
100
|
"ListUpdatesPaginator",
|
|
84
101
|
)
|
|
85
102
|
|
|
103
|
+
|
|
86
104
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
87
105
|
|
|
88
106
|
|
|
89
|
-
class _PageIterator(Generic[_ItemTypeDef]
|
|
107
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
|
90
108
|
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
91
109
|
"""
|
|
92
110
|
Proxy method to specify iterator item type.
|
|
@@ -100,14 +118,7 @@ class DescribeAddonVersionsPaginator(Paginator):
|
|
|
100
118
|
"""
|
|
101
119
|
|
|
102
120
|
def paginate(
|
|
103
|
-
self,
|
|
104
|
-
*,
|
|
105
|
-
kubernetesVersion: str = ...,
|
|
106
|
-
addonName: str = ...,
|
|
107
|
-
types: Sequence[str] = ...,
|
|
108
|
-
publishers: Sequence[str] = ...,
|
|
109
|
-
owners: Sequence[str] = ...,
|
|
110
|
-
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
121
|
+
self, **kwargs: Unpack[DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef]
|
|
111
122
|
) -> _PageIterator[DescribeAddonVersionsResponseTypeDef]:
|
|
112
123
|
"""
|
|
113
124
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions.paginate)
|
|
@@ -122,11 +133,7 @@ class ListAccessEntriesPaginator(Paginator):
|
|
|
122
133
|
"""
|
|
123
134
|
|
|
124
135
|
def paginate(
|
|
125
|
-
self,
|
|
126
|
-
*,
|
|
127
|
-
clusterName: str,
|
|
128
|
-
associatedPolicyArn: str = ...,
|
|
129
|
-
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
136
|
+
self, **kwargs: Unpack[ListAccessEntriesRequestListAccessEntriesPaginateTypeDef]
|
|
130
137
|
) -> _PageIterator[ListAccessEntriesResponseTypeDef]:
|
|
131
138
|
"""
|
|
132
139
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries.paginate)
|
|
@@ -141,7 +148,7 @@ class ListAccessPoliciesPaginator(Paginator):
|
|
|
141
148
|
"""
|
|
142
149
|
|
|
143
150
|
def paginate(
|
|
144
|
-
self,
|
|
151
|
+
self, **kwargs: Unpack[ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef]
|
|
145
152
|
) -> _PageIterator[ListAccessPoliciesResponseTypeDef]:
|
|
146
153
|
"""
|
|
147
154
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessPolicies.paginate)
|
|
@@ -156,7 +163,7 @@ class ListAddonsPaginator(Paginator):
|
|
|
156
163
|
"""
|
|
157
164
|
|
|
158
165
|
def paginate(
|
|
159
|
-
self,
|
|
166
|
+
self, **kwargs: Unpack[ListAddonsRequestListAddonsPaginateTypeDef]
|
|
160
167
|
) -> _PageIterator[ListAddonsResponseTypeDef]:
|
|
161
168
|
"""
|
|
162
169
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAddons.paginate)
|
|
@@ -171,7 +178,10 @@ class ListAssociatedAccessPoliciesPaginator(Paginator):
|
|
|
171
178
|
"""
|
|
172
179
|
|
|
173
180
|
def paginate(
|
|
174
|
-
self,
|
|
181
|
+
self,
|
|
182
|
+
**kwargs: Unpack[
|
|
183
|
+
ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef
|
|
184
|
+
],
|
|
175
185
|
) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
|
|
176
186
|
"""
|
|
177
187
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
|
|
@@ -186,7 +196,7 @@ class ListClustersPaginator(Paginator):
|
|
|
186
196
|
"""
|
|
187
197
|
|
|
188
198
|
def paginate(
|
|
189
|
-
self,
|
|
199
|
+
self, **kwargs: Unpack[ListClustersRequestListClustersPaginateTypeDef]
|
|
190
200
|
) -> _PageIterator[ListClustersResponseTypeDef]:
|
|
191
201
|
"""
|
|
192
202
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListClusters.paginate)
|
|
@@ -202,9 +212,9 @@ class ListEksAnywhereSubscriptionsPaginator(Paginator):
|
|
|
202
212
|
|
|
203
213
|
def paginate(
|
|
204
214
|
self,
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
215
|
+
**kwargs: Unpack[
|
|
216
|
+
ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef
|
|
217
|
+
],
|
|
208
218
|
) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
|
|
209
219
|
"""
|
|
210
220
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
|
|
@@ -219,7 +229,7 @@ class ListFargateProfilesPaginator(Paginator):
|
|
|
219
229
|
"""
|
|
220
230
|
|
|
221
231
|
def paginate(
|
|
222
|
-
self,
|
|
232
|
+
self, **kwargs: Unpack[ListFargateProfilesRequestListFargateProfilesPaginateTypeDef]
|
|
223
233
|
) -> _PageIterator[ListFargateProfilesResponseTypeDef]:
|
|
224
234
|
"""
|
|
225
235
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListFargateProfiles.paginate)
|
|
@@ -234,7 +244,10 @@ class ListIdentityProviderConfigsPaginator(Paginator):
|
|
|
234
244
|
"""
|
|
235
245
|
|
|
236
246
|
def paginate(
|
|
237
|
-
self,
|
|
247
|
+
self,
|
|
248
|
+
**kwargs: Unpack[
|
|
249
|
+
ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef
|
|
250
|
+
],
|
|
238
251
|
) -> _PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
|
|
239
252
|
"""
|
|
240
253
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
|
|
@@ -249,11 +262,7 @@ class ListInsightsPaginator(Paginator):
|
|
|
249
262
|
"""
|
|
250
263
|
|
|
251
264
|
def paginate(
|
|
252
|
-
self,
|
|
253
|
-
*,
|
|
254
|
-
clusterName: str,
|
|
255
|
-
filter: InsightsFilterTypeDef = ...,
|
|
256
|
-
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
265
|
+
self, **kwargs: Unpack[ListInsightsRequestListInsightsPaginateTypeDef]
|
|
257
266
|
) -> _PageIterator[ListInsightsResponseTypeDef]:
|
|
258
267
|
"""
|
|
259
268
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights.paginate)
|
|
@@ -268,7 +277,7 @@ class ListNodegroupsPaginator(Paginator):
|
|
|
268
277
|
"""
|
|
269
278
|
|
|
270
279
|
def paginate(
|
|
271
|
-
self,
|
|
280
|
+
self, **kwargs: Unpack[ListNodegroupsRequestListNodegroupsPaginateTypeDef]
|
|
272
281
|
) -> _PageIterator[ListNodegroupsResponseTypeDef]:
|
|
273
282
|
"""
|
|
274
283
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups.paginate)
|
|
@@ -284,11 +293,9 @@ class ListPodIdentityAssociationsPaginator(Paginator):
|
|
|
284
293
|
|
|
285
294
|
def paginate(
|
|
286
295
|
self,
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
serviceAccount: str = ...,
|
|
291
|
-
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
296
|
+
**kwargs: Unpack[
|
|
297
|
+
ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef
|
|
298
|
+
],
|
|
292
299
|
) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
|
|
293
300
|
"""
|
|
294
301
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
|
|
@@ -303,12 +310,7 @@ class ListUpdatesPaginator(Paginator):
|
|
|
303
310
|
"""
|
|
304
311
|
|
|
305
312
|
def paginate(
|
|
306
|
-
self,
|
|
307
|
-
*,
|
|
308
|
-
name: str,
|
|
309
|
-
nodegroupName: str = ...,
|
|
310
|
-
addonName: str = ...,
|
|
311
|
-
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
313
|
+
self, **kwargs: Unpack[ListUpdatesRequestListUpdatesPaginateTypeDef]
|
|
312
314
|
) -> _PageIterator[ListUpdatesResponseTypeDef]:
|
|
313
315
|
"""
|
|
314
316
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates.paginate)
|