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/__init__.py
CHANGED
|
@@ -23,6 +23,7 @@ Usage::
|
|
|
23
23
|
ListEksAnywhereSubscriptionsPaginator,
|
|
24
24
|
ListFargateProfilesPaginator,
|
|
25
25
|
ListIdentityProviderConfigsPaginator,
|
|
26
|
+
ListInsightsPaginator,
|
|
26
27
|
ListNodegroupsPaginator,
|
|
27
28
|
ListPodIdentityAssociationsPaginator,
|
|
28
29
|
ListUpdatesPaginator,
|
|
@@ -51,6 +52,7 @@ Usage::
|
|
|
51
52
|
list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = client.get_paginator("list_eks_anywhere_subscriptions")
|
|
52
53
|
list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator("list_fargate_profiles")
|
|
53
54
|
list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = client.get_paginator("list_identity_provider_configs")
|
|
55
|
+
list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
|
|
54
56
|
list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
|
|
55
57
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
|
|
56
58
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
@@ -68,6 +70,7 @@ from .paginator import (
|
|
|
68
70
|
ListEksAnywhereSubscriptionsPaginator,
|
|
69
71
|
ListFargateProfilesPaginator,
|
|
70
72
|
ListIdentityProviderConfigsPaginator,
|
|
73
|
+
ListInsightsPaginator,
|
|
71
74
|
ListNodegroupsPaginator,
|
|
72
75
|
ListPodIdentityAssociationsPaginator,
|
|
73
76
|
ListUpdatesPaginator,
|
|
@@ -103,6 +106,7 @@ __all__ = (
|
|
|
103
106
|
"ListEksAnywhereSubscriptionsPaginator",
|
|
104
107
|
"ListFargateProfilesPaginator",
|
|
105
108
|
"ListIdentityProviderConfigsPaginator",
|
|
109
|
+
"ListInsightsPaginator",
|
|
106
110
|
"ListNodegroupsPaginator",
|
|
107
111
|
"ListPodIdentityAssociationsPaginator",
|
|
108
112
|
"ListUpdatesPaginator",
|
mypy_boto3_eks/__init__.pyi
CHANGED
|
@@ -23,6 +23,7 @@ Usage::
|
|
|
23
23
|
ListEksAnywhereSubscriptionsPaginator,
|
|
24
24
|
ListFargateProfilesPaginator,
|
|
25
25
|
ListIdentityProviderConfigsPaginator,
|
|
26
|
+
ListInsightsPaginator,
|
|
26
27
|
ListNodegroupsPaginator,
|
|
27
28
|
ListPodIdentityAssociationsPaginator,
|
|
28
29
|
ListUpdatesPaginator,
|
|
@@ -51,6 +52,7 @@ Usage::
|
|
|
51
52
|
list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = client.get_paginator("list_eks_anywhere_subscriptions")
|
|
52
53
|
list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator("list_fargate_profiles")
|
|
53
54
|
list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = client.get_paginator("list_identity_provider_configs")
|
|
55
|
+
list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
|
|
54
56
|
list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
|
|
55
57
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
|
|
56
58
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
@@ -68,6 +70,7 @@ from .paginator import (
|
|
|
68
70
|
ListEksAnywhereSubscriptionsPaginator,
|
|
69
71
|
ListFargateProfilesPaginator,
|
|
70
72
|
ListIdentityProviderConfigsPaginator,
|
|
73
|
+
ListInsightsPaginator,
|
|
71
74
|
ListNodegroupsPaginator,
|
|
72
75
|
ListPodIdentityAssociationsPaginator,
|
|
73
76
|
ListUpdatesPaginator,
|
|
@@ -103,6 +106,7 @@ __all__ = (
|
|
|
103
106
|
"ListEksAnywhereSubscriptionsPaginator",
|
|
104
107
|
"ListFargateProfilesPaginator",
|
|
105
108
|
"ListIdentityProviderConfigsPaginator",
|
|
109
|
+
"ListInsightsPaginator",
|
|
106
110
|
"ListNodegroupsPaginator",
|
|
107
111
|
"ListPodIdentityAssociationsPaginator",
|
|
108
112
|
"ListUpdatesPaginator",
|
mypy_boto3_eks/__main__.py
CHANGED
|
@@ -10,12 +10,13 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.EKS 1.34.
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
" https://
|
|
13
|
+
"Type annotations for boto3.EKS 1.34.53\n"
|
|
14
|
+
"Version: 1.34.53\n"
|
|
15
|
+
"Builder version: 7.23.2\n"
|
|
16
|
+
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
|
|
17
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS\n"
|
|
18
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
19
20
|
)
|
|
20
21
|
|
|
21
22
|
|
|
@@ -23,7 +24,7 @@ def print_version() -> None:
|
|
|
23
24
|
"""
|
|
24
25
|
Print package version to stdout.
|
|
25
26
|
"""
|
|
26
|
-
print("1.34.
|
|
27
|
+
print("1.34.53")
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
def main() -> None:
|
mypy_boto3_eks/client.py
CHANGED
|
@@ -35,6 +35,7 @@ from .paginator import (
|
|
|
35
35
|
ListEksAnywhereSubscriptionsPaginator,
|
|
36
36
|
ListFargateProfilesPaginator,
|
|
37
37
|
ListIdentityProviderConfigsPaginator,
|
|
38
|
+
ListInsightsPaginator,
|
|
38
39
|
ListNodegroupsPaginator,
|
|
39
40
|
ListPodIdentityAssociationsPaginator,
|
|
40
41
|
ListUpdatesPaginator,
|
|
@@ -68,6 +69,7 @@ from .type_defs import (
|
|
|
68
69
|
DescribeEksAnywhereSubscriptionResponseTypeDef,
|
|
69
70
|
DescribeFargateProfileResponseTypeDef,
|
|
70
71
|
DescribeIdentityProviderConfigResponseTypeDef,
|
|
72
|
+
DescribeInsightResponseTypeDef,
|
|
71
73
|
DescribeNodegroupResponseTypeDef,
|
|
72
74
|
DescribePodIdentityAssociationResponseTypeDef,
|
|
73
75
|
DescribeUpdateResponseTypeDef,
|
|
@@ -76,6 +78,7 @@ from .type_defs import (
|
|
|
76
78
|
EncryptionConfigTypeDef,
|
|
77
79
|
FargateProfileSelectorTypeDef,
|
|
78
80
|
IdentityProviderConfigTypeDef,
|
|
81
|
+
InsightsFilterTypeDef,
|
|
79
82
|
KubernetesNetworkConfigRequestTypeDef,
|
|
80
83
|
LaunchTemplateSpecificationTypeDef,
|
|
81
84
|
ListAccessEntriesResponseTypeDef,
|
|
@@ -86,6 +89,7 @@ from .type_defs import (
|
|
|
86
89
|
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
87
90
|
ListFargateProfilesResponseTypeDef,
|
|
88
91
|
ListIdentityProviderConfigsResponseTypeDef,
|
|
92
|
+
ListInsightsResponseTypeDef,
|
|
89
93
|
ListNodegroupsResponseTypeDef,
|
|
90
94
|
ListPodIdentityAssociationsResponseTypeDef,
|
|
91
95
|
ListTagsForResourceResponseTypeDef,
|
|
@@ -178,7 +182,7 @@ class EKSClient(BaseClient):
|
|
|
178
182
|
clusterName: str,
|
|
179
183
|
principalArn: str,
|
|
180
184
|
policyArn: str,
|
|
181
|
-
accessScope: AccessScopeTypeDef
|
|
185
|
+
accessScope: AccessScopeTypeDef,
|
|
182
186
|
) -> AssociateAccessPolicyResponseTypeDef:
|
|
183
187
|
"""
|
|
184
188
|
Associates an access policy and its scope to an access entry.
|
|
@@ -192,7 +196,7 @@ class EKSClient(BaseClient):
|
|
|
192
196
|
*,
|
|
193
197
|
clusterName: str,
|
|
194
198
|
encryptionConfig: Sequence[EncryptionConfigTypeDef],
|
|
195
|
-
clientRequestToken: str =
|
|
199
|
+
clientRequestToken: str = ...,
|
|
196
200
|
) -> AssociateEncryptionConfigResponseTypeDef:
|
|
197
201
|
"""
|
|
198
202
|
Associates an encryption configuration to an existing cluster.
|
|
@@ -207,7 +211,7 @@ class EKSClient(BaseClient):
|
|
|
207
211
|
clusterName: str,
|
|
208
212
|
oidc: OidcIdentityProviderConfigRequestTypeDef,
|
|
209
213
|
tags: Mapping[str, str] = ...,
|
|
210
|
-
clientRequestToken: str =
|
|
214
|
+
clientRequestToken: str = ...,
|
|
211
215
|
) -> AssociateIdentityProviderConfigResponseTypeDef:
|
|
212
216
|
"""
|
|
213
217
|
Associates an identity provider configuration to a cluster.
|
|
@@ -241,7 +245,7 @@ class EKSClient(BaseClient):
|
|
|
241
245
|
tags: Mapping[str, str] = ...,
|
|
242
246
|
clientRequestToken: str = ...,
|
|
243
247
|
username: str = ...,
|
|
244
|
-
type: str =
|
|
248
|
+
type: str = ...,
|
|
245
249
|
) -> CreateAccessEntryResponseTypeDef:
|
|
246
250
|
"""
|
|
247
251
|
Creates an access entry.
|
|
@@ -260,7 +264,7 @@ class EKSClient(BaseClient):
|
|
|
260
264
|
resolveConflicts: ResolveConflictsType = ...,
|
|
261
265
|
clientRequestToken: str = ...,
|
|
262
266
|
tags: Mapping[str, str] = ...,
|
|
263
|
-
configurationValues: str =
|
|
267
|
+
configurationValues: str = ...,
|
|
264
268
|
) -> CreateAddonResponseTypeDef:
|
|
265
269
|
"""
|
|
266
270
|
Creates an Amazon EKS add-on.
|
|
@@ -282,7 +286,7 @@ class EKSClient(BaseClient):
|
|
|
282
286
|
tags: Mapping[str, str] = ...,
|
|
283
287
|
encryptionConfig: Sequence[EncryptionConfigTypeDef] = ...,
|
|
284
288
|
outpostConfig: OutpostConfigRequestTypeDef = ...,
|
|
285
|
-
accessConfig: CreateAccessConfigRequestTypeDef =
|
|
289
|
+
accessConfig: CreateAccessConfigRequestTypeDef = ...,
|
|
286
290
|
) -> CreateClusterResponseTypeDef:
|
|
287
291
|
"""
|
|
288
292
|
Creates an Amazon EKS control plane.
|
|
@@ -300,7 +304,7 @@ class EKSClient(BaseClient):
|
|
|
300
304
|
licenseType: Literal["Cluster"] = ...,
|
|
301
305
|
autoRenew: bool = ...,
|
|
302
306
|
clientRequestToken: str = ...,
|
|
303
|
-
tags: Mapping[str, str] =
|
|
307
|
+
tags: Mapping[str, str] = ...,
|
|
304
308
|
) -> CreateEksAnywhereSubscriptionResponseTypeDef:
|
|
305
309
|
"""
|
|
306
310
|
Creates an EKS Anywhere subscription.
|
|
@@ -318,7 +322,7 @@ class EKSClient(BaseClient):
|
|
|
318
322
|
subnets: Sequence[str] = ...,
|
|
319
323
|
selectors: Sequence[FargateProfileSelectorTypeDef] = ...,
|
|
320
324
|
clientRequestToken: str = ...,
|
|
321
|
-
tags: Mapping[str, str] =
|
|
325
|
+
tags: Mapping[str, str] = ...,
|
|
322
326
|
) -> CreateFargateProfileResponseTypeDef:
|
|
323
327
|
"""
|
|
324
328
|
Creates an Fargate profile for your Amazon EKS cluster.
|
|
@@ -347,7 +351,7 @@ class EKSClient(BaseClient):
|
|
|
347
351
|
updateConfig: NodegroupUpdateConfigTypeDef = ...,
|
|
348
352
|
capacityType: CapacityTypesType = ...,
|
|
349
353
|
version: str = ...,
|
|
350
|
-
releaseVersion: str =
|
|
354
|
+
releaseVersion: str = ...,
|
|
351
355
|
) -> CreateNodegroupResponseTypeDef:
|
|
352
356
|
"""
|
|
353
357
|
Creates a managed node group for an Amazon EKS cluster.
|
|
@@ -364,7 +368,7 @@ class EKSClient(BaseClient):
|
|
|
364
368
|
serviceAccount: str,
|
|
365
369
|
roleArn: str,
|
|
366
370
|
clientRequestToken: str = ...,
|
|
367
|
-
tags: Mapping[str, str] =
|
|
371
|
+
tags: Mapping[str, str] = ...,
|
|
368
372
|
) -> CreatePodIdentityAssociationResponseTypeDef:
|
|
369
373
|
"""
|
|
370
374
|
Creates an EKS Pod Identity association between a service account in an Amazon
|
|
@@ -486,7 +490,7 @@ class EKSClient(BaseClient):
|
|
|
486
490
|
addonName: str = ...,
|
|
487
491
|
types: Sequence[str] = ...,
|
|
488
492
|
publishers: Sequence[str] = ...,
|
|
489
|
-
owners: Sequence[str] =
|
|
493
|
+
owners: Sequence[str] = ...,
|
|
490
494
|
) -> DescribeAddonVersionsResponseTypeDef:
|
|
491
495
|
"""
|
|
492
496
|
Describes the versions for an add-on.
|
|
@@ -533,6 +537,14 @@ class EKSClient(BaseClient):
|
|
|
533
537
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_identity_provider_config)
|
|
534
538
|
"""
|
|
535
539
|
|
|
540
|
+
def describe_insight(self, *, clusterName: str, id: str) -> DescribeInsightResponseTypeDef:
|
|
541
|
+
"""
|
|
542
|
+
Returns details about an insight that you specify using its ID.
|
|
543
|
+
|
|
544
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client.describe_insight)
|
|
545
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_insight)
|
|
546
|
+
"""
|
|
547
|
+
|
|
536
548
|
def describe_nodegroup(
|
|
537
549
|
self, *, clusterName: str, nodegroupName: str
|
|
538
550
|
) -> DescribeNodegroupResponseTypeDef:
|
|
@@ -578,7 +590,7 @@ class EKSClient(BaseClient):
|
|
|
578
590
|
*,
|
|
579
591
|
clusterName: str,
|
|
580
592
|
identityProviderConfig: IdentityProviderConfigTypeDef,
|
|
581
|
-
clientRequestToken: str =
|
|
593
|
+
clientRequestToken: str = ...,
|
|
582
594
|
) -> DisassociateIdentityProviderConfigResponseTypeDef:
|
|
583
595
|
"""
|
|
584
596
|
Disassociates an identity provider configuration from a cluster.
|
|
@@ -607,7 +619,7 @@ class EKSClient(BaseClient):
|
|
|
607
619
|
clusterName: str,
|
|
608
620
|
associatedPolicyArn: str = ...,
|
|
609
621
|
maxResults: int = ...,
|
|
610
|
-
nextToken: str =
|
|
622
|
+
nextToken: str = ...,
|
|
611
623
|
) -> ListAccessEntriesResponseTypeDef:
|
|
612
624
|
"""
|
|
613
625
|
Lists the access entries for your cluster.
|
|
@@ -663,7 +675,7 @@ class EKSClient(BaseClient):
|
|
|
663
675
|
*,
|
|
664
676
|
maxResults: int = ...,
|
|
665
677
|
nextToken: str = ...,
|
|
666
|
-
includeStatus: Sequence[EksAnywhereSubscriptionStatusType] =
|
|
678
|
+
includeStatus: Sequence[EksAnywhereSubscriptionStatusType] = ...,
|
|
667
679
|
) -> ListEksAnywhereSubscriptionsResponseTypeDef:
|
|
668
680
|
"""
|
|
669
681
|
Displays the full description of the subscription.
|
|
@@ -694,6 +706,21 @@ class EKSClient(BaseClient):
|
|
|
694
706
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#list_identity_provider_configs)
|
|
695
707
|
"""
|
|
696
708
|
|
|
709
|
+
def list_insights(
|
|
710
|
+
self,
|
|
711
|
+
*,
|
|
712
|
+
clusterName: str,
|
|
713
|
+
filter: InsightsFilterTypeDef = ...,
|
|
714
|
+
maxResults: int = ...,
|
|
715
|
+
nextToken: str = ...,
|
|
716
|
+
) -> ListInsightsResponseTypeDef:
|
|
717
|
+
"""
|
|
718
|
+
Returns a list of all insights checked for against the specified cluster.
|
|
719
|
+
|
|
720
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client.list_insights)
|
|
721
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#list_insights)
|
|
722
|
+
"""
|
|
723
|
+
|
|
697
724
|
def list_nodegroups(
|
|
698
725
|
self, *, clusterName: str, maxResults: int = ..., nextToken: str = ...
|
|
699
726
|
) -> ListNodegroupsResponseTypeDef:
|
|
@@ -713,7 +740,7 @@ class EKSClient(BaseClient):
|
|
|
713
740
|
namespace: str = ...,
|
|
714
741
|
serviceAccount: str = ...,
|
|
715
742
|
maxResults: int = ...,
|
|
716
|
-
nextToken: str =
|
|
743
|
+
nextToken: str = ...,
|
|
717
744
|
) -> ListPodIdentityAssociationsResponseTypeDef:
|
|
718
745
|
"""
|
|
719
746
|
List the EKS Pod Identity associations in a cluster.
|
|
@@ -737,7 +764,7 @@ class EKSClient(BaseClient):
|
|
|
737
764
|
nodegroupName: str = ...,
|
|
738
765
|
addonName: str = ...,
|
|
739
766
|
nextToken: str = ...,
|
|
740
|
-
maxResults: int =
|
|
767
|
+
maxResults: int = ...,
|
|
741
768
|
) -> ListUpdatesResponseTypeDef:
|
|
742
769
|
"""
|
|
743
770
|
Lists the updates associated with an Amazon EKS resource in your Amazon Web
|
|
@@ -754,7 +781,7 @@ class EKSClient(BaseClient):
|
|
|
754
781
|
name: str,
|
|
755
782
|
connectorConfig: ConnectorConfigRequestTypeDef,
|
|
756
783
|
clientRequestToken: str = ...,
|
|
757
|
-
tags: Mapping[str, str] =
|
|
784
|
+
tags: Mapping[str, str] = ...,
|
|
758
785
|
) -> RegisterClusterResponseTypeDef:
|
|
759
786
|
"""
|
|
760
787
|
Connects a Kubernetes cluster to the Amazon EKS control plane.
|
|
@@ -787,7 +814,7 @@ class EKSClient(BaseClient):
|
|
|
787
814
|
principalArn: str,
|
|
788
815
|
kubernetesGroups: Sequence[str] = ...,
|
|
789
816
|
clientRequestToken: str = ...,
|
|
790
|
-
username: str =
|
|
817
|
+
username: str = ...,
|
|
791
818
|
) -> UpdateAccessEntryResponseTypeDef:
|
|
792
819
|
"""
|
|
793
820
|
Updates an access entry.
|
|
@@ -805,7 +832,7 @@ class EKSClient(BaseClient):
|
|
|
805
832
|
serviceAccountRoleArn: str = ...,
|
|
806
833
|
resolveConflicts: ResolveConflictsType = ...,
|
|
807
834
|
clientRequestToken: str = ...,
|
|
808
|
-
configurationValues: str =
|
|
835
|
+
configurationValues: str = ...,
|
|
809
836
|
) -> UpdateAddonResponseTypeDef:
|
|
810
837
|
"""
|
|
811
838
|
Updates an Amazon EKS add-on.
|
|
@@ -821,7 +848,7 @@ class EKSClient(BaseClient):
|
|
|
821
848
|
resourcesVpcConfig: VpcConfigRequestTypeDef = ...,
|
|
822
849
|
logging: LoggingTypeDef = ...,
|
|
823
850
|
clientRequestToken: str = ...,
|
|
824
|
-
accessConfig: UpdateAccessConfigRequestTypeDef =
|
|
851
|
+
accessConfig: UpdateAccessConfigRequestTypeDef = ...,
|
|
825
852
|
) -> UpdateClusterConfigResponseTypeDef:
|
|
826
853
|
"""
|
|
827
854
|
Updates an Amazon EKS cluster configuration.
|
|
@@ -859,7 +886,7 @@ class EKSClient(BaseClient):
|
|
|
859
886
|
taints: UpdateTaintsPayloadTypeDef = ...,
|
|
860
887
|
scalingConfig: NodegroupScalingConfigTypeDef = ...,
|
|
861
888
|
updateConfig: NodegroupUpdateConfigTypeDef = ...,
|
|
862
|
-
clientRequestToken: str =
|
|
889
|
+
clientRequestToken: str = ...,
|
|
863
890
|
) -> UpdateNodegroupConfigResponseTypeDef:
|
|
864
891
|
"""
|
|
865
892
|
Updates an Amazon EKS managed node group configuration.
|
|
@@ -877,7 +904,7 @@ class EKSClient(BaseClient):
|
|
|
877
904
|
releaseVersion: str = ...,
|
|
878
905
|
launchTemplate: LaunchTemplateSpecificationTypeDef = ...,
|
|
879
906
|
force: bool = ...,
|
|
880
|
-
clientRequestToken: str =
|
|
907
|
+
clientRequestToken: str = ...,
|
|
881
908
|
) -> UpdateNodegroupVersionResponseTypeDef:
|
|
882
909
|
"""
|
|
883
910
|
Updates the Kubernetes version or AMI version of an Amazon EKS managed node
|
|
@@ -893,7 +920,7 @@ class EKSClient(BaseClient):
|
|
|
893
920
|
clusterName: str,
|
|
894
921
|
associationId: str,
|
|
895
922
|
roleArn: str = ...,
|
|
896
|
-
clientRequestToken: str =
|
|
923
|
+
clientRequestToken: str = ...,
|
|
897
924
|
) -> UpdatePodIdentityAssociationResponseTypeDef:
|
|
898
925
|
"""
|
|
899
926
|
Updates a EKS Pod Identity association.
|
|
@@ -979,6 +1006,13 @@ class EKSClient(BaseClient):
|
|
|
979
1006
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
980
1007
|
"""
|
|
981
1008
|
|
|
1009
|
+
@overload
|
|
1010
|
+
def get_paginator(self, operation_name: Literal["list_insights"]) -> ListInsightsPaginator:
|
|
1011
|
+
"""
|
|
1012
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client.get_paginator)
|
|
1013
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
1014
|
+
"""
|
|
1015
|
+
|
|
982
1016
|
@overload
|
|
983
1017
|
def get_paginator(self, operation_name: Literal["list_nodegroups"]) -> ListNodegroupsPaginator:
|
|
984
1018
|
"""
|
mypy_boto3_eks/client.pyi
CHANGED
|
@@ -35,6 +35,7 @@ from .paginator import (
|
|
|
35
35
|
ListEksAnywhereSubscriptionsPaginator,
|
|
36
36
|
ListFargateProfilesPaginator,
|
|
37
37
|
ListIdentityProviderConfigsPaginator,
|
|
38
|
+
ListInsightsPaginator,
|
|
38
39
|
ListNodegroupsPaginator,
|
|
39
40
|
ListPodIdentityAssociationsPaginator,
|
|
40
41
|
ListUpdatesPaginator,
|
|
@@ -68,6 +69,7 @@ from .type_defs import (
|
|
|
68
69
|
DescribeEksAnywhereSubscriptionResponseTypeDef,
|
|
69
70
|
DescribeFargateProfileResponseTypeDef,
|
|
70
71
|
DescribeIdentityProviderConfigResponseTypeDef,
|
|
72
|
+
DescribeInsightResponseTypeDef,
|
|
71
73
|
DescribeNodegroupResponseTypeDef,
|
|
72
74
|
DescribePodIdentityAssociationResponseTypeDef,
|
|
73
75
|
DescribeUpdateResponseTypeDef,
|
|
@@ -76,6 +78,7 @@ from .type_defs import (
|
|
|
76
78
|
EncryptionConfigTypeDef,
|
|
77
79
|
FargateProfileSelectorTypeDef,
|
|
78
80
|
IdentityProviderConfigTypeDef,
|
|
81
|
+
InsightsFilterTypeDef,
|
|
79
82
|
KubernetesNetworkConfigRequestTypeDef,
|
|
80
83
|
LaunchTemplateSpecificationTypeDef,
|
|
81
84
|
ListAccessEntriesResponseTypeDef,
|
|
@@ -86,6 +89,7 @@ from .type_defs import (
|
|
|
86
89
|
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
87
90
|
ListFargateProfilesResponseTypeDef,
|
|
88
91
|
ListIdentityProviderConfigsResponseTypeDef,
|
|
92
|
+
ListInsightsResponseTypeDef,
|
|
89
93
|
ListNodegroupsResponseTypeDef,
|
|
90
94
|
ListPodIdentityAssociationsResponseTypeDef,
|
|
91
95
|
ListTagsForResourceResponseTypeDef,
|
|
@@ -175,7 +179,7 @@ class EKSClient(BaseClient):
|
|
|
175
179
|
clusterName: str,
|
|
176
180
|
principalArn: str,
|
|
177
181
|
policyArn: str,
|
|
178
|
-
accessScope: AccessScopeTypeDef
|
|
182
|
+
accessScope: AccessScopeTypeDef,
|
|
179
183
|
) -> AssociateAccessPolicyResponseTypeDef:
|
|
180
184
|
"""
|
|
181
185
|
Associates an access policy and its scope to an access entry.
|
|
@@ -189,7 +193,7 @@ class EKSClient(BaseClient):
|
|
|
189
193
|
*,
|
|
190
194
|
clusterName: str,
|
|
191
195
|
encryptionConfig: Sequence[EncryptionConfigTypeDef],
|
|
192
|
-
clientRequestToken: str =
|
|
196
|
+
clientRequestToken: str = ...,
|
|
193
197
|
) -> AssociateEncryptionConfigResponseTypeDef:
|
|
194
198
|
"""
|
|
195
199
|
Associates an encryption configuration to an existing cluster.
|
|
@@ -204,7 +208,7 @@ class EKSClient(BaseClient):
|
|
|
204
208
|
clusterName: str,
|
|
205
209
|
oidc: OidcIdentityProviderConfigRequestTypeDef,
|
|
206
210
|
tags: Mapping[str, str] = ...,
|
|
207
|
-
clientRequestToken: str =
|
|
211
|
+
clientRequestToken: str = ...,
|
|
208
212
|
) -> AssociateIdentityProviderConfigResponseTypeDef:
|
|
209
213
|
"""
|
|
210
214
|
Associates an identity provider configuration to a cluster.
|
|
@@ -238,7 +242,7 @@ class EKSClient(BaseClient):
|
|
|
238
242
|
tags: Mapping[str, str] = ...,
|
|
239
243
|
clientRequestToken: str = ...,
|
|
240
244
|
username: str = ...,
|
|
241
|
-
type: str =
|
|
245
|
+
type: str = ...,
|
|
242
246
|
) -> CreateAccessEntryResponseTypeDef:
|
|
243
247
|
"""
|
|
244
248
|
Creates an access entry.
|
|
@@ -257,7 +261,7 @@ class EKSClient(BaseClient):
|
|
|
257
261
|
resolveConflicts: ResolveConflictsType = ...,
|
|
258
262
|
clientRequestToken: str = ...,
|
|
259
263
|
tags: Mapping[str, str] = ...,
|
|
260
|
-
configurationValues: str =
|
|
264
|
+
configurationValues: str = ...,
|
|
261
265
|
) -> CreateAddonResponseTypeDef:
|
|
262
266
|
"""
|
|
263
267
|
Creates an Amazon EKS add-on.
|
|
@@ -279,7 +283,7 @@ class EKSClient(BaseClient):
|
|
|
279
283
|
tags: Mapping[str, str] = ...,
|
|
280
284
|
encryptionConfig: Sequence[EncryptionConfigTypeDef] = ...,
|
|
281
285
|
outpostConfig: OutpostConfigRequestTypeDef = ...,
|
|
282
|
-
accessConfig: CreateAccessConfigRequestTypeDef =
|
|
286
|
+
accessConfig: CreateAccessConfigRequestTypeDef = ...,
|
|
283
287
|
) -> CreateClusterResponseTypeDef:
|
|
284
288
|
"""
|
|
285
289
|
Creates an Amazon EKS control plane.
|
|
@@ -297,7 +301,7 @@ class EKSClient(BaseClient):
|
|
|
297
301
|
licenseType: Literal["Cluster"] = ...,
|
|
298
302
|
autoRenew: bool = ...,
|
|
299
303
|
clientRequestToken: str = ...,
|
|
300
|
-
tags: Mapping[str, str] =
|
|
304
|
+
tags: Mapping[str, str] = ...,
|
|
301
305
|
) -> CreateEksAnywhereSubscriptionResponseTypeDef:
|
|
302
306
|
"""
|
|
303
307
|
Creates an EKS Anywhere subscription.
|
|
@@ -315,7 +319,7 @@ class EKSClient(BaseClient):
|
|
|
315
319
|
subnets: Sequence[str] = ...,
|
|
316
320
|
selectors: Sequence[FargateProfileSelectorTypeDef] = ...,
|
|
317
321
|
clientRequestToken: str = ...,
|
|
318
|
-
tags: Mapping[str, str] =
|
|
322
|
+
tags: Mapping[str, str] = ...,
|
|
319
323
|
) -> CreateFargateProfileResponseTypeDef:
|
|
320
324
|
"""
|
|
321
325
|
Creates an Fargate profile for your Amazon EKS cluster.
|
|
@@ -344,7 +348,7 @@ class EKSClient(BaseClient):
|
|
|
344
348
|
updateConfig: NodegroupUpdateConfigTypeDef = ...,
|
|
345
349
|
capacityType: CapacityTypesType = ...,
|
|
346
350
|
version: str = ...,
|
|
347
|
-
releaseVersion: str =
|
|
351
|
+
releaseVersion: str = ...,
|
|
348
352
|
) -> CreateNodegroupResponseTypeDef:
|
|
349
353
|
"""
|
|
350
354
|
Creates a managed node group for an Amazon EKS cluster.
|
|
@@ -361,7 +365,7 @@ class EKSClient(BaseClient):
|
|
|
361
365
|
serviceAccount: str,
|
|
362
366
|
roleArn: str,
|
|
363
367
|
clientRequestToken: str = ...,
|
|
364
|
-
tags: Mapping[str, str] =
|
|
368
|
+
tags: Mapping[str, str] = ...,
|
|
365
369
|
) -> CreatePodIdentityAssociationResponseTypeDef:
|
|
366
370
|
"""
|
|
367
371
|
Creates an EKS Pod Identity association between a service account in an Amazon
|
|
@@ -483,7 +487,7 @@ class EKSClient(BaseClient):
|
|
|
483
487
|
addonName: str = ...,
|
|
484
488
|
types: Sequence[str] = ...,
|
|
485
489
|
publishers: Sequence[str] = ...,
|
|
486
|
-
owners: Sequence[str] =
|
|
490
|
+
owners: Sequence[str] = ...,
|
|
487
491
|
) -> DescribeAddonVersionsResponseTypeDef:
|
|
488
492
|
"""
|
|
489
493
|
Describes the versions for an add-on.
|
|
@@ -530,6 +534,14 @@ class EKSClient(BaseClient):
|
|
|
530
534
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_identity_provider_config)
|
|
531
535
|
"""
|
|
532
536
|
|
|
537
|
+
def describe_insight(self, *, clusterName: str, id: str) -> DescribeInsightResponseTypeDef:
|
|
538
|
+
"""
|
|
539
|
+
Returns details about an insight that you specify using its ID.
|
|
540
|
+
|
|
541
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client.describe_insight)
|
|
542
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_insight)
|
|
543
|
+
"""
|
|
544
|
+
|
|
533
545
|
def describe_nodegroup(
|
|
534
546
|
self, *, clusterName: str, nodegroupName: str
|
|
535
547
|
) -> DescribeNodegroupResponseTypeDef:
|
|
@@ -575,7 +587,7 @@ class EKSClient(BaseClient):
|
|
|
575
587
|
*,
|
|
576
588
|
clusterName: str,
|
|
577
589
|
identityProviderConfig: IdentityProviderConfigTypeDef,
|
|
578
|
-
clientRequestToken: str =
|
|
590
|
+
clientRequestToken: str = ...,
|
|
579
591
|
) -> DisassociateIdentityProviderConfigResponseTypeDef:
|
|
580
592
|
"""
|
|
581
593
|
Disassociates an identity provider configuration from a cluster.
|
|
@@ -604,7 +616,7 @@ class EKSClient(BaseClient):
|
|
|
604
616
|
clusterName: str,
|
|
605
617
|
associatedPolicyArn: str = ...,
|
|
606
618
|
maxResults: int = ...,
|
|
607
|
-
nextToken: str =
|
|
619
|
+
nextToken: str = ...,
|
|
608
620
|
) -> ListAccessEntriesResponseTypeDef:
|
|
609
621
|
"""
|
|
610
622
|
Lists the access entries for your cluster.
|
|
@@ -660,7 +672,7 @@ class EKSClient(BaseClient):
|
|
|
660
672
|
*,
|
|
661
673
|
maxResults: int = ...,
|
|
662
674
|
nextToken: str = ...,
|
|
663
|
-
includeStatus: Sequence[EksAnywhereSubscriptionStatusType] =
|
|
675
|
+
includeStatus: Sequence[EksAnywhereSubscriptionStatusType] = ...,
|
|
664
676
|
) -> ListEksAnywhereSubscriptionsResponseTypeDef:
|
|
665
677
|
"""
|
|
666
678
|
Displays the full description of the subscription.
|
|
@@ -691,6 +703,21 @@ class EKSClient(BaseClient):
|
|
|
691
703
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#list_identity_provider_configs)
|
|
692
704
|
"""
|
|
693
705
|
|
|
706
|
+
def list_insights(
|
|
707
|
+
self,
|
|
708
|
+
*,
|
|
709
|
+
clusterName: str,
|
|
710
|
+
filter: InsightsFilterTypeDef = ...,
|
|
711
|
+
maxResults: int = ...,
|
|
712
|
+
nextToken: str = ...,
|
|
713
|
+
) -> ListInsightsResponseTypeDef:
|
|
714
|
+
"""
|
|
715
|
+
Returns a list of all insights checked for against the specified cluster.
|
|
716
|
+
|
|
717
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client.list_insights)
|
|
718
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#list_insights)
|
|
719
|
+
"""
|
|
720
|
+
|
|
694
721
|
def list_nodegroups(
|
|
695
722
|
self, *, clusterName: str, maxResults: int = ..., nextToken: str = ...
|
|
696
723
|
) -> ListNodegroupsResponseTypeDef:
|
|
@@ -710,7 +737,7 @@ class EKSClient(BaseClient):
|
|
|
710
737
|
namespace: str = ...,
|
|
711
738
|
serviceAccount: str = ...,
|
|
712
739
|
maxResults: int = ...,
|
|
713
|
-
nextToken: str =
|
|
740
|
+
nextToken: str = ...,
|
|
714
741
|
) -> ListPodIdentityAssociationsResponseTypeDef:
|
|
715
742
|
"""
|
|
716
743
|
List the EKS Pod Identity associations in a cluster.
|
|
@@ -734,7 +761,7 @@ class EKSClient(BaseClient):
|
|
|
734
761
|
nodegroupName: str = ...,
|
|
735
762
|
addonName: str = ...,
|
|
736
763
|
nextToken: str = ...,
|
|
737
|
-
maxResults: int =
|
|
764
|
+
maxResults: int = ...,
|
|
738
765
|
) -> ListUpdatesResponseTypeDef:
|
|
739
766
|
"""
|
|
740
767
|
Lists the updates associated with an Amazon EKS resource in your Amazon Web
|
|
@@ -751,7 +778,7 @@ class EKSClient(BaseClient):
|
|
|
751
778
|
name: str,
|
|
752
779
|
connectorConfig: ConnectorConfigRequestTypeDef,
|
|
753
780
|
clientRequestToken: str = ...,
|
|
754
|
-
tags: Mapping[str, str] =
|
|
781
|
+
tags: Mapping[str, str] = ...,
|
|
755
782
|
) -> RegisterClusterResponseTypeDef:
|
|
756
783
|
"""
|
|
757
784
|
Connects a Kubernetes cluster to the Amazon EKS control plane.
|
|
@@ -784,7 +811,7 @@ class EKSClient(BaseClient):
|
|
|
784
811
|
principalArn: str,
|
|
785
812
|
kubernetesGroups: Sequence[str] = ...,
|
|
786
813
|
clientRequestToken: str = ...,
|
|
787
|
-
username: str =
|
|
814
|
+
username: str = ...,
|
|
788
815
|
) -> UpdateAccessEntryResponseTypeDef:
|
|
789
816
|
"""
|
|
790
817
|
Updates an access entry.
|
|
@@ -802,7 +829,7 @@ class EKSClient(BaseClient):
|
|
|
802
829
|
serviceAccountRoleArn: str = ...,
|
|
803
830
|
resolveConflicts: ResolveConflictsType = ...,
|
|
804
831
|
clientRequestToken: str = ...,
|
|
805
|
-
configurationValues: str =
|
|
832
|
+
configurationValues: str = ...,
|
|
806
833
|
) -> UpdateAddonResponseTypeDef:
|
|
807
834
|
"""
|
|
808
835
|
Updates an Amazon EKS add-on.
|
|
@@ -818,7 +845,7 @@ class EKSClient(BaseClient):
|
|
|
818
845
|
resourcesVpcConfig: VpcConfigRequestTypeDef = ...,
|
|
819
846
|
logging: LoggingTypeDef = ...,
|
|
820
847
|
clientRequestToken: str = ...,
|
|
821
|
-
accessConfig: UpdateAccessConfigRequestTypeDef =
|
|
848
|
+
accessConfig: UpdateAccessConfigRequestTypeDef = ...,
|
|
822
849
|
) -> UpdateClusterConfigResponseTypeDef:
|
|
823
850
|
"""
|
|
824
851
|
Updates an Amazon EKS cluster configuration.
|
|
@@ -856,7 +883,7 @@ class EKSClient(BaseClient):
|
|
|
856
883
|
taints: UpdateTaintsPayloadTypeDef = ...,
|
|
857
884
|
scalingConfig: NodegroupScalingConfigTypeDef = ...,
|
|
858
885
|
updateConfig: NodegroupUpdateConfigTypeDef = ...,
|
|
859
|
-
clientRequestToken: str =
|
|
886
|
+
clientRequestToken: str = ...,
|
|
860
887
|
) -> UpdateNodegroupConfigResponseTypeDef:
|
|
861
888
|
"""
|
|
862
889
|
Updates an Amazon EKS managed node group configuration.
|
|
@@ -874,7 +901,7 @@ class EKSClient(BaseClient):
|
|
|
874
901
|
releaseVersion: str = ...,
|
|
875
902
|
launchTemplate: LaunchTemplateSpecificationTypeDef = ...,
|
|
876
903
|
force: bool = ...,
|
|
877
|
-
clientRequestToken: str =
|
|
904
|
+
clientRequestToken: str = ...,
|
|
878
905
|
) -> UpdateNodegroupVersionResponseTypeDef:
|
|
879
906
|
"""
|
|
880
907
|
Updates the Kubernetes version or AMI version of an Amazon EKS managed node
|
|
@@ -890,7 +917,7 @@ class EKSClient(BaseClient):
|
|
|
890
917
|
clusterName: str,
|
|
891
918
|
associationId: str,
|
|
892
919
|
roleArn: str = ...,
|
|
893
|
-
clientRequestToken: str =
|
|
920
|
+
clientRequestToken: str = ...,
|
|
894
921
|
) -> UpdatePodIdentityAssociationResponseTypeDef:
|
|
895
922
|
"""
|
|
896
923
|
Updates a EKS Pod Identity association.
|
|
@@ -976,6 +1003,13 @@ class EKSClient(BaseClient):
|
|
|
976
1003
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
977
1004
|
"""
|
|
978
1005
|
|
|
1006
|
+
@overload
|
|
1007
|
+
def get_paginator(self, operation_name: Literal["list_insights"]) -> ListInsightsPaginator:
|
|
1008
|
+
"""
|
|
1009
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client.get_paginator)
|
|
1010
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
1011
|
+
"""
|
|
1012
|
+
|
|
979
1013
|
@overload
|
|
980
1014
|
def get_paginator(self, operation_name: Literal["list_nodegroups"]) -> ListNodegroupsPaginator:
|
|
981
1015
|
"""
|