mypy-boto3-eks 1.35.45__py3-none-any.whl → 1.35.72__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 +2 -0
- mypy_boto3_eks/__init__.pyi +2 -0
- mypy_boto3_eks/__main__.py +7 -5
- mypy_boto3_eks/client.py +152 -119
- mypy_boto3_eks/client.pyi +152 -119
- mypy_boto3_eks/literals.py +25 -6
- mypy_boto3_eks/literals.pyi +25 -6
- mypy_boto3_eks/paginator.py +29 -27
- mypy_boto3_eks/paginator.pyi +29 -27
- mypy_boto3_eks/type_defs.py +1497 -1752
- mypy_boto3_eks/type_defs.pyi +1277 -1755
- mypy_boto3_eks/version.py +3 -1
- mypy_boto3_eks/waiter.py +18 -16
- mypy_boto3_eks/waiter.pyi +18 -16
- {mypy_boto3_eks-1.35.45.dist-info → mypy_boto3_eks-1.35.72.dist-info}/METADATA +59 -18
- mypy_boto3_eks-1.35.72.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.45.dist-info → mypy_boto3_eks-1.35.72.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.35.45.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.45.dist-info → mypy_boto3_eks-1.35.72.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.45.dist-info → mypy_boto3_eks-1.35.72.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/literals.py
CHANGED
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: AMITypesType = "AL2023_ARM_64_STANDARD"
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2024 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -37,6 +39,7 @@ __all__ = (
|
|
|
37
39
|
"ConfigStatusType",
|
|
38
40
|
"ConnectorConfigProviderType",
|
|
39
41
|
"DescribeAddonVersionsPaginatorName",
|
|
42
|
+
"EKSServiceName",
|
|
40
43
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
41
44
|
"EksAnywhereSubscriptionStatusType",
|
|
42
45
|
"EksAnywhereSubscriptionTermUnitType",
|
|
@@ -64,18 +67,17 @@ __all__ = (
|
|
|
64
67
|
"NodegroupDeletedWaiterName",
|
|
65
68
|
"NodegroupIssueCodeType",
|
|
66
69
|
"NodegroupStatusType",
|
|
70
|
+
"PaginatorName",
|
|
71
|
+
"RegionName",
|
|
67
72
|
"ResolveConflictsType",
|
|
73
|
+
"ResourceServiceName",
|
|
74
|
+
"ServiceName",
|
|
68
75
|
"SupportTypeType",
|
|
69
76
|
"TaintEffectType",
|
|
70
77
|
"UpdateParamTypeType",
|
|
71
78
|
"UpdateStatusType",
|
|
72
79
|
"UpdateTypeType",
|
|
73
|
-
"EKSServiceName",
|
|
74
|
-
"ServiceName",
|
|
75
|
-
"ResourceServiceName",
|
|
76
|
-
"PaginatorName",
|
|
77
80
|
"WaiterName",
|
|
78
|
-
"RegionName",
|
|
79
81
|
)
|
|
80
82
|
|
|
81
83
|
|
|
@@ -213,6 +215,7 @@ NodegroupIssueCodeType = Literal[
|
|
|
213
215
|
"AutoScalingGroupOptInRequired",
|
|
214
216
|
"AutoScalingGroupRateLimitExceeded",
|
|
215
217
|
"ClusterUnreachable",
|
|
218
|
+
"Ec2InstanceTypeDoesNotExist",
|
|
216
219
|
"Ec2LaunchTemplateDeletionFailure",
|
|
217
220
|
"Ec2LaunchTemplateInvalidConfiguration",
|
|
218
221
|
"Ec2LaunchTemplateMaxLimitExceeded",
|
|
@@ -250,12 +253,14 @@ UpdateParamTypeType = Literal[
|
|
|
250
253
|
"AddonVersion",
|
|
251
254
|
"AuthenticationMode",
|
|
252
255
|
"ClusterLogging",
|
|
256
|
+
"ComputeConfig",
|
|
253
257
|
"ConfigurationValues",
|
|
254
258
|
"DesiredSize",
|
|
255
259
|
"EncryptionConfig",
|
|
256
260
|
"EndpointPrivateAccess",
|
|
257
261
|
"EndpointPublicAccess",
|
|
258
262
|
"IdentityProviderConfig",
|
|
263
|
+
"KubernetesNetworkConfig",
|
|
259
264
|
"LabelsToAdd",
|
|
260
265
|
"LabelsToRemove",
|
|
261
266
|
"LaunchTemplateName",
|
|
@@ -271,6 +276,7 @@ UpdateParamTypeType = Literal[
|
|
|
271
276
|
"ResolveConflicts",
|
|
272
277
|
"SecurityGroups",
|
|
273
278
|
"ServiceAccountRoleArn",
|
|
279
|
+
"StorageConfig",
|
|
274
280
|
"Subnets",
|
|
275
281
|
"TaintsToAdd",
|
|
276
282
|
"TaintsToRemove",
|
|
@@ -284,6 +290,7 @@ UpdateTypeType = Literal[
|
|
|
284
290
|
"AddonUpdate",
|
|
285
291
|
"AssociateEncryptionConfig",
|
|
286
292
|
"AssociateIdentityProviderConfig",
|
|
293
|
+
"AutoModeUpdate",
|
|
287
294
|
"ConfigUpdate",
|
|
288
295
|
"DisassociateIdentityProviderConfig",
|
|
289
296
|
"EndpointAccessUpdate",
|
|
@@ -331,10 +338,12 @@ ServiceName = Literal[
|
|
|
331
338
|
"backup-gateway",
|
|
332
339
|
"batch",
|
|
333
340
|
"bcm-data-exports",
|
|
341
|
+
"bcm-pricing-calculator",
|
|
334
342
|
"bedrock",
|
|
335
343
|
"bedrock-agent",
|
|
336
344
|
"bedrock-agent-runtime",
|
|
337
345
|
"bedrock-runtime",
|
|
346
|
+
"billing",
|
|
338
347
|
"billingconductor",
|
|
339
348
|
"braket",
|
|
340
349
|
"budgets",
|
|
@@ -383,6 +392,7 @@ ServiceName = Literal[
|
|
|
383
392
|
"connect",
|
|
384
393
|
"connect-contact-lens",
|
|
385
394
|
"connectcampaigns",
|
|
395
|
+
"connectcampaignsv2",
|
|
386
396
|
"connectcases",
|
|
387
397
|
"connectparticipant",
|
|
388
398
|
"controlcatalog",
|
|
@@ -444,6 +454,9 @@ ServiceName = Literal[
|
|
|
444
454
|
"freetier",
|
|
445
455
|
"fsx",
|
|
446
456
|
"gamelift",
|
|
457
|
+
"geo-maps",
|
|
458
|
+
"geo-places",
|
|
459
|
+
"geo-routes",
|
|
447
460
|
"glacier",
|
|
448
461
|
"globalaccelerator",
|
|
449
462
|
"glue",
|
|
@@ -462,6 +475,7 @@ ServiceName = Literal[
|
|
|
462
475
|
"inspector-scan",
|
|
463
476
|
"inspector2",
|
|
464
477
|
"internetmonitor",
|
|
478
|
+
"invoicing",
|
|
465
479
|
"iot",
|
|
466
480
|
"iot-data",
|
|
467
481
|
"iot-jobs-data",
|
|
@@ -548,10 +562,13 @@ ServiceName = Literal[
|
|
|
548
562
|
"neptune-graph",
|
|
549
563
|
"neptunedata",
|
|
550
564
|
"network-firewall",
|
|
565
|
+
"networkflowmonitor",
|
|
551
566
|
"networkmanager",
|
|
552
567
|
"networkmonitor",
|
|
553
|
-
"
|
|
568
|
+
"notifications",
|
|
569
|
+
"notificationscontacts",
|
|
554
570
|
"oam",
|
|
571
|
+
"observabilityadmin",
|
|
555
572
|
"omics",
|
|
556
573
|
"opensearch",
|
|
557
574
|
"opensearchserverless",
|
|
@@ -561,6 +578,7 @@ ServiceName = Literal[
|
|
|
561
578
|
"osis",
|
|
562
579
|
"outposts",
|
|
563
580
|
"panorama",
|
|
581
|
+
"partnercentral-selling",
|
|
564
582
|
"payment-cryptography",
|
|
565
583
|
"payment-cryptography-data",
|
|
566
584
|
"pca-connector-ad",
|
|
@@ -623,6 +641,7 @@ ServiceName = Literal[
|
|
|
623
641
|
"schemas",
|
|
624
642
|
"sdb",
|
|
625
643
|
"secretsmanager",
|
|
644
|
+
"security-ir",
|
|
626
645
|
"securityhub",
|
|
627
646
|
"securitylake",
|
|
628
647
|
"serverlessrepo",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: AMITypesType = "AL2023_ARM_64_STANDARD"
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2024 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -36,6 +38,7 @@ __all__ = (
|
|
|
36
38
|
"ConfigStatusType",
|
|
37
39
|
"ConnectorConfigProviderType",
|
|
38
40
|
"DescribeAddonVersionsPaginatorName",
|
|
41
|
+
"EKSServiceName",
|
|
39
42
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
40
43
|
"EksAnywhereSubscriptionStatusType",
|
|
41
44
|
"EksAnywhereSubscriptionTermUnitType",
|
|
@@ -63,18 +66,17 @@ __all__ = (
|
|
|
63
66
|
"NodegroupDeletedWaiterName",
|
|
64
67
|
"NodegroupIssueCodeType",
|
|
65
68
|
"NodegroupStatusType",
|
|
69
|
+
"PaginatorName",
|
|
70
|
+
"RegionName",
|
|
66
71
|
"ResolveConflictsType",
|
|
72
|
+
"ResourceServiceName",
|
|
73
|
+
"ServiceName",
|
|
67
74
|
"SupportTypeType",
|
|
68
75
|
"TaintEffectType",
|
|
69
76
|
"UpdateParamTypeType",
|
|
70
77
|
"UpdateStatusType",
|
|
71
78
|
"UpdateTypeType",
|
|
72
|
-
"EKSServiceName",
|
|
73
|
-
"ServiceName",
|
|
74
|
-
"ResourceServiceName",
|
|
75
|
-
"PaginatorName",
|
|
76
79
|
"WaiterName",
|
|
77
|
-
"RegionName",
|
|
78
80
|
)
|
|
79
81
|
|
|
80
82
|
AMITypesType = Literal[
|
|
@@ -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",
|
|
@@ -248,12 +251,14 @@ UpdateParamTypeType = Literal[
|
|
|
248
251
|
"AddonVersion",
|
|
249
252
|
"AuthenticationMode",
|
|
250
253
|
"ClusterLogging",
|
|
254
|
+
"ComputeConfig",
|
|
251
255
|
"ConfigurationValues",
|
|
252
256
|
"DesiredSize",
|
|
253
257
|
"EncryptionConfig",
|
|
254
258
|
"EndpointPrivateAccess",
|
|
255
259
|
"EndpointPublicAccess",
|
|
256
260
|
"IdentityProviderConfig",
|
|
261
|
+
"KubernetesNetworkConfig",
|
|
257
262
|
"LabelsToAdd",
|
|
258
263
|
"LabelsToRemove",
|
|
259
264
|
"LaunchTemplateName",
|
|
@@ -269,6 +274,7 @@ UpdateParamTypeType = Literal[
|
|
|
269
274
|
"ResolveConflicts",
|
|
270
275
|
"SecurityGroups",
|
|
271
276
|
"ServiceAccountRoleArn",
|
|
277
|
+
"StorageConfig",
|
|
272
278
|
"Subnets",
|
|
273
279
|
"TaintsToAdd",
|
|
274
280
|
"TaintsToRemove",
|
|
@@ -282,6 +288,7 @@ UpdateTypeType = Literal[
|
|
|
282
288
|
"AddonUpdate",
|
|
283
289
|
"AssociateEncryptionConfig",
|
|
284
290
|
"AssociateIdentityProviderConfig",
|
|
291
|
+
"AutoModeUpdate",
|
|
285
292
|
"ConfigUpdate",
|
|
286
293
|
"DisassociateIdentityProviderConfig",
|
|
287
294
|
"EndpointAccessUpdate",
|
|
@@ -329,10 +336,12 @@ ServiceName = Literal[
|
|
|
329
336
|
"backup-gateway",
|
|
330
337
|
"batch",
|
|
331
338
|
"bcm-data-exports",
|
|
339
|
+
"bcm-pricing-calculator",
|
|
332
340
|
"bedrock",
|
|
333
341
|
"bedrock-agent",
|
|
334
342
|
"bedrock-agent-runtime",
|
|
335
343
|
"bedrock-runtime",
|
|
344
|
+
"billing",
|
|
336
345
|
"billingconductor",
|
|
337
346
|
"braket",
|
|
338
347
|
"budgets",
|
|
@@ -381,6 +390,7 @@ ServiceName = Literal[
|
|
|
381
390
|
"connect",
|
|
382
391
|
"connect-contact-lens",
|
|
383
392
|
"connectcampaigns",
|
|
393
|
+
"connectcampaignsv2",
|
|
384
394
|
"connectcases",
|
|
385
395
|
"connectparticipant",
|
|
386
396
|
"controlcatalog",
|
|
@@ -442,6 +452,9 @@ ServiceName = Literal[
|
|
|
442
452
|
"freetier",
|
|
443
453
|
"fsx",
|
|
444
454
|
"gamelift",
|
|
455
|
+
"geo-maps",
|
|
456
|
+
"geo-places",
|
|
457
|
+
"geo-routes",
|
|
445
458
|
"glacier",
|
|
446
459
|
"globalaccelerator",
|
|
447
460
|
"glue",
|
|
@@ -460,6 +473,7 @@ ServiceName = Literal[
|
|
|
460
473
|
"inspector-scan",
|
|
461
474
|
"inspector2",
|
|
462
475
|
"internetmonitor",
|
|
476
|
+
"invoicing",
|
|
463
477
|
"iot",
|
|
464
478
|
"iot-data",
|
|
465
479
|
"iot-jobs-data",
|
|
@@ -546,10 +560,13 @@ ServiceName = Literal[
|
|
|
546
560
|
"neptune-graph",
|
|
547
561
|
"neptunedata",
|
|
548
562
|
"network-firewall",
|
|
563
|
+
"networkflowmonitor",
|
|
549
564
|
"networkmanager",
|
|
550
565
|
"networkmonitor",
|
|
551
|
-
"
|
|
566
|
+
"notifications",
|
|
567
|
+
"notificationscontacts",
|
|
552
568
|
"oam",
|
|
569
|
+
"observabilityadmin",
|
|
553
570
|
"omics",
|
|
554
571
|
"opensearch",
|
|
555
572
|
"opensearchserverless",
|
|
@@ -559,6 +576,7 @@ ServiceName = Literal[
|
|
|
559
576
|
"osis",
|
|
560
577
|
"outposts",
|
|
561
578
|
"panorama",
|
|
579
|
+
"partnercentral-selling",
|
|
562
580
|
"payment-cryptography",
|
|
563
581
|
"payment-cryptography-data",
|
|
564
582
|
"pca-connector-ad",
|
|
@@ -621,6 +639,7 @@ ServiceName = Literal[
|
|
|
621
639
|
"schemas",
|
|
622
640
|
"sdb",
|
|
623
641
|
"secretsmanager",
|
|
642
|
+
"security-ir",
|
|
624
643
|
"securityhub",
|
|
625
644
|
"securitylake",
|
|
626
645
|
"serverlessrepo",
|
mypy_boto3_eks/paginator.py
CHANGED
|
@@ -42,6 +42,8 @@ Usage::
|
|
|
42
42
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
|
|
43
43
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
44
44
|
```
|
|
45
|
+
|
|
46
|
+
Copyright 2024 Vlad Emelianov
|
|
45
47
|
"""
|
|
46
48
|
|
|
47
49
|
import sys
|
|
@@ -104,7 +106,7 @@ __all__ = (
|
|
|
104
106
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
105
107
|
|
|
106
108
|
|
|
107
|
-
class _PageIterator(Generic[_ItemTypeDef]
|
|
109
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
|
108
110
|
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
109
111
|
"""
|
|
110
112
|
Proxy method to specify iterator item type.
|
|
@@ -113,7 +115,7 @@ class _PageIterator(Generic[_ItemTypeDef], PageIterator):
|
|
|
113
115
|
|
|
114
116
|
class DescribeAddonVersionsPaginator(Paginator):
|
|
115
117
|
"""
|
|
116
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions)
|
|
118
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions)
|
|
117
119
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
|
|
118
120
|
"""
|
|
119
121
|
|
|
@@ -121,14 +123,14 @@ class DescribeAddonVersionsPaginator(Paginator):
|
|
|
121
123
|
self, **kwargs: Unpack[DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef]
|
|
122
124
|
) -> _PageIterator[DescribeAddonVersionsResponseTypeDef]:
|
|
123
125
|
"""
|
|
124
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions.paginate)
|
|
126
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions.paginate)
|
|
125
127
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
|
|
126
128
|
"""
|
|
127
129
|
|
|
128
130
|
|
|
129
131
|
class ListAccessEntriesPaginator(Paginator):
|
|
130
132
|
"""
|
|
131
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries)
|
|
133
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries)
|
|
132
134
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
|
|
133
135
|
"""
|
|
134
136
|
|
|
@@ -136,14 +138,14 @@ class ListAccessEntriesPaginator(Paginator):
|
|
|
136
138
|
self, **kwargs: Unpack[ListAccessEntriesRequestListAccessEntriesPaginateTypeDef]
|
|
137
139
|
) -> _PageIterator[ListAccessEntriesResponseTypeDef]:
|
|
138
140
|
"""
|
|
139
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries.paginate)
|
|
141
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries.paginate)
|
|
140
142
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
|
|
141
143
|
"""
|
|
142
144
|
|
|
143
145
|
|
|
144
146
|
class ListAccessPoliciesPaginator(Paginator):
|
|
145
147
|
"""
|
|
146
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessPolicies)
|
|
148
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies)
|
|
147
149
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
|
|
148
150
|
"""
|
|
149
151
|
|
|
@@ -151,14 +153,14 @@ class ListAccessPoliciesPaginator(Paginator):
|
|
|
151
153
|
self, **kwargs: Unpack[ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef]
|
|
152
154
|
) -> _PageIterator[ListAccessPoliciesResponseTypeDef]:
|
|
153
155
|
"""
|
|
154
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessPolicies.paginate)
|
|
156
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies.paginate)
|
|
155
157
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
|
|
156
158
|
"""
|
|
157
159
|
|
|
158
160
|
|
|
159
161
|
class ListAddonsPaginator(Paginator):
|
|
160
162
|
"""
|
|
161
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAddons)
|
|
163
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons)
|
|
162
164
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
|
|
163
165
|
"""
|
|
164
166
|
|
|
@@ -166,14 +168,14 @@ class ListAddonsPaginator(Paginator):
|
|
|
166
168
|
self, **kwargs: Unpack[ListAddonsRequestListAddonsPaginateTypeDef]
|
|
167
169
|
) -> _PageIterator[ListAddonsResponseTypeDef]:
|
|
168
170
|
"""
|
|
169
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAddons.paginate)
|
|
171
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons.paginate)
|
|
170
172
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
|
|
171
173
|
"""
|
|
172
174
|
|
|
173
175
|
|
|
174
176
|
class ListAssociatedAccessPoliciesPaginator(Paginator):
|
|
175
177
|
"""
|
|
176
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies)
|
|
178
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies)
|
|
177
179
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
|
|
178
180
|
"""
|
|
179
181
|
|
|
@@ -184,14 +186,14 @@ class ListAssociatedAccessPoliciesPaginator(Paginator):
|
|
|
184
186
|
],
|
|
185
187
|
) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
|
|
186
188
|
"""
|
|
187
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
|
|
189
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
|
|
188
190
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
|
|
189
191
|
"""
|
|
190
192
|
|
|
191
193
|
|
|
192
194
|
class ListClustersPaginator(Paginator):
|
|
193
195
|
"""
|
|
194
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListClusters)
|
|
196
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters)
|
|
195
197
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
|
|
196
198
|
"""
|
|
197
199
|
|
|
@@ -199,14 +201,14 @@ class ListClustersPaginator(Paginator):
|
|
|
199
201
|
self, **kwargs: Unpack[ListClustersRequestListClustersPaginateTypeDef]
|
|
200
202
|
) -> _PageIterator[ListClustersResponseTypeDef]:
|
|
201
203
|
"""
|
|
202
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListClusters.paginate)
|
|
204
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters.paginate)
|
|
203
205
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
|
|
204
206
|
"""
|
|
205
207
|
|
|
206
208
|
|
|
207
209
|
class ListEksAnywhereSubscriptionsPaginator(Paginator):
|
|
208
210
|
"""
|
|
209
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions)
|
|
211
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions)
|
|
210
212
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
|
|
211
213
|
"""
|
|
212
214
|
|
|
@@ -217,14 +219,14 @@ class ListEksAnywhereSubscriptionsPaginator(Paginator):
|
|
|
217
219
|
],
|
|
218
220
|
) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
|
|
219
221
|
"""
|
|
220
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
|
|
222
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
|
|
221
223
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
|
|
222
224
|
"""
|
|
223
225
|
|
|
224
226
|
|
|
225
227
|
class ListFargateProfilesPaginator(Paginator):
|
|
226
228
|
"""
|
|
227
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListFargateProfiles)
|
|
229
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles)
|
|
228
230
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
|
|
229
231
|
"""
|
|
230
232
|
|
|
@@ -232,14 +234,14 @@ class ListFargateProfilesPaginator(Paginator):
|
|
|
232
234
|
self, **kwargs: Unpack[ListFargateProfilesRequestListFargateProfilesPaginateTypeDef]
|
|
233
235
|
) -> _PageIterator[ListFargateProfilesResponseTypeDef]:
|
|
234
236
|
"""
|
|
235
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListFargateProfiles.paginate)
|
|
237
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles.paginate)
|
|
236
238
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
|
|
237
239
|
"""
|
|
238
240
|
|
|
239
241
|
|
|
240
242
|
class ListIdentityProviderConfigsPaginator(Paginator):
|
|
241
243
|
"""
|
|
242
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListIdentityProviderConfigs)
|
|
244
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs)
|
|
243
245
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
|
|
244
246
|
"""
|
|
245
247
|
|
|
@@ -250,14 +252,14 @@ class ListIdentityProviderConfigsPaginator(Paginator):
|
|
|
250
252
|
],
|
|
251
253
|
) -> _PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
|
|
252
254
|
"""
|
|
253
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
|
|
255
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
|
|
254
256
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
|
|
255
257
|
"""
|
|
256
258
|
|
|
257
259
|
|
|
258
260
|
class ListInsightsPaginator(Paginator):
|
|
259
261
|
"""
|
|
260
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights)
|
|
262
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights)
|
|
261
263
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
|
|
262
264
|
"""
|
|
263
265
|
|
|
@@ -265,14 +267,14 @@ class ListInsightsPaginator(Paginator):
|
|
|
265
267
|
self, **kwargs: Unpack[ListInsightsRequestListInsightsPaginateTypeDef]
|
|
266
268
|
) -> _PageIterator[ListInsightsResponseTypeDef]:
|
|
267
269
|
"""
|
|
268
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights.paginate)
|
|
270
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights.paginate)
|
|
269
271
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
|
|
270
272
|
"""
|
|
271
273
|
|
|
272
274
|
|
|
273
275
|
class ListNodegroupsPaginator(Paginator):
|
|
274
276
|
"""
|
|
275
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups)
|
|
277
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups)
|
|
276
278
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
|
|
277
279
|
"""
|
|
278
280
|
|
|
@@ -280,14 +282,14 @@ class ListNodegroupsPaginator(Paginator):
|
|
|
280
282
|
self, **kwargs: Unpack[ListNodegroupsRequestListNodegroupsPaginateTypeDef]
|
|
281
283
|
) -> _PageIterator[ListNodegroupsResponseTypeDef]:
|
|
282
284
|
"""
|
|
283
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups.paginate)
|
|
285
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups.paginate)
|
|
284
286
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
|
|
285
287
|
"""
|
|
286
288
|
|
|
287
289
|
|
|
288
290
|
class ListPodIdentityAssociationsPaginator(Paginator):
|
|
289
291
|
"""
|
|
290
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations)
|
|
292
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations)
|
|
291
293
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
|
|
292
294
|
"""
|
|
293
295
|
|
|
@@ -298,14 +300,14 @@ class ListPodIdentityAssociationsPaginator(Paginator):
|
|
|
298
300
|
],
|
|
299
301
|
) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
|
|
300
302
|
"""
|
|
301
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
|
|
303
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
|
|
302
304
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
|
|
303
305
|
"""
|
|
304
306
|
|
|
305
307
|
|
|
306
308
|
class ListUpdatesPaginator(Paginator):
|
|
307
309
|
"""
|
|
308
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates)
|
|
310
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates)
|
|
309
311
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
|
|
310
312
|
"""
|
|
311
313
|
|
|
@@ -313,6 +315,6 @@ class ListUpdatesPaginator(Paginator):
|
|
|
313
315
|
self, **kwargs: Unpack[ListUpdatesRequestListUpdatesPaginateTypeDef]
|
|
314
316
|
) -> _PageIterator[ListUpdatesResponseTypeDef]:
|
|
315
317
|
"""
|
|
316
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates.paginate)
|
|
318
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates.paginate)
|
|
317
319
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
|
|
318
320
|
"""
|