mypy-boto3-eks 1.34.3__py3-none-any.whl → 1.34.53__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 +4 -0
- mypy_boto3_eks/__init__.pyi +4 -0
- mypy_boto3_eks/__main__.py +8 -7
- mypy_boto3_eks/client.py +57 -23
- mypy_boto3_eks/client.pyi +57 -23
- mypy_boto3_eks/literals.py +15 -1
- mypy_boto3_eks/literals.pyi +15 -1
- mypy_boto3_eks/paginator.py +29 -5
- mypy_boto3_eks/paginator.pyi +28 -5
- mypy_boto3_eks/type_defs.py +131 -1
- mypy_boto3_eks/type_defs.pyi +131 -1
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.34.3.dist-info → mypy_boto3_eks-1.34.53.dist-info}/LICENSE +1 -1
- {mypy_boto3_eks-1.34.3.dist-info → mypy_boto3_eks-1.34.53.dist-info}/METADATA +8 -7
- mypy_boto3_eks-1.34.53.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.34.3.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.34.3.dist-info → mypy_boto3_eks-1.34.53.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.34.3.dist-info → mypy_boto3_eks-1.34.53.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/literals.py
CHANGED
|
@@ -8,7 +8,7 @@ Usage::
|
|
|
8
8
|
```python
|
|
9
9
|
from mypy_boto3_eks.literals import AMITypesType
|
|
10
10
|
|
|
11
|
-
data: AMITypesType = "
|
|
11
|
+
data: AMITypesType = "AL2023_ARM_64_STANDARD"
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
|
|
@@ -28,6 +28,7 @@ __all__ = (
|
|
|
28
28
|
"AddonStatusType",
|
|
29
29
|
"AuthenticationModeType",
|
|
30
30
|
"CapacityTypesType",
|
|
31
|
+
"CategoryType",
|
|
31
32
|
"ClusterActiveWaiterName",
|
|
32
33
|
"ClusterDeletedWaiterName",
|
|
33
34
|
"ClusterIssueCodeType",
|
|
@@ -41,6 +42,7 @@ __all__ = (
|
|
|
41
42
|
"FargateProfileActiveWaiterName",
|
|
42
43
|
"FargateProfileDeletedWaiterName",
|
|
43
44
|
"FargateProfileStatusType",
|
|
45
|
+
"InsightStatusValueType",
|
|
44
46
|
"IpFamilyType",
|
|
45
47
|
"ListAccessEntriesPaginatorName",
|
|
46
48
|
"ListAccessPoliciesPaginatorName",
|
|
@@ -50,6 +52,7 @@ __all__ = (
|
|
|
50
52
|
"ListEksAnywhereSubscriptionsPaginatorName",
|
|
51
53
|
"ListFargateProfilesPaginatorName",
|
|
52
54
|
"ListIdentityProviderConfigsPaginatorName",
|
|
55
|
+
"ListInsightsPaginatorName",
|
|
53
56
|
"ListNodegroupsPaginatorName",
|
|
54
57
|
"ListPodIdentityAssociationsPaginatorName",
|
|
55
58
|
"ListUpdatesPaginatorName",
|
|
@@ -73,6 +76,8 @@ __all__ = (
|
|
|
73
76
|
)
|
|
74
77
|
|
|
75
78
|
AMITypesType = Literal[
|
|
79
|
+
"AL2023_ARM_64_STANDARD",
|
|
80
|
+
"AL2023_x86_64_STANDARD",
|
|
76
81
|
"AL2_ARM_64",
|
|
77
82
|
"AL2_x86_64",
|
|
78
83
|
"AL2_x86_64_GPU",
|
|
@@ -111,6 +116,7 @@ AddonStatusType = Literal[
|
|
|
111
116
|
]
|
|
112
117
|
AuthenticationModeType = Literal["API", "API_AND_CONFIG_MAP", "CONFIG_MAP"]
|
|
113
118
|
CapacityTypesType = Literal["ON_DEMAND", "SPOT"]
|
|
119
|
+
CategoryType = Literal["UPGRADE_READINESS"]
|
|
114
120
|
ClusterActiveWaiterName = Literal["cluster_active"]
|
|
115
121
|
ClusterDeletedWaiterName = Literal["cluster_deleted"]
|
|
116
122
|
ClusterIssueCodeType = Literal[
|
|
@@ -168,6 +174,7 @@ FargateProfileDeletedWaiterName = Literal["fargate_profile_deleted"]
|
|
|
168
174
|
FargateProfileStatusType = Literal[
|
|
169
175
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
|
|
170
176
|
]
|
|
177
|
+
InsightStatusValueType = Literal["ERROR", "PASSING", "UNKNOWN", "WARNING"]
|
|
171
178
|
IpFamilyType = Literal["ipv4", "ipv6"]
|
|
172
179
|
ListAccessEntriesPaginatorName = Literal["list_access_entries"]
|
|
173
180
|
ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
|
|
@@ -177,6 +184,7 @@ ListClustersPaginatorName = Literal["list_clusters"]
|
|
|
177
184
|
ListEksAnywhereSubscriptionsPaginatorName = Literal["list_eks_anywhere_subscriptions"]
|
|
178
185
|
ListFargateProfilesPaginatorName = Literal["list_fargate_profiles"]
|
|
179
186
|
ListIdentityProviderConfigsPaginatorName = Literal["list_identity_provider_configs"]
|
|
187
|
+
ListInsightsPaginatorName = Literal["list_insights"]
|
|
180
188
|
ListNodegroupsPaginatorName = Literal["list_nodegroups"]
|
|
181
189
|
ListPodIdentityAssociationsPaginatorName = Literal["list_pod_identity_associations"]
|
|
182
190
|
ListUpdatesPaginatorName = Literal["list_updates"]
|
|
@@ -293,6 +301,7 @@ ServiceName = Literal[
|
|
|
293
301
|
"appstream",
|
|
294
302
|
"appsync",
|
|
295
303
|
"arc-zonal-shift",
|
|
304
|
+
"artifact",
|
|
296
305
|
"athena",
|
|
297
306
|
"auditmanager",
|
|
298
307
|
"autoscaling",
|
|
@@ -311,6 +320,7 @@ ServiceName = Literal[
|
|
|
311
320
|
"braket",
|
|
312
321
|
"budgets",
|
|
313
322
|
"ce",
|
|
323
|
+
"chatbot",
|
|
314
324
|
"chime",
|
|
315
325
|
"chime-sdk-identity",
|
|
316
326
|
"chime-sdk-media-pipelines",
|
|
@@ -518,6 +528,7 @@ ServiceName = Literal[
|
|
|
518
528
|
"neptunedata",
|
|
519
529
|
"network-firewall",
|
|
520
530
|
"networkmanager",
|
|
531
|
+
"networkmonitor",
|
|
521
532
|
"nimble",
|
|
522
533
|
"oam",
|
|
523
534
|
"omics",
|
|
@@ -615,6 +626,7 @@ ServiceName = Literal[
|
|
|
615
626
|
"stepfunctions",
|
|
616
627
|
"storagegateway",
|
|
617
628
|
"sts",
|
|
629
|
+
"supplychain",
|
|
618
630
|
"support",
|
|
619
631
|
"support-app",
|
|
620
632
|
"swf",
|
|
@@ -666,6 +678,7 @@ PaginatorName = Literal[
|
|
|
666
678
|
"list_eks_anywhere_subscriptions",
|
|
667
679
|
"list_fargate_profiles",
|
|
668
680
|
"list_identity_provider_configs",
|
|
681
|
+
"list_insights",
|
|
669
682
|
"list_nodegroups",
|
|
670
683
|
"list_pod_identity_associations",
|
|
671
684
|
"list_updates",
|
|
@@ -693,6 +706,7 @@ RegionName = Literal[
|
|
|
693
706
|
"ap-southeast-3",
|
|
694
707
|
"ap-southeast-4",
|
|
695
708
|
"ca-central-1",
|
|
709
|
+
"ca-west-1",
|
|
696
710
|
"eu-central-1",
|
|
697
711
|
"eu-central-2",
|
|
698
712
|
"eu-north-1",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -8,7 +8,7 @@ Usage::
|
|
|
8
8
|
```python
|
|
9
9
|
from mypy_boto3_eks.literals import AMITypesType
|
|
10
10
|
|
|
11
|
-
data: AMITypesType = "
|
|
11
|
+
data: AMITypesType = "AL2023_ARM_64_STANDARD"
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
|
|
@@ -28,6 +28,7 @@ __all__ = (
|
|
|
28
28
|
"AddonStatusType",
|
|
29
29
|
"AuthenticationModeType",
|
|
30
30
|
"CapacityTypesType",
|
|
31
|
+
"CategoryType",
|
|
31
32
|
"ClusterActiveWaiterName",
|
|
32
33
|
"ClusterDeletedWaiterName",
|
|
33
34
|
"ClusterIssueCodeType",
|
|
@@ -41,6 +42,7 @@ __all__ = (
|
|
|
41
42
|
"FargateProfileActiveWaiterName",
|
|
42
43
|
"FargateProfileDeletedWaiterName",
|
|
43
44
|
"FargateProfileStatusType",
|
|
45
|
+
"InsightStatusValueType",
|
|
44
46
|
"IpFamilyType",
|
|
45
47
|
"ListAccessEntriesPaginatorName",
|
|
46
48
|
"ListAccessPoliciesPaginatorName",
|
|
@@ -50,6 +52,7 @@ __all__ = (
|
|
|
50
52
|
"ListEksAnywhereSubscriptionsPaginatorName",
|
|
51
53
|
"ListFargateProfilesPaginatorName",
|
|
52
54
|
"ListIdentityProviderConfigsPaginatorName",
|
|
55
|
+
"ListInsightsPaginatorName",
|
|
53
56
|
"ListNodegroupsPaginatorName",
|
|
54
57
|
"ListPodIdentityAssociationsPaginatorName",
|
|
55
58
|
"ListUpdatesPaginatorName",
|
|
@@ -73,6 +76,8 @@ __all__ = (
|
|
|
73
76
|
)
|
|
74
77
|
|
|
75
78
|
AMITypesType = Literal[
|
|
79
|
+
"AL2023_ARM_64_STANDARD",
|
|
80
|
+
"AL2023_x86_64_STANDARD",
|
|
76
81
|
"AL2_ARM_64",
|
|
77
82
|
"AL2_x86_64",
|
|
78
83
|
"AL2_x86_64_GPU",
|
|
@@ -111,6 +116,7 @@ AddonStatusType = Literal[
|
|
|
111
116
|
]
|
|
112
117
|
AuthenticationModeType = Literal["API", "API_AND_CONFIG_MAP", "CONFIG_MAP"]
|
|
113
118
|
CapacityTypesType = Literal["ON_DEMAND", "SPOT"]
|
|
119
|
+
CategoryType = Literal["UPGRADE_READINESS"]
|
|
114
120
|
ClusterActiveWaiterName = Literal["cluster_active"]
|
|
115
121
|
ClusterDeletedWaiterName = Literal["cluster_deleted"]
|
|
116
122
|
ClusterIssueCodeType = Literal[
|
|
@@ -168,6 +174,7 @@ FargateProfileDeletedWaiterName = Literal["fargate_profile_deleted"]
|
|
|
168
174
|
FargateProfileStatusType = Literal[
|
|
169
175
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
|
|
170
176
|
]
|
|
177
|
+
InsightStatusValueType = Literal["ERROR", "PASSING", "UNKNOWN", "WARNING"]
|
|
171
178
|
IpFamilyType = Literal["ipv4", "ipv6"]
|
|
172
179
|
ListAccessEntriesPaginatorName = Literal["list_access_entries"]
|
|
173
180
|
ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
|
|
@@ -177,6 +184,7 @@ ListClustersPaginatorName = Literal["list_clusters"]
|
|
|
177
184
|
ListEksAnywhereSubscriptionsPaginatorName = Literal["list_eks_anywhere_subscriptions"]
|
|
178
185
|
ListFargateProfilesPaginatorName = Literal["list_fargate_profiles"]
|
|
179
186
|
ListIdentityProviderConfigsPaginatorName = Literal["list_identity_provider_configs"]
|
|
187
|
+
ListInsightsPaginatorName = Literal["list_insights"]
|
|
180
188
|
ListNodegroupsPaginatorName = Literal["list_nodegroups"]
|
|
181
189
|
ListPodIdentityAssociationsPaginatorName = Literal["list_pod_identity_associations"]
|
|
182
190
|
ListUpdatesPaginatorName = Literal["list_updates"]
|
|
@@ -293,6 +301,7 @@ ServiceName = Literal[
|
|
|
293
301
|
"appstream",
|
|
294
302
|
"appsync",
|
|
295
303
|
"arc-zonal-shift",
|
|
304
|
+
"artifact",
|
|
296
305
|
"athena",
|
|
297
306
|
"auditmanager",
|
|
298
307
|
"autoscaling",
|
|
@@ -311,6 +320,7 @@ ServiceName = Literal[
|
|
|
311
320
|
"braket",
|
|
312
321
|
"budgets",
|
|
313
322
|
"ce",
|
|
323
|
+
"chatbot",
|
|
314
324
|
"chime",
|
|
315
325
|
"chime-sdk-identity",
|
|
316
326
|
"chime-sdk-media-pipelines",
|
|
@@ -518,6 +528,7 @@ ServiceName = Literal[
|
|
|
518
528
|
"neptunedata",
|
|
519
529
|
"network-firewall",
|
|
520
530
|
"networkmanager",
|
|
531
|
+
"networkmonitor",
|
|
521
532
|
"nimble",
|
|
522
533
|
"oam",
|
|
523
534
|
"omics",
|
|
@@ -615,6 +626,7 @@ ServiceName = Literal[
|
|
|
615
626
|
"stepfunctions",
|
|
616
627
|
"storagegateway",
|
|
617
628
|
"sts",
|
|
629
|
+
"supplychain",
|
|
618
630
|
"support",
|
|
619
631
|
"support-app",
|
|
620
632
|
"swf",
|
|
@@ -666,6 +678,7 @@ PaginatorName = Literal[
|
|
|
666
678
|
"list_eks_anywhere_subscriptions",
|
|
667
679
|
"list_fargate_profiles",
|
|
668
680
|
"list_identity_provider_configs",
|
|
681
|
+
"list_insights",
|
|
669
682
|
"list_nodegroups",
|
|
670
683
|
"list_pod_identity_associations",
|
|
671
684
|
"list_updates",
|
|
@@ -693,6 +706,7 @@ RegionName = Literal[
|
|
|
693
706
|
"ap-southeast-3",
|
|
694
707
|
"ap-southeast-4",
|
|
695
708
|
"ca-central-1",
|
|
709
|
+
"ca-west-1",
|
|
696
710
|
"eu-central-1",
|
|
697
711
|
"eu-central-2",
|
|
698
712
|
"eu-north-1",
|
mypy_boto3_eks/paginator.py
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
ListEksAnywhereSubscriptionsPaginator,
|
|
20
20
|
ListFargateProfilesPaginator,
|
|
21
21
|
ListIdentityProviderConfigsPaginator,
|
|
22
|
+
ListInsightsPaginator,
|
|
22
23
|
ListNodegroupsPaginator,
|
|
23
24
|
ListPodIdentityAssociationsPaginator,
|
|
24
25
|
ListUpdatesPaginator,
|
|
@@ -36,6 +37,7 @@ Usage::
|
|
|
36
37
|
list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = client.get_paginator("list_eks_anywhere_subscriptions")
|
|
37
38
|
list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator("list_fargate_profiles")
|
|
38
39
|
list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = client.get_paginator("list_identity_provider_configs")
|
|
40
|
+
list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
|
|
39
41
|
list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
|
|
40
42
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
|
|
41
43
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
@@ -49,6 +51,7 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
49
51
|
from .literals import EksAnywhereSubscriptionStatusType
|
|
50
52
|
from .type_defs import (
|
|
51
53
|
DescribeAddonVersionsResponseTypeDef,
|
|
54
|
+
InsightsFilterTypeDef,
|
|
52
55
|
ListAccessEntriesResponseTypeDef,
|
|
53
56
|
ListAccessPoliciesResponseTypeDef,
|
|
54
57
|
ListAddonsResponseTypeDef,
|
|
@@ -57,6 +60,7 @@ from .type_defs import (
|
|
|
57
60
|
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
58
61
|
ListFargateProfilesResponseTypeDef,
|
|
59
62
|
ListIdentityProviderConfigsResponseTypeDef,
|
|
63
|
+
ListInsightsResponseTypeDef,
|
|
60
64
|
ListNodegroupsResponseTypeDef,
|
|
61
65
|
ListPodIdentityAssociationsResponseTypeDef,
|
|
62
66
|
ListUpdatesResponseTypeDef,
|
|
@@ -73,6 +77,7 @@ __all__ = (
|
|
|
73
77
|
"ListEksAnywhereSubscriptionsPaginator",
|
|
74
78
|
"ListFargateProfilesPaginator",
|
|
75
79
|
"ListIdentityProviderConfigsPaginator",
|
|
80
|
+
"ListInsightsPaginator",
|
|
76
81
|
"ListNodegroupsPaginator",
|
|
77
82
|
"ListPodIdentityAssociationsPaginator",
|
|
78
83
|
"ListUpdatesPaginator",
|
|
@@ -102,7 +107,7 @@ class DescribeAddonVersionsPaginator(Paginator):
|
|
|
102
107
|
types: Sequence[str] = ...,
|
|
103
108
|
publishers: Sequence[str] = ...,
|
|
104
109
|
owners: Sequence[str] = ...,
|
|
105
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
110
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
106
111
|
) -> _PageIterator[DescribeAddonVersionsResponseTypeDef]:
|
|
107
112
|
"""
|
|
108
113
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions.paginate)
|
|
@@ -121,7 +126,7 @@ class ListAccessEntriesPaginator(Paginator):
|
|
|
121
126
|
*,
|
|
122
127
|
clusterName: str,
|
|
123
128
|
associatedPolicyArn: str = ...,
|
|
124
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
129
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
125
130
|
) -> _PageIterator[ListAccessEntriesResponseTypeDef]:
|
|
126
131
|
"""
|
|
127
132
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries.paginate)
|
|
@@ -199,7 +204,7 @@ class ListEksAnywhereSubscriptionsPaginator(Paginator):
|
|
|
199
204
|
self,
|
|
200
205
|
*,
|
|
201
206
|
includeStatus: Sequence[EksAnywhereSubscriptionStatusType] = ...,
|
|
202
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
207
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
203
208
|
) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
|
|
204
209
|
"""
|
|
205
210
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
|
|
@@ -237,6 +242,25 @@ class ListIdentityProviderConfigsPaginator(Paginator):
|
|
|
237
242
|
"""
|
|
238
243
|
|
|
239
244
|
|
|
245
|
+
class ListInsightsPaginator(Paginator):
|
|
246
|
+
"""
|
|
247
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights)
|
|
248
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
|
|
249
|
+
"""
|
|
250
|
+
|
|
251
|
+
def paginate(
|
|
252
|
+
self,
|
|
253
|
+
*,
|
|
254
|
+
clusterName: str,
|
|
255
|
+
filter: InsightsFilterTypeDef = ...,
|
|
256
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
257
|
+
) -> _PageIterator[ListInsightsResponseTypeDef]:
|
|
258
|
+
"""
|
|
259
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights.paginate)
|
|
260
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
|
|
261
|
+
"""
|
|
262
|
+
|
|
263
|
+
|
|
240
264
|
class ListNodegroupsPaginator(Paginator):
|
|
241
265
|
"""
|
|
242
266
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups)
|
|
@@ -264,7 +288,7 @@ class ListPodIdentityAssociationsPaginator(Paginator):
|
|
|
264
288
|
clusterName: str,
|
|
265
289
|
namespace: str = ...,
|
|
266
290
|
serviceAccount: str = ...,
|
|
267
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
291
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
268
292
|
) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
|
|
269
293
|
"""
|
|
270
294
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
|
|
@@ -284,7 +308,7 @@ class ListUpdatesPaginator(Paginator):
|
|
|
284
308
|
name: str,
|
|
285
309
|
nodegroupName: str = ...,
|
|
286
310
|
addonName: str = ...,
|
|
287
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
311
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
288
312
|
) -> _PageIterator[ListUpdatesResponseTypeDef]:
|
|
289
313
|
"""
|
|
290
314
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates.paginate)
|
mypy_boto3_eks/paginator.pyi
CHANGED
|
@@ -19,6 +19,7 @@ Usage::
|
|
|
19
19
|
ListEksAnywhereSubscriptionsPaginator,
|
|
20
20
|
ListFargateProfilesPaginator,
|
|
21
21
|
ListIdentityProviderConfigsPaginator,
|
|
22
|
+
ListInsightsPaginator,
|
|
22
23
|
ListNodegroupsPaginator,
|
|
23
24
|
ListPodIdentityAssociationsPaginator,
|
|
24
25
|
ListUpdatesPaginator,
|
|
@@ -36,6 +37,7 @@ Usage::
|
|
|
36
37
|
list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = client.get_paginator("list_eks_anywhere_subscriptions")
|
|
37
38
|
list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator("list_fargate_profiles")
|
|
38
39
|
list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = client.get_paginator("list_identity_provider_configs")
|
|
40
|
+
list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
|
|
39
41
|
list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
|
|
40
42
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
|
|
41
43
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
@@ -49,6 +51,7 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
49
51
|
from .literals import EksAnywhereSubscriptionStatusType
|
|
50
52
|
from .type_defs import (
|
|
51
53
|
DescribeAddonVersionsResponseTypeDef,
|
|
54
|
+
InsightsFilterTypeDef,
|
|
52
55
|
ListAccessEntriesResponseTypeDef,
|
|
53
56
|
ListAccessPoliciesResponseTypeDef,
|
|
54
57
|
ListAddonsResponseTypeDef,
|
|
@@ -57,6 +60,7 @@ from .type_defs import (
|
|
|
57
60
|
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
58
61
|
ListFargateProfilesResponseTypeDef,
|
|
59
62
|
ListIdentityProviderConfigsResponseTypeDef,
|
|
63
|
+
ListInsightsResponseTypeDef,
|
|
60
64
|
ListNodegroupsResponseTypeDef,
|
|
61
65
|
ListPodIdentityAssociationsResponseTypeDef,
|
|
62
66
|
ListUpdatesResponseTypeDef,
|
|
@@ -73,6 +77,7 @@ __all__ = (
|
|
|
73
77
|
"ListEksAnywhereSubscriptionsPaginator",
|
|
74
78
|
"ListFargateProfilesPaginator",
|
|
75
79
|
"ListIdentityProviderConfigsPaginator",
|
|
80
|
+
"ListInsightsPaginator",
|
|
76
81
|
"ListNodegroupsPaginator",
|
|
77
82
|
"ListPodIdentityAssociationsPaginator",
|
|
78
83
|
"ListUpdatesPaginator",
|
|
@@ -100,7 +105,7 @@ class DescribeAddonVersionsPaginator(Paginator):
|
|
|
100
105
|
types: Sequence[str] = ...,
|
|
101
106
|
publishers: Sequence[str] = ...,
|
|
102
107
|
owners: Sequence[str] = ...,
|
|
103
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
108
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
104
109
|
) -> _PageIterator[DescribeAddonVersionsResponseTypeDef]:
|
|
105
110
|
"""
|
|
106
111
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions.paginate)
|
|
@@ -118,7 +123,7 @@ class ListAccessEntriesPaginator(Paginator):
|
|
|
118
123
|
*,
|
|
119
124
|
clusterName: str,
|
|
120
125
|
associatedPolicyArn: str = ...,
|
|
121
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
126
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
122
127
|
) -> _PageIterator[ListAccessEntriesResponseTypeDef]:
|
|
123
128
|
"""
|
|
124
129
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries.paginate)
|
|
@@ -191,7 +196,7 @@ class ListEksAnywhereSubscriptionsPaginator(Paginator):
|
|
|
191
196
|
self,
|
|
192
197
|
*,
|
|
193
198
|
includeStatus: Sequence[EksAnywhereSubscriptionStatusType] = ...,
|
|
194
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
199
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
195
200
|
) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
|
|
196
201
|
"""
|
|
197
202
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
|
|
@@ -226,6 +231,24 @@ class ListIdentityProviderConfigsPaginator(Paginator):
|
|
|
226
231
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
|
|
227
232
|
"""
|
|
228
233
|
|
|
234
|
+
class ListInsightsPaginator(Paginator):
|
|
235
|
+
"""
|
|
236
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights)
|
|
237
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
|
|
238
|
+
"""
|
|
239
|
+
|
|
240
|
+
def paginate(
|
|
241
|
+
self,
|
|
242
|
+
*,
|
|
243
|
+
clusterName: str,
|
|
244
|
+
filter: InsightsFilterTypeDef = ...,
|
|
245
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
246
|
+
) -> _PageIterator[ListInsightsResponseTypeDef]:
|
|
247
|
+
"""
|
|
248
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights.paginate)
|
|
249
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
|
|
250
|
+
"""
|
|
251
|
+
|
|
229
252
|
class ListNodegroupsPaginator(Paginator):
|
|
230
253
|
"""
|
|
231
254
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups)
|
|
@@ -252,7 +275,7 @@ class ListPodIdentityAssociationsPaginator(Paginator):
|
|
|
252
275
|
clusterName: str,
|
|
253
276
|
namespace: str = ...,
|
|
254
277
|
serviceAccount: str = ...,
|
|
255
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
278
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
256
279
|
) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
|
|
257
280
|
"""
|
|
258
281
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
|
|
@@ -271,7 +294,7 @@ class ListUpdatesPaginator(Paginator):
|
|
|
271
294
|
name: str,
|
|
272
295
|
nodegroupName: str = ...,
|
|
273
296
|
addonName: str = ...,
|
|
274
|
-
PaginationConfig: PaginatorConfigTypeDef =
|
|
297
|
+
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
275
298
|
) -> _PageIterator[ListUpdatesResponseTypeDef]:
|
|
276
299
|
"""
|
|
277
300
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates.paginate)
|