mypy-boto3-eks 1.34.53__py3-none-any.whl → 1.34.118__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/__main__.py +4 -4
- mypy_boto3_eks/client.py +15 -12
- mypy_boto3_eks/client.pyi +15 -12
- mypy_boto3_eks/literals.py +13 -3
- mypy_boto3_eks/literals.pyi +13 -3
- mypy_boto3_eks/paginator.py +2 -2
- mypy_boto3_eks/paginator.pyi +2 -2
- mypy_boto3_eks/type_defs.py +192 -131
- mypy_boto3_eks/type_defs.pyi +192 -131
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.34.53.dist-info → mypy_boto3_eks-1.34.118.dist-info}/METADATA +4 -4
- mypy_boto3_eks-1.34.118.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.34.53.dist-info → mypy_boto3_eks-1.34.118.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.34.53.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.34.53.dist-info → mypy_boto3_eks-1.34.118.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.34.53.dist-info → mypy_boto3_eks-1.34.118.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/__main__.py
CHANGED
|
@@ -10,9 +10,9 @@ 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
|
-
"Version: 1.34.
|
|
15
|
-
"Builder version: 7.
|
|
13
|
+
"Type annotations for boto3.EKS 1.34.118\n"
|
|
14
|
+
"Version: 1.34.118\n"
|
|
15
|
+
"Builder version: 7.24.0\n"
|
|
16
16
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
|
|
17
17
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS\n"
|
|
18
18
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -24,7 +24,7 @@ def print_version() -> None:
|
|
|
24
24
|
"""
|
|
25
25
|
Print package version to stdout.
|
|
26
26
|
"""
|
|
27
|
-
print("1.34.
|
|
27
|
+
print("1.34.118")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|
mypy_boto3_eks/client.py
CHANGED
|
@@ -41,7 +41,8 @@ from .paginator import (
|
|
|
41
41
|
ListUpdatesPaginator,
|
|
42
42
|
)
|
|
43
43
|
from .type_defs import (
|
|
44
|
-
|
|
44
|
+
AccessScopeUnionTypeDef,
|
|
45
|
+
AddonPodIdentityAssociationsTypeDef,
|
|
45
46
|
AssociateAccessPolicyResponseTypeDef,
|
|
46
47
|
AssociateEncryptionConfigResponseTypeDef,
|
|
47
48
|
AssociateIdentityProviderConfigResponseTypeDef,
|
|
@@ -75,8 +76,8 @@ from .type_defs import (
|
|
|
75
76
|
DescribeUpdateResponseTypeDef,
|
|
76
77
|
DisassociateIdentityProviderConfigResponseTypeDef,
|
|
77
78
|
EksAnywhereSubscriptionTermTypeDef,
|
|
78
|
-
|
|
79
|
-
|
|
79
|
+
EncryptionConfigUnionTypeDef,
|
|
80
|
+
FargateProfileSelectorUnionTypeDef,
|
|
80
81
|
IdentityProviderConfigTypeDef,
|
|
81
82
|
InsightsFilterTypeDef,
|
|
82
83
|
KubernetesNetworkConfigRequestTypeDef,
|
|
@@ -94,13 +95,13 @@ from .type_defs import (
|
|
|
94
95
|
ListPodIdentityAssociationsResponseTypeDef,
|
|
95
96
|
ListTagsForResourceResponseTypeDef,
|
|
96
97
|
ListUpdatesResponseTypeDef,
|
|
97
|
-
|
|
98
|
+
LoggingUnionTypeDef,
|
|
98
99
|
NodegroupScalingConfigTypeDef,
|
|
99
100
|
NodegroupUpdateConfigTypeDef,
|
|
100
101
|
OidcIdentityProviderConfigRequestTypeDef,
|
|
101
102
|
OutpostConfigRequestTypeDef,
|
|
102
103
|
RegisterClusterResponseTypeDef,
|
|
103
|
-
|
|
104
|
+
RemoteAccessConfigUnionTypeDef,
|
|
104
105
|
TaintTypeDef,
|
|
105
106
|
UpdateAccessConfigRequestTypeDef,
|
|
106
107
|
UpdateAccessEntryResponseTypeDef,
|
|
@@ -182,7 +183,7 @@ class EKSClient(BaseClient):
|
|
|
182
183
|
clusterName: str,
|
|
183
184
|
principalArn: str,
|
|
184
185
|
policyArn: str,
|
|
185
|
-
accessScope:
|
|
186
|
+
accessScope: AccessScopeUnionTypeDef,
|
|
186
187
|
) -> AssociateAccessPolicyResponseTypeDef:
|
|
187
188
|
"""
|
|
188
189
|
Associates an access policy and its scope to an access entry.
|
|
@@ -195,7 +196,7 @@ class EKSClient(BaseClient):
|
|
|
195
196
|
self,
|
|
196
197
|
*,
|
|
197
198
|
clusterName: str,
|
|
198
|
-
encryptionConfig: Sequence[
|
|
199
|
+
encryptionConfig: Sequence[EncryptionConfigUnionTypeDef],
|
|
199
200
|
clientRequestToken: str = ...,
|
|
200
201
|
) -> AssociateEncryptionConfigResponseTypeDef:
|
|
201
202
|
"""
|
|
@@ -265,6 +266,7 @@ class EKSClient(BaseClient):
|
|
|
265
266
|
clientRequestToken: str = ...,
|
|
266
267
|
tags: Mapping[str, str] = ...,
|
|
267
268
|
configurationValues: str = ...,
|
|
269
|
+
podIdentityAssociations: Sequence[AddonPodIdentityAssociationsTypeDef] = ...,
|
|
268
270
|
) -> CreateAddonResponseTypeDef:
|
|
269
271
|
"""
|
|
270
272
|
Creates an Amazon EKS add-on.
|
|
@@ -281,10 +283,10 @@ class EKSClient(BaseClient):
|
|
|
281
283
|
resourcesVpcConfig: VpcConfigRequestTypeDef,
|
|
282
284
|
version: str = ...,
|
|
283
285
|
kubernetesNetworkConfig: KubernetesNetworkConfigRequestTypeDef = ...,
|
|
284
|
-
logging:
|
|
286
|
+
logging: LoggingUnionTypeDef = ...,
|
|
285
287
|
clientRequestToken: str = ...,
|
|
286
288
|
tags: Mapping[str, str] = ...,
|
|
287
|
-
encryptionConfig: Sequence[
|
|
289
|
+
encryptionConfig: Sequence[EncryptionConfigUnionTypeDef] = ...,
|
|
288
290
|
outpostConfig: OutpostConfigRequestTypeDef = ...,
|
|
289
291
|
accessConfig: CreateAccessConfigRequestTypeDef = ...,
|
|
290
292
|
) -> CreateClusterResponseTypeDef:
|
|
@@ -320,7 +322,7 @@ class EKSClient(BaseClient):
|
|
|
320
322
|
clusterName: str,
|
|
321
323
|
podExecutionRoleArn: str,
|
|
322
324
|
subnets: Sequence[str] = ...,
|
|
323
|
-
selectors: Sequence[
|
|
325
|
+
selectors: Sequence[FargateProfileSelectorUnionTypeDef] = ...,
|
|
324
326
|
clientRequestToken: str = ...,
|
|
325
327
|
tags: Mapping[str, str] = ...,
|
|
326
328
|
) -> CreateFargateProfileResponseTypeDef:
|
|
@@ -342,7 +344,7 @@ class EKSClient(BaseClient):
|
|
|
342
344
|
diskSize: int = ...,
|
|
343
345
|
instanceTypes: Sequence[str] = ...,
|
|
344
346
|
amiType: AMITypesType = ...,
|
|
345
|
-
remoteAccess:
|
|
347
|
+
remoteAccess: RemoteAccessConfigUnionTypeDef = ...,
|
|
346
348
|
labels: Mapping[str, str] = ...,
|
|
347
349
|
taints: Sequence[TaintTypeDef] = ...,
|
|
348
350
|
tags: Mapping[str, str] = ...,
|
|
@@ -833,6 +835,7 @@ class EKSClient(BaseClient):
|
|
|
833
835
|
resolveConflicts: ResolveConflictsType = ...,
|
|
834
836
|
clientRequestToken: str = ...,
|
|
835
837
|
configurationValues: str = ...,
|
|
838
|
+
podIdentityAssociations: Sequence[AddonPodIdentityAssociationsTypeDef] = ...,
|
|
836
839
|
) -> UpdateAddonResponseTypeDef:
|
|
837
840
|
"""
|
|
838
841
|
Updates an Amazon EKS add-on.
|
|
@@ -846,7 +849,7 @@ class EKSClient(BaseClient):
|
|
|
846
849
|
*,
|
|
847
850
|
name: str,
|
|
848
851
|
resourcesVpcConfig: VpcConfigRequestTypeDef = ...,
|
|
849
|
-
logging:
|
|
852
|
+
logging: LoggingUnionTypeDef = ...,
|
|
850
853
|
clientRequestToken: str = ...,
|
|
851
854
|
accessConfig: UpdateAccessConfigRequestTypeDef = ...,
|
|
852
855
|
) -> UpdateClusterConfigResponseTypeDef:
|
mypy_boto3_eks/client.pyi
CHANGED
|
@@ -41,7 +41,8 @@ from .paginator import (
|
|
|
41
41
|
ListUpdatesPaginator,
|
|
42
42
|
)
|
|
43
43
|
from .type_defs import (
|
|
44
|
-
|
|
44
|
+
AccessScopeUnionTypeDef,
|
|
45
|
+
AddonPodIdentityAssociationsTypeDef,
|
|
45
46
|
AssociateAccessPolicyResponseTypeDef,
|
|
46
47
|
AssociateEncryptionConfigResponseTypeDef,
|
|
47
48
|
AssociateIdentityProviderConfigResponseTypeDef,
|
|
@@ -75,8 +76,8 @@ from .type_defs import (
|
|
|
75
76
|
DescribeUpdateResponseTypeDef,
|
|
76
77
|
DisassociateIdentityProviderConfigResponseTypeDef,
|
|
77
78
|
EksAnywhereSubscriptionTermTypeDef,
|
|
78
|
-
|
|
79
|
-
|
|
79
|
+
EncryptionConfigUnionTypeDef,
|
|
80
|
+
FargateProfileSelectorUnionTypeDef,
|
|
80
81
|
IdentityProviderConfigTypeDef,
|
|
81
82
|
InsightsFilterTypeDef,
|
|
82
83
|
KubernetesNetworkConfigRequestTypeDef,
|
|
@@ -94,13 +95,13 @@ from .type_defs import (
|
|
|
94
95
|
ListPodIdentityAssociationsResponseTypeDef,
|
|
95
96
|
ListTagsForResourceResponseTypeDef,
|
|
96
97
|
ListUpdatesResponseTypeDef,
|
|
97
|
-
|
|
98
|
+
LoggingUnionTypeDef,
|
|
98
99
|
NodegroupScalingConfigTypeDef,
|
|
99
100
|
NodegroupUpdateConfigTypeDef,
|
|
100
101
|
OidcIdentityProviderConfigRequestTypeDef,
|
|
101
102
|
OutpostConfigRequestTypeDef,
|
|
102
103
|
RegisterClusterResponseTypeDef,
|
|
103
|
-
|
|
104
|
+
RemoteAccessConfigUnionTypeDef,
|
|
104
105
|
TaintTypeDef,
|
|
105
106
|
UpdateAccessConfigRequestTypeDef,
|
|
106
107
|
UpdateAccessEntryResponseTypeDef,
|
|
@@ -179,7 +180,7 @@ class EKSClient(BaseClient):
|
|
|
179
180
|
clusterName: str,
|
|
180
181
|
principalArn: str,
|
|
181
182
|
policyArn: str,
|
|
182
|
-
accessScope:
|
|
183
|
+
accessScope: AccessScopeUnionTypeDef,
|
|
183
184
|
) -> AssociateAccessPolicyResponseTypeDef:
|
|
184
185
|
"""
|
|
185
186
|
Associates an access policy and its scope to an access entry.
|
|
@@ -192,7 +193,7 @@ class EKSClient(BaseClient):
|
|
|
192
193
|
self,
|
|
193
194
|
*,
|
|
194
195
|
clusterName: str,
|
|
195
|
-
encryptionConfig: Sequence[
|
|
196
|
+
encryptionConfig: Sequence[EncryptionConfigUnionTypeDef],
|
|
196
197
|
clientRequestToken: str = ...,
|
|
197
198
|
) -> AssociateEncryptionConfigResponseTypeDef:
|
|
198
199
|
"""
|
|
@@ -262,6 +263,7 @@ class EKSClient(BaseClient):
|
|
|
262
263
|
clientRequestToken: str = ...,
|
|
263
264
|
tags: Mapping[str, str] = ...,
|
|
264
265
|
configurationValues: str = ...,
|
|
266
|
+
podIdentityAssociations: Sequence[AddonPodIdentityAssociationsTypeDef] = ...,
|
|
265
267
|
) -> CreateAddonResponseTypeDef:
|
|
266
268
|
"""
|
|
267
269
|
Creates an Amazon EKS add-on.
|
|
@@ -278,10 +280,10 @@ class EKSClient(BaseClient):
|
|
|
278
280
|
resourcesVpcConfig: VpcConfigRequestTypeDef,
|
|
279
281
|
version: str = ...,
|
|
280
282
|
kubernetesNetworkConfig: KubernetesNetworkConfigRequestTypeDef = ...,
|
|
281
|
-
logging:
|
|
283
|
+
logging: LoggingUnionTypeDef = ...,
|
|
282
284
|
clientRequestToken: str = ...,
|
|
283
285
|
tags: Mapping[str, str] = ...,
|
|
284
|
-
encryptionConfig: Sequence[
|
|
286
|
+
encryptionConfig: Sequence[EncryptionConfigUnionTypeDef] = ...,
|
|
285
287
|
outpostConfig: OutpostConfigRequestTypeDef = ...,
|
|
286
288
|
accessConfig: CreateAccessConfigRequestTypeDef = ...,
|
|
287
289
|
) -> CreateClusterResponseTypeDef:
|
|
@@ -317,7 +319,7 @@ class EKSClient(BaseClient):
|
|
|
317
319
|
clusterName: str,
|
|
318
320
|
podExecutionRoleArn: str,
|
|
319
321
|
subnets: Sequence[str] = ...,
|
|
320
|
-
selectors: Sequence[
|
|
322
|
+
selectors: Sequence[FargateProfileSelectorUnionTypeDef] = ...,
|
|
321
323
|
clientRequestToken: str = ...,
|
|
322
324
|
tags: Mapping[str, str] = ...,
|
|
323
325
|
) -> CreateFargateProfileResponseTypeDef:
|
|
@@ -339,7 +341,7 @@ class EKSClient(BaseClient):
|
|
|
339
341
|
diskSize: int = ...,
|
|
340
342
|
instanceTypes: Sequence[str] = ...,
|
|
341
343
|
amiType: AMITypesType = ...,
|
|
342
|
-
remoteAccess:
|
|
344
|
+
remoteAccess: RemoteAccessConfigUnionTypeDef = ...,
|
|
343
345
|
labels: Mapping[str, str] = ...,
|
|
344
346
|
taints: Sequence[TaintTypeDef] = ...,
|
|
345
347
|
tags: Mapping[str, str] = ...,
|
|
@@ -830,6 +832,7 @@ class EKSClient(BaseClient):
|
|
|
830
832
|
resolveConflicts: ResolveConflictsType = ...,
|
|
831
833
|
clientRequestToken: str = ...,
|
|
832
834
|
configurationValues: str = ...,
|
|
835
|
+
podIdentityAssociations: Sequence[AddonPodIdentityAssociationsTypeDef] = ...,
|
|
833
836
|
) -> UpdateAddonResponseTypeDef:
|
|
834
837
|
"""
|
|
835
838
|
Updates an Amazon EKS add-on.
|
|
@@ -843,7 +846,7 @@ class EKSClient(BaseClient):
|
|
|
843
846
|
*,
|
|
844
847
|
name: str,
|
|
845
848
|
resourcesVpcConfig: VpcConfigRequestTypeDef = ...,
|
|
846
|
-
logging:
|
|
849
|
+
logging: LoggingUnionTypeDef = ...,
|
|
847
850
|
clientRequestToken: str = ...,
|
|
848
851
|
accessConfig: UpdateAccessConfigRequestTypeDef = ...,
|
|
849
852
|
) -> UpdateClusterConfigResponseTypeDef:
|
mypy_boto3_eks/literals.py
CHANGED
|
@@ -33,6 +33,7 @@ __all__ = (
|
|
|
33
33
|
"ClusterDeletedWaiterName",
|
|
34
34
|
"ClusterIssueCodeType",
|
|
35
35
|
"ClusterStatusType",
|
|
36
|
+
"ConfigStatusType",
|
|
36
37
|
"ConnectorConfigProviderType",
|
|
37
38
|
"DescribeAddonVersionsPaginatorName",
|
|
38
39
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
@@ -66,7 +67,6 @@ __all__ = (
|
|
|
66
67
|
"UpdateParamTypeType",
|
|
67
68
|
"UpdateStatusType",
|
|
68
69
|
"UpdateTypeType",
|
|
69
|
-
"configStatusType",
|
|
70
70
|
"EKSServiceName",
|
|
71
71
|
"ServiceName",
|
|
72
72
|
"ResourceServiceName",
|
|
@@ -96,6 +96,8 @@ AddonActiveWaiterName = Literal["addon_active"]
|
|
|
96
96
|
AddonDeletedWaiterName = Literal["addon_deleted"]
|
|
97
97
|
AddonIssueCodeType = Literal[
|
|
98
98
|
"AccessDenied",
|
|
99
|
+
"AddonPermissionFailure",
|
|
100
|
+
"AddonSubscriptionNeeded",
|
|
99
101
|
"AdmissionRequestDenied",
|
|
100
102
|
"ClusterUnreachable",
|
|
101
103
|
"ConfigurationConflict",
|
|
@@ -141,6 +143,7 @@ ClusterIssueCodeType = Literal[
|
|
|
141
143
|
"VpcNotFound",
|
|
142
144
|
]
|
|
143
145
|
ClusterStatusType = Literal["ACTIVE", "CREATING", "DELETING", "FAILED", "PENDING", "UPDATING"]
|
|
146
|
+
ConfigStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
144
147
|
ConnectorConfigProviderType = Literal[
|
|
145
148
|
"AKS", "ANTHOS", "EC2", "EKS_ANYWHERE", "GKE", "OPENSHIFT", "OTHER", "RANCHER", "TANZU"
|
|
146
149
|
]
|
|
@@ -205,6 +208,7 @@ NodegroupIssueCodeType = Literal[
|
|
|
205
208
|
"Ec2LaunchTemplateInvalidConfiguration",
|
|
206
209
|
"Ec2LaunchTemplateMaxLimitExceeded",
|
|
207
210
|
"Ec2LaunchTemplateNotFound",
|
|
211
|
+
"Ec2LaunchTemplateVersionMaxLimitExceeded",
|
|
208
212
|
"Ec2LaunchTemplateVersionMismatch",
|
|
209
213
|
"Ec2SecurityGroupDeletionFailure",
|
|
210
214
|
"Ec2SecurityGroupNotFound",
|
|
@@ -219,6 +223,7 @@ NodegroupIssueCodeType = Literal[
|
|
|
219
223
|
"InstanceLimitExceeded",
|
|
220
224
|
"InsufficientFreeAddresses",
|
|
221
225
|
"InternalFailure",
|
|
226
|
+
"KubernetesLabelInvalid",
|
|
222
227
|
"LimitExceeded",
|
|
223
228
|
"NodeCreationFailure",
|
|
224
229
|
"NodeTerminationFailure",
|
|
@@ -250,6 +255,7 @@ UpdateParamTypeType = Literal[
|
|
|
250
255
|
"MaxUnavailablePercentage",
|
|
251
256
|
"MinSize",
|
|
252
257
|
"PlatformVersion",
|
|
258
|
+
"PodIdentityAssociations",
|
|
253
259
|
"PublicAccessCidrs",
|
|
254
260
|
"ReleaseVersion",
|
|
255
261
|
"ResolveConflicts",
|
|
@@ -273,7 +279,6 @@ UpdateTypeType = Literal[
|
|
|
273
279
|
"VersionUpdate",
|
|
274
280
|
"VpcConfigUpdate",
|
|
275
281
|
]
|
|
276
|
-
configStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
277
282
|
EKSServiceName = Literal["eks"]
|
|
278
283
|
ServiceName = Literal[
|
|
279
284
|
"accessanalyzer",
|
|
@@ -346,6 +351,7 @@ ServiceName = Literal[
|
|
|
346
351
|
"codebuild",
|
|
347
352
|
"codecatalyst",
|
|
348
353
|
"codecommit",
|
|
354
|
+
"codeconnections",
|
|
349
355
|
"codedeploy",
|
|
350
356
|
"codeguru-reviewer",
|
|
351
357
|
"codeguru-security",
|
|
@@ -366,6 +372,7 @@ ServiceName = Literal[
|
|
|
366
372
|
"connectcampaigns",
|
|
367
373
|
"connectcases",
|
|
368
374
|
"connectparticipant",
|
|
375
|
+
"controlcatalog",
|
|
369
376
|
"controltower",
|
|
370
377
|
"cost-optimization-hub",
|
|
371
378
|
"cur",
|
|
@@ -376,6 +383,7 @@ ServiceName = Literal[
|
|
|
376
383
|
"datasync",
|
|
377
384
|
"datazone",
|
|
378
385
|
"dax",
|
|
386
|
+
"deadline",
|
|
379
387
|
"detective",
|
|
380
388
|
"devicefarm",
|
|
381
389
|
"devops-guru",
|
|
@@ -444,7 +452,6 @@ ServiceName = Literal[
|
|
|
444
452
|
"iot",
|
|
445
453
|
"iot-data",
|
|
446
454
|
"iot-jobs-data",
|
|
447
|
-
"iot-roborunner",
|
|
448
455
|
"iot1click-devices",
|
|
449
456
|
"iot1click-projects",
|
|
450
457
|
"iotanalytics",
|
|
@@ -494,6 +501,7 @@ ServiceName = Literal[
|
|
|
494
501
|
"m2",
|
|
495
502
|
"machinelearning",
|
|
496
503
|
"macie2",
|
|
504
|
+
"mailmanager",
|
|
497
505
|
"managedblockchain",
|
|
498
506
|
"managedblockchain-query",
|
|
499
507
|
"marketplace-agreement",
|
|
@@ -581,6 +589,7 @@ ServiceName = Literal[
|
|
|
581
589
|
"route53-recovery-control-config",
|
|
582
590
|
"route53-recovery-readiness",
|
|
583
591
|
"route53domains",
|
|
592
|
+
"route53profiles",
|
|
584
593
|
"route53resolver",
|
|
585
594
|
"rum",
|
|
586
595
|
"s3",
|
|
@@ -632,6 +641,7 @@ ServiceName = Literal[
|
|
|
632
641
|
"swf",
|
|
633
642
|
"synthetics",
|
|
634
643
|
"textract",
|
|
644
|
+
"timestream-influxdb",
|
|
635
645
|
"timestream-query",
|
|
636
646
|
"timestream-write",
|
|
637
647
|
"tnb",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -33,6 +33,7 @@ __all__ = (
|
|
|
33
33
|
"ClusterDeletedWaiterName",
|
|
34
34
|
"ClusterIssueCodeType",
|
|
35
35
|
"ClusterStatusType",
|
|
36
|
+
"ConfigStatusType",
|
|
36
37
|
"ConnectorConfigProviderType",
|
|
37
38
|
"DescribeAddonVersionsPaginatorName",
|
|
38
39
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
@@ -66,7 +67,6 @@ __all__ = (
|
|
|
66
67
|
"UpdateParamTypeType",
|
|
67
68
|
"UpdateStatusType",
|
|
68
69
|
"UpdateTypeType",
|
|
69
|
-
"configStatusType",
|
|
70
70
|
"EKSServiceName",
|
|
71
71
|
"ServiceName",
|
|
72
72
|
"ResourceServiceName",
|
|
@@ -96,6 +96,8 @@ AddonActiveWaiterName = Literal["addon_active"]
|
|
|
96
96
|
AddonDeletedWaiterName = Literal["addon_deleted"]
|
|
97
97
|
AddonIssueCodeType = Literal[
|
|
98
98
|
"AccessDenied",
|
|
99
|
+
"AddonPermissionFailure",
|
|
100
|
+
"AddonSubscriptionNeeded",
|
|
99
101
|
"AdmissionRequestDenied",
|
|
100
102
|
"ClusterUnreachable",
|
|
101
103
|
"ConfigurationConflict",
|
|
@@ -141,6 +143,7 @@ ClusterIssueCodeType = Literal[
|
|
|
141
143
|
"VpcNotFound",
|
|
142
144
|
]
|
|
143
145
|
ClusterStatusType = Literal["ACTIVE", "CREATING", "DELETING", "FAILED", "PENDING", "UPDATING"]
|
|
146
|
+
ConfigStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
144
147
|
ConnectorConfigProviderType = Literal[
|
|
145
148
|
"AKS", "ANTHOS", "EC2", "EKS_ANYWHERE", "GKE", "OPENSHIFT", "OTHER", "RANCHER", "TANZU"
|
|
146
149
|
]
|
|
@@ -205,6 +208,7 @@ NodegroupIssueCodeType = Literal[
|
|
|
205
208
|
"Ec2LaunchTemplateInvalidConfiguration",
|
|
206
209
|
"Ec2LaunchTemplateMaxLimitExceeded",
|
|
207
210
|
"Ec2LaunchTemplateNotFound",
|
|
211
|
+
"Ec2LaunchTemplateVersionMaxLimitExceeded",
|
|
208
212
|
"Ec2LaunchTemplateVersionMismatch",
|
|
209
213
|
"Ec2SecurityGroupDeletionFailure",
|
|
210
214
|
"Ec2SecurityGroupNotFound",
|
|
@@ -219,6 +223,7 @@ NodegroupIssueCodeType = Literal[
|
|
|
219
223
|
"InstanceLimitExceeded",
|
|
220
224
|
"InsufficientFreeAddresses",
|
|
221
225
|
"InternalFailure",
|
|
226
|
+
"KubernetesLabelInvalid",
|
|
222
227
|
"LimitExceeded",
|
|
223
228
|
"NodeCreationFailure",
|
|
224
229
|
"NodeTerminationFailure",
|
|
@@ -250,6 +255,7 @@ UpdateParamTypeType = Literal[
|
|
|
250
255
|
"MaxUnavailablePercentage",
|
|
251
256
|
"MinSize",
|
|
252
257
|
"PlatformVersion",
|
|
258
|
+
"PodIdentityAssociations",
|
|
253
259
|
"PublicAccessCidrs",
|
|
254
260
|
"ReleaseVersion",
|
|
255
261
|
"ResolveConflicts",
|
|
@@ -273,7 +279,6 @@ UpdateTypeType = Literal[
|
|
|
273
279
|
"VersionUpdate",
|
|
274
280
|
"VpcConfigUpdate",
|
|
275
281
|
]
|
|
276
|
-
configStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
277
282
|
EKSServiceName = Literal["eks"]
|
|
278
283
|
ServiceName = Literal[
|
|
279
284
|
"accessanalyzer",
|
|
@@ -346,6 +351,7 @@ ServiceName = Literal[
|
|
|
346
351
|
"codebuild",
|
|
347
352
|
"codecatalyst",
|
|
348
353
|
"codecommit",
|
|
354
|
+
"codeconnections",
|
|
349
355
|
"codedeploy",
|
|
350
356
|
"codeguru-reviewer",
|
|
351
357
|
"codeguru-security",
|
|
@@ -366,6 +372,7 @@ ServiceName = Literal[
|
|
|
366
372
|
"connectcampaigns",
|
|
367
373
|
"connectcases",
|
|
368
374
|
"connectparticipant",
|
|
375
|
+
"controlcatalog",
|
|
369
376
|
"controltower",
|
|
370
377
|
"cost-optimization-hub",
|
|
371
378
|
"cur",
|
|
@@ -376,6 +383,7 @@ ServiceName = Literal[
|
|
|
376
383
|
"datasync",
|
|
377
384
|
"datazone",
|
|
378
385
|
"dax",
|
|
386
|
+
"deadline",
|
|
379
387
|
"detective",
|
|
380
388
|
"devicefarm",
|
|
381
389
|
"devops-guru",
|
|
@@ -444,7 +452,6 @@ ServiceName = Literal[
|
|
|
444
452
|
"iot",
|
|
445
453
|
"iot-data",
|
|
446
454
|
"iot-jobs-data",
|
|
447
|
-
"iot-roborunner",
|
|
448
455
|
"iot1click-devices",
|
|
449
456
|
"iot1click-projects",
|
|
450
457
|
"iotanalytics",
|
|
@@ -494,6 +501,7 @@ ServiceName = Literal[
|
|
|
494
501
|
"m2",
|
|
495
502
|
"machinelearning",
|
|
496
503
|
"macie2",
|
|
504
|
+
"mailmanager",
|
|
497
505
|
"managedblockchain",
|
|
498
506
|
"managedblockchain-query",
|
|
499
507
|
"marketplace-agreement",
|
|
@@ -581,6 +589,7 @@ ServiceName = Literal[
|
|
|
581
589
|
"route53-recovery-control-config",
|
|
582
590
|
"route53-recovery-readiness",
|
|
583
591
|
"route53domains",
|
|
592
|
+
"route53profiles",
|
|
584
593
|
"route53resolver",
|
|
585
594
|
"rum",
|
|
586
595
|
"s3",
|
|
@@ -632,6 +641,7 @@ ServiceName = Literal[
|
|
|
632
641
|
"swf",
|
|
633
642
|
"synthetics",
|
|
634
643
|
"textract",
|
|
644
|
+
"timestream-influxdb",
|
|
635
645
|
"timestream-query",
|
|
636
646
|
"timestream-write",
|
|
637
647
|
"tnb",
|
mypy_boto3_eks/paginator.py
CHANGED
|
@@ -55,7 +55,7 @@ from .type_defs import (
|
|
|
55
55
|
ListAccessEntriesResponseTypeDef,
|
|
56
56
|
ListAccessPoliciesResponseTypeDef,
|
|
57
57
|
ListAddonsResponseTypeDef,
|
|
58
|
-
|
|
58
|
+
ListAssociatedAccessPoliciesResponseTypeDef,
|
|
59
59
|
ListClustersResponseTypeDef,
|
|
60
60
|
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
61
61
|
ListFargateProfilesResponseTypeDef,
|
|
@@ -172,7 +172,7 @@ class ListAssociatedAccessPoliciesPaginator(Paginator):
|
|
|
172
172
|
|
|
173
173
|
def paginate(
|
|
174
174
|
self, *, clusterName: str, principalArn: str, PaginationConfig: PaginatorConfigTypeDef = ...
|
|
175
|
-
) -> _PageIterator[
|
|
175
|
+
) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
|
|
176
176
|
"""
|
|
177
177
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
|
|
178
178
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
|
mypy_boto3_eks/paginator.pyi
CHANGED
|
@@ -55,7 +55,7 @@ from .type_defs import (
|
|
|
55
55
|
ListAccessEntriesResponseTypeDef,
|
|
56
56
|
ListAccessPoliciesResponseTypeDef,
|
|
57
57
|
ListAddonsResponseTypeDef,
|
|
58
|
-
|
|
58
|
+
ListAssociatedAccessPoliciesResponseTypeDef,
|
|
59
59
|
ListClustersResponseTypeDef,
|
|
60
60
|
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
61
61
|
ListFargateProfilesResponseTypeDef,
|
|
@@ -166,7 +166,7 @@ class ListAssociatedAccessPoliciesPaginator(Paginator):
|
|
|
166
166
|
|
|
167
167
|
def paginate(
|
|
168
168
|
self, *, clusterName: str, principalArn: str, PaginationConfig: PaginatorConfigTypeDef = ...
|
|
169
|
-
) -> _PageIterator[
|
|
169
|
+
) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
|
|
170
170
|
"""
|
|
171
171
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
|
|
172
172
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
|