mypy-boto3-eks 1.34.73__py3-none-any.whl → 1.34.129__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 +18 -5
- mypy_boto3_eks/literals.pyi +18 -5
- mypy_boto3_eks/paginator.py +2 -2
- mypy_boto3_eks/paginator.pyi +2 -2
- mypy_boto3_eks/type_defs.py +221 -142
- mypy_boto3_eks/type_defs.pyi +221 -142
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.34.73.dist-info → mypy_boto3_eks-1.34.129.dist-info}/METADATA +4 -4
- mypy_boto3_eks-1.34.129.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.34.73.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.34.73.dist-info → mypy_boto3_eks-1.34.129.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.34.73.dist-info → mypy_boto3_eks-1.34.129.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.34.73.dist-info → mypy_boto3_eks-1.34.129.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.129\n"
|
|
14
|
+
"Version: 1.34.129\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.129")
|
|
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",
|
|
@@ -41,6 +42,7 @@ __all__ = (
|
|
|
41
42
|
"ErrorCodeType",
|
|
42
43
|
"FargateProfileActiveWaiterName",
|
|
43
44
|
"FargateProfileDeletedWaiterName",
|
|
45
|
+
"FargateProfileIssueCodeType",
|
|
44
46
|
"FargateProfileStatusType",
|
|
45
47
|
"InsightStatusValueType",
|
|
46
48
|
"IpFamilyType",
|
|
@@ -66,7 +68,6 @@ __all__ = (
|
|
|
66
68
|
"UpdateParamTypeType",
|
|
67
69
|
"UpdateStatusType",
|
|
68
70
|
"UpdateTypeType",
|
|
69
|
-
"configStatusType",
|
|
70
71
|
"EKSServiceName",
|
|
71
72
|
"ServiceName",
|
|
72
73
|
"ResourceServiceName",
|
|
@@ -96,6 +97,8 @@ AddonActiveWaiterName = Literal["addon_active"]
|
|
|
96
97
|
AddonDeletedWaiterName = Literal["addon_deleted"]
|
|
97
98
|
AddonIssueCodeType = Literal[
|
|
98
99
|
"AccessDenied",
|
|
100
|
+
"AddonPermissionFailure",
|
|
101
|
+
"AddonSubscriptionNeeded",
|
|
99
102
|
"AdmissionRequestDenied",
|
|
100
103
|
"ClusterUnreachable",
|
|
101
104
|
"ConfigurationConflict",
|
|
@@ -141,6 +144,7 @@ ClusterIssueCodeType = Literal[
|
|
|
141
144
|
"VpcNotFound",
|
|
142
145
|
]
|
|
143
146
|
ClusterStatusType = Literal["ACTIVE", "CREATING", "DELETING", "FAILED", "PENDING", "UPDATING"]
|
|
147
|
+
ConfigStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
144
148
|
ConnectorConfigProviderType = Literal[
|
|
145
149
|
"AKS", "ANTHOS", "EC2", "EKS_ANYWHERE", "GKE", "OPENSHIFT", "OTHER", "RANCHER", "TANZU"
|
|
146
150
|
]
|
|
@@ -171,6 +175,9 @@ ErrorCodeType = Literal[
|
|
|
171
175
|
]
|
|
172
176
|
FargateProfileActiveWaiterName = Literal["fargate_profile_active"]
|
|
173
177
|
FargateProfileDeletedWaiterName = Literal["fargate_profile_deleted"]
|
|
178
|
+
FargateProfileIssueCodeType = Literal[
|
|
179
|
+
"AccessDenied", "ClusterUnreachable", "InternalFailure", "PodExecutionRoleAlreadyInUse"
|
|
180
|
+
]
|
|
174
181
|
FargateProfileStatusType = Literal[
|
|
175
182
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
|
|
176
183
|
]
|
|
@@ -252,6 +259,7 @@ UpdateParamTypeType = Literal[
|
|
|
252
259
|
"MaxUnavailablePercentage",
|
|
253
260
|
"MinSize",
|
|
254
261
|
"PlatformVersion",
|
|
262
|
+
"PodIdentityAssociations",
|
|
255
263
|
"PublicAccessCidrs",
|
|
256
264
|
"ReleaseVersion",
|
|
257
265
|
"ResolveConflicts",
|
|
@@ -275,14 +283,12 @@ UpdateTypeType = Literal[
|
|
|
275
283
|
"VersionUpdate",
|
|
276
284
|
"VpcConfigUpdate",
|
|
277
285
|
]
|
|
278
|
-
configStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
279
286
|
EKSServiceName = Literal["eks"]
|
|
280
287
|
ServiceName = Literal[
|
|
281
288
|
"accessanalyzer",
|
|
282
289
|
"account",
|
|
283
290
|
"acm",
|
|
284
291
|
"acm-pca",
|
|
285
|
-
"alexaforbusiness",
|
|
286
292
|
"amp",
|
|
287
293
|
"amplify",
|
|
288
294
|
"amplifybackend",
|
|
@@ -297,11 +303,13 @@ ServiceName = Literal[
|
|
|
297
303
|
"appintegrations",
|
|
298
304
|
"application-autoscaling",
|
|
299
305
|
"application-insights",
|
|
306
|
+
"application-signals",
|
|
300
307
|
"applicationcostprofiler",
|
|
301
308
|
"appmesh",
|
|
302
309
|
"apprunner",
|
|
303
310
|
"appstream",
|
|
304
311
|
"appsync",
|
|
312
|
+
"apptest",
|
|
305
313
|
"arc-zonal-shift",
|
|
306
314
|
"artifact",
|
|
307
315
|
"athena",
|
|
@@ -311,7 +319,6 @@ ServiceName = Literal[
|
|
|
311
319
|
"b2bi",
|
|
312
320
|
"backup",
|
|
313
321
|
"backup-gateway",
|
|
314
|
-
"backupstorage",
|
|
315
322
|
"batch",
|
|
316
323
|
"bcm-data-exports",
|
|
317
324
|
"bedrock",
|
|
@@ -348,6 +355,7 @@ ServiceName = Literal[
|
|
|
348
355
|
"codebuild",
|
|
349
356
|
"codecatalyst",
|
|
350
357
|
"codecommit",
|
|
358
|
+
"codeconnections",
|
|
351
359
|
"codedeploy",
|
|
352
360
|
"codeguru-reviewer",
|
|
353
361
|
"codeguru-security",
|
|
@@ -368,6 +376,7 @@ ServiceName = Literal[
|
|
|
368
376
|
"connectcampaigns",
|
|
369
377
|
"connectcases",
|
|
370
378
|
"connectparticipant",
|
|
379
|
+
"controlcatalog",
|
|
371
380
|
"controltower",
|
|
372
381
|
"cost-optimization-hub",
|
|
373
382
|
"cur",
|
|
@@ -378,6 +387,7 @@ ServiceName = Literal[
|
|
|
378
387
|
"datasync",
|
|
379
388
|
"datazone",
|
|
380
389
|
"dax",
|
|
390
|
+
"deadline",
|
|
381
391
|
"detective",
|
|
382
392
|
"devicefarm",
|
|
383
393
|
"devops-guru",
|
|
@@ -434,7 +444,6 @@ ServiceName = Literal[
|
|
|
434
444
|
"guardduty",
|
|
435
445
|
"health",
|
|
436
446
|
"healthlake",
|
|
437
|
-
"honeycode",
|
|
438
447
|
"iam",
|
|
439
448
|
"identitystore",
|
|
440
449
|
"imagebuilder",
|
|
@@ -495,6 +504,7 @@ ServiceName = Literal[
|
|
|
495
504
|
"m2",
|
|
496
505
|
"machinelearning",
|
|
497
506
|
"macie2",
|
|
507
|
+
"mailmanager",
|
|
498
508
|
"managedblockchain",
|
|
499
509
|
"managedblockchain-query",
|
|
500
510
|
"marketplace-agreement",
|
|
@@ -544,6 +554,7 @@ ServiceName = Literal[
|
|
|
544
554
|
"payment-cryptography",
|
|
545
555
|
"payment-cryptography-data",
|
|
546
556
|
"pca-connector-ad",
|
|
557
|
+
"pca-connector-scep",
|
|
547
558
|
"personalize",
|
|
548
559
|
"personalize-events",
|
|
549
560
|
"personalize-runtime",
|
|
@@ -582,6 +593,7 @@ ServiceName = Literal[
|
|
|
582
593
|
"route53-recovery-control-config",
|
|
583
594
|
"route53-recovery-readiness",
|
|
584
595
|
"route53domains",
|
|
596
|
+
"route53profiles",
|
|
585
597
|
"route53resolver",
|
|
586
598
|
"rum",
|
|
587
599
|
"s3",
|
|
@@ -632,6 +644,7 @@ ServiceName = Literal[
|
|
|
632
644
|
"support-app",
|
|
633
645
|
"swf",
|
|
634
646
|
"synthetics",
|
|
647
|
+
"taxsettings",
|
|
635
648
|
"textract",
|
|
636
649
|
"timestream-influxdb",
|
|
637
650
|
"timestream-query",
|
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",
|
|
@@ -41,6 +42,7 @@ __all__ = (
|
|
|
41
42
|
"ErrorCodeType",
|
|
42
43
|
"FargateProfileActiveWaiterName",
|
|
43
44
|
"FargateProfileDeletedWaiterName",
|
|
45
|
+
"FargateProfileIssueCodeType",
|
|
44
46
|
"FargateProfileStatusType",
|
|
45
47
|
"InsightStatusValueType",
|
|
46
48
|
"IpFamilyType",
|
|
@@ -66,7 +68,6 @@ __all__ = (
|
|
|
66
68
|
"UpdateParamTypeType",
|
|
67
69
|
"UpdateStatusType",
|
|
68
70
|
"UpdateTypeType",
|
|
69
|
-
"configStatusType",
|
|
70
71
|
"EKSServiceName",
|
|
71
72
|
"ServiceName",
|
|
72
73
|
"ResourceServiceName",
|
|
@@ -96,6 +97,8 @@ AddonActiveWaiterName = Literal["addon_active"]
|
|
|
96
97
|
AddonDeletedWaiterName = Literal["addon_deleted"]
|
|
97
98
|
AddonIssueCodeType = Literal[
|
|
98
99
|
"AccessDenied",
|
|
100
|
+
"AddonPermissionFailure",
|
|
101
|
+
"AddonSubscriptionNeeded",
|
|
99
102
|
"AdmissionRequestDenied",
|
|
100
103
|
"ClusterUnreachable",
|
|
101
104
|
"ConfigurationConflict",
|
|
@@ -141,6 +144,7 @@ ClusterIssueCodeType = Literal[
|
|
|
141
144
|
"VpcNotFound",
|
|
142
145
|
]
|
|
143
146
|
ClusterStatusType = Literal["ACTIVE", "CREATING", "DELETING", "FAILED", "PENDING", "UPDATING"]
|
|
147
|
+
ConfigStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
144
148
|
ConnectorConfigProviderType = Literal[
|
|
145
149
|
"AKS", "ANTHOS", "EC2", "EKS_ANYWHERE", "GKE", "OPENSHIFT", "OTHER", "RANCHER", "TANZU"
|
|
146
150
|
]
|
|
@@ -171,6 +175,9 @@ ErrorCodeType = Literal[
|
|
|
171
175
|
]
|
|
172
176
|
FargateProfileActiveWaiterName = Literal["fargate_profile_active"]
|
|
173
177
|
FargateProfileDeletedWaiterName = Literal["fargate_profile_deleted"]
|
|
178
|
+
FargateProfileIssueCodeType = Literal[
|
|
179
|
+
"AccessDenied", "ClusterUnreachable", "InternalFailure", "PodExecutionRoleAlreadyInUse"
|
|
180
|
+
]
|
|
174
181
|
FargateProfileStatusType = Literal[
|
|
175
182
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
|
|
176
183
|
]
|
|
@@ -252,6 +259,7 @@ UpdateParamTypeType = Literal[
|
|
|
252
259
|
"MaxUnavailablePercentage",
|
|
253
260
|
"MinSize",
|
|
254
261
|
"PlatformVersion",
|
|
262
|
+
"PodIdentityAssociations",
|
|
255
263
|
"PublicAccessCidrs",
|
|
256
264
|
"ReleaseVersion",
|
|
257
265
|
"ResolveConflicts",
|
|
@@ -275,14 +283,12 @@ UpdateTypeType = Literal[
|
|
|
275
283
|
"VersionUpdate",
|
|
276
284
|
"VpcConfigUpdate",
|
|
277
285
|
]
|
|
278
|
-
configStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
279
286
|
EKSServiceName = Literal["eks"]
|
|
280
287
|
ServiceName = Literal[
|
|
281
288
|
"accessanalyzer",
|
|
282
289
|
"account",
|
|
283
290
|
"acm",
|
|
284
291
|
"acm-pca",
|
|
285
|
-
"alexaforbusiness",
|
|
286
292
|
"amp",
|
|
287
293
|
"amplify",
|
|
288
294
|
"amplifybackend",
|
|
@@ -297,11 +303,13 @@ ServiceName = Literal[
|
|
|
297
303
|
"appintegrations",
|
|
298
304
|
"application-autoscaling",
|
|
299
305
|
"application-insights",
|
|
306
|
+
"application-signals",
|
|
300
307
|
"applicationcostprofiler",
|
|
301
308
|
"appmesh",
|
|
302
309
|
"apprunner",
|
|
303
310
|
"appstream",
|
|
304
311
|
"appsync",
|
|
312
|
+
"apptest",
|
|
305
313
|
"arc-zonal-shift",
|
|
306
314
|
"artifact",
|
|
307
315
|
"athena",
|
|
@@ -311,7 +319,6 @@ ServiceName = Literal[
|
|
|
311
319
|
"b2bi",
|
|
312
320
|
"backup",
|
|
313
321
|
"backup-gateway",
|
|
314
|
-
"backupstorage",
|
|
315
322
|
"batch",
|
|
316
323
|
"bcm-data-exports",
|
|
317
324
|
"bedrock",
|
|
@@ -348,6 +355,7 @@ ServiceName = Literal[
|
|
|
348
355
|
"codebuild",
|
|
349
356
|
"codecatalyst",
|
|
350
357
|
"codecommit",
|
|
358
|
+
"codeconnections",
|
|
351
359
|
"codedeploy",
|
|
352
360
|
"codeguru-reviewer",
|
|
353
361
|
"codeguru-security",
|
|
@@ -368,6 +376,7 @@ ServiceName = Literal[
|
|
|
368
376
|
"connectcampaigns",
|
|
369
377
|
"connectcases",
|
|
370
378
|
"connectparticipant",
|
|
379
|
+
"controlcatalog",
|
|
371
380
|
"controltower",
|
|
372
381
|
"cost-optimization-hub",
|
|
373
382
|
"cur",
|
|
@@ -378,6 +387,7 @@ ServiceName = Literal[
|
|
|
378
387
|
"datasync",
|
|
379
388
|
"datazone",
|
|
380
389
|
"dax",
|
|
390
|
+
"deadline",
|
|
381
391
|
"detective",
|
|
382
392
|
"devicefarm",
|
|
383
393
|
"devops-guru",
|
|
@@ -434,7 +444,6 @@ ServiceName = Literal[
|
|
|
434
444
|
"guardduty",
|
|
435
445
|
"health",
|
|
436
446
|
"healthlake",
|
|
437
|
-
"honeycode",
|
|
438
447
|
"iam",
|
|
439
448
|
"identitystore",
|
|
440
449
|
"imagebuilder",
|
|
@@ -495,6 +504,7 @@ ServiceName = Literal[
|
|
|
495
504
|
"m2",
|
|
496
505
|
"machinelearning",
|
|
497
506
|
"macie2",
|
|
507
|
+
"mailmanager",
|
|
498
508
|
"managedblockchain",
|
|
499
509
|
"managedblockchain-query",
|
|
500
510
|
"marketplace-agreement",
|
|
@@ -544,6 +554,7 @@ ServiceName = Literal[
|
|
|
544
554
|
"payment-cryptography",
|
|
545
555
|
"payment-cryptography-data",
|
|
546
556
|
"pca-connector-ad",
|
|
557
|
+
"pca-connector-scep",
|
|
547
558
|
"personalize",
|
|
548
559
|
"personalize-events",
|
|
549
560
|
"personalize-runtime",
|
|
@@ -582,6 +593,7 @@ ServiceName = Literal[
|
|
|
582
593
|
"route53-recovery-control-config",
|
|
583
594
|
"route53-recovery-readiness",
|
|
584
595
|
"route53domains",
|
|
596
|
+
"route53profiles",
|
|
585
597
|
"route53resolver",
|
|
586
598
|
"rum",
|
|
587
599
|
"s3",
|
|
@@ -632,6 +644,7 @@ ServiceName = Literal[
|
|
|
632
644
|
"support-app",
|
|
633
645
|
"swf",
|
|
634
646
|
"synthetics",
|
|
647
|
+
"taxsettings",
|
|
635
648
|
"textract",
|
|
636
649
|
"timestream-influxdb",
|
|
637
650
|
"timestream-query",
|
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)
|