mypy-boto3-eks 1.35.57__py3-none-any.whl → 1.35.72__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mypy_boto3_eks/__init__.py +2 -0
- mypy_boto3_eks/__init__.pyi +2 -0
- mypy_boto3_eks/__main__.py +7 -5
- mypy_boto3_eks/client.py +152 -119
- mypy_boto3_eks/client.pyi +152 -119
- mypy_boto3_eks/literals.py +16 -0
- mypy_boto3_eks/literals.pyi +16 -0
- mypy_boto3_eks/paginator.py +28 -26
- mypy_boto3_eks/paginator.pyi +28 -26
- mypy_boto3_eks/type_defs.py +109 -23
- mypy_boto3_eks/type_defs.pyi +93 -20
- mypy_boto3_eks/version.py +3 -1
- mypy_boto3_eks/waiter.py +18 -16
- mypy_boto3_eks/waiter.pyi +18 -16
- {mypy_boto3_eks-1.35.57.dist-info → mypy_boto3_eks-1.35.72.dist-info}/METADATA +58 -18
- mypy_boto3_eks-1.35.72.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.57.dist-info → mypy_boto3_eks-1.35.72.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.35.57.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.57.dist-info → mypy_boto3_eks-1.35.72.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.57.dist-info → mypy_boto3_eks-1.35.72.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: AccessConfigResponseTypeDef = ...
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2024 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -71,12 +73,15 @@ __all__ = (
|
|
|
71
73
|
"AssociateIdentityProviderConfigResponseTypeDef",
|
|
72
74
|
"AssociatedAccessPolicyTypeDef",
|
|
73
75
|
"AutoScalingGroupTypeDef",
|
|
76
|
+
"BlockStorageTypeDef",
|
|
74
77
|
"CertificateTypeDef",
|
|
75
78
|
"ClientStatTypeDef",
|
|
76
79
|
"ClusterHealthTypeDef",
|
|
77
80
|
"ClusterIssueTypeDef",
|
|
78
81
|
"ClusterTypeDef",
|
|
79
82
|
"CompatibilityTypeDef",
|
|
83
|
+
"ComputeConfigRequestTypeDef",
|
|
84
|
+
"ComputeConfigResponseTypeDef",
|
|
80
85
|
"ConnectorConfigRequestTypeDef",
|
|
81
86
|
"ConnectorConfigResponseTypeDef",
|
|
82
87
|
"ControlPlanePlacementRequestTypeDef",
|
|
@@ -150,6 +155,7 @@ __all__ = (
|
|
|
150
155
|
"DisassociateIdentityProviderConfigResponseTypeDef",
|
|
151
156
|
"EksAnywhereSubscriptionTermTypeDef",
|
|
152
157
|
"EksAnywhereSubscriptionTypeDef",
|
|
158
|
+
"ElasticLoadBalancingTypeDef",
|
|
153
159
|
"EncryptionConfigOutputTypeDef",
|
|
154
160
|
"EncryptionConfigTypeDef",
|
|
155
161
|
"EncryptionConfigUnionTypeDef",
|
|
@@ -235,7 +241,17 @@ __all__ = (
|
|
|
235
241
|
"RegisterClusterResponseTypeDef",
|
|
236
242
|
"RemoteAccessConfigOutputTypeDef",
|
|
237
243
|
"RemoteAccessConfigTypeDef",
|
|
244
|
+
"RemoteNetworkConfigRequestTypeDef",
|
|
245
|
+
"RemoteNetworkConfigResponseTypeDef",
|
|
246
|
+
"RemoteNodeNetworkOutputTypeDef",
|
|
247
|
+
"RemoteNodeNetworkTypeDef",
|
|
248
|
+
"RemoteNodeNetworkUnionTypeDef",
|
|
249
|
+
"RemotePodNetworkOutputTypeDef",
|
|
250
|
+
"RemotePodNetworkTypeDef",
|
|
251
|
+
"RemotePodNetworkUnionTypeDef",
|
|
238
252
|
"ResponseMetadataTypeDef",
|
|
253
|
+
"StorageConfigRequestTypeDef",
|
|
254
|
+
"StorageConfigResponseTypeDef",
|
|
239
255
|
"TagResourceRequestRequestTypeDef",
|
|
240
256
|
"TaintTypeDef",
|
|
241
257
|
"UntagResourceRequestRequestTypeDef",
|
|
@@ -362,6 +378,10 @@ class AutoScalingGroupTypeDef(TypedDict):
|
|
|
362
378
|
name: NotRequired[str]
|
|
363
379
|
|
|
364
380
|
|
|
381
|
+
class BlockStorageTypeDef(TypedDict):
|
|
382
|
+
enabled: NotRequired[bool]
|
|
383
|
+
|
|
384
|
+
|
|
365
385
|
class CertificateTypeDef(TypedDict):
|
|
366
386
|
data: NotRequired[str]
|
|
367
387
|
|
|
@@ -378,6 +398,12 @@ class ClusterIssueTypeDef(TypedDict):
|
|
|
378
398
|
resourceIds: NotRequired[List[str]]
|
|
379
399
|
|
|
380
400
|
|
|
401
|
+
class ComputeConfigResponseTypeDef(TypedDict):
|
|
402
|
+
enabled: NotRequired[bool]
|
|
403
|
+
nodePools: NotRequired[List[str]]
|
|
404
|
+
nodeRoleArn: NotRequired[str]
|
|
405
|
+
|
|
406
|
+
|
|
381
407
|
class ConnectorConfigResponseTypeDef(TypedDict):
|
|
382
408
|
activationId: NotRequired[str]
|
|
383
409
|
activationCode: NotRequired[str]
|
|
@@ -386,12 +412,6 @@ class ConnectorConfigResponseTypeDef(TypedDict):
|
|
|
386
412
|
roleArn: NotRequired[str]
|
|
387
413
|
|
|
388
414
|
|
|
389
|
-
class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
390
|
-
serviceIpv4Cidr: NotRequired[str]
|
|
391
|
-
serviceIpv6Cidr: NotRequired[str]
|
|
392
|
-
ipFamily: NotRequired[IpFamilyType]
|
|
393
|
-
|
|
394
|
-
|
|
395
415
|
class UpgradePolicyResponseTypeDef(TypedDict):
|
|
396
416
|
supportType: NotRequired[SupportTypeType]
|
|
397
417
|
|
|
@@ -410,6 +430,12 @@ class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
|
410
430
|
enabled: NotRequired[bool]
|
|
411
431
|
|
|
412
432
|
|
|
433
|
+
class ComputeConfigRequestTypeDef(TypedDict):
|
|
434
|
+
enabled: NotRequired[bool]
|
|
435
|
+
nodePools: NotRequired[Sequence[str]]
|
|
436
|
+
nodeRoleArn: NotRequired[str]
|
|
437
|
+
|
|
438
|
+
|
|
413
439
|
class ConnectorConfigRequestTypeDef(TypedDict):
|
|
414
440
|
roleArn: str
|
|
415
441
|
provider: ConnectorConfigProviderType
|
|
@@ -442,11 +468,6 @@ CreateAccessEntryRequestRequestTypeDef = TypedDict(
|
|
|
442
468
|
)
|
|
443
469
|
|
|
444
470
|
|
|
445
|
-
class KubernetesNetworkConfigRequestTypeDef(TypedDict):
|
|
446
|
-
serviceIpv4Cidr: NotRequired[str]
|
|
447
|
-
ipFamily: NotRequired[IpFamilyType]
|
|
448
|
-
|
|
449
|
-
|
|
450
471
|
class UpgradePolicyRequestTypeDef(TypedDict):
|
|
451
472
|
supportType: NotRequired[SupportTypeType]
|
|
452
473
|
|
|
@@ -660,6 +681,10 @@ class DisassociateAccessPolicyRequestRequestTypeDef(TypedDict):
|
|
|
660
681
|
policyArn: str
|
|
661
682
|
|
|
662
683
|
|
|
684
|
+
class ElasticLoadBalancingTypeDef(TypedDict):
|
|
685
|
+
enabled: NotRequired[bool]
|
|
686
|
+
|
|
687
|
+
|
|
663
688
|
class ProviderTypeDef(TypedDict):
|
|
664
689
|
keyArn: NotRequired[str]
|
|
665
690
|
|
|
@@ -827,6 +852,22 @@ class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
|
827
852
|
sourceSecurityGroups: NotRequired[List[str]]
|
|
828
853
|
|
|
829
854
|
|
|
855
|
+
class RemoteNodeNetworkOutputTypeDef(TypedDict):
|
|
856
|
+
cidrs: NotRequired[List[str]]
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
class RemotePodNetworkOutputTypeDef(TypedDict):
|
|
860
|
+
cidrs: NotRequired[List[str]]
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
class RemoteNodeNetworkTypeDef(TypedDict):
|
|
864
|
+
cidrs: NotRequired[Sequence[str]]
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
class RemotePodNetworkTypeDef(TypedDict):
|
|
868
|
+
cidrs: NotRequired[Sequence[str]]
|
|
869
|
+
|
|
870
|
+
|
|
830
871
|
class TagResourceRequestRequestTypeDef(TypedDict):
|
|
831
872
|
resourceArn: str
|
|
832
873
|
tags: Mapping[str, str]
|
|
@@ -930,6 +971,7 @@ class UpdateAddonRequestRequestTypeDef(TypedDict):
|
|
|
930
971
|
class AddonVersionInfoTypeDef(TypedDict):
|
|
931
972
|
addonVersion: NotRequired[str]
|
|
932
973
|
architecture: NotRequired[List[str]]
|
|
974
|
+
computeTypes: NotRequired[List[str]]
|
|
933
975
|
compatibilities: NotRequired[List[CompatibilityTypeDef]]
|
|
934
976
|
requiresConfiguration: NotRequired[bool]
|
|
935
977
|
requiresIamPermissions: NotRequired[bool]
|
|
@@ -1017,6 +1059,14 @@ class NodegroupResourcesTypeDef(TypedDict):
|
|
|
1017
1059
|
remoteAccessSecurityGroup: NotRequired[str]
|
|
1018
1060
|
|
|
1019
1061
|
|
|
1062
|
+
class StorageConfigRequestTypeDef(TypedDict):
|
|
1063
|
+
blockStorage: NotRequired[BlockStorageTypeDef]
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
class StorageConfigResponseTypeDef(TypedDict):
|
|
1067
|
+
blockStorage: NotRequired[BlockStorageTypeDef]
|
|
1068
|
+
|
|
1069
|
+
|
|
1020
1070
|
class DeprecationDetailTypeDef(TypedDict):
|
|
1021
1071
|
usage: NotRequired[str]
|
|
1022
1072
|
replacedWith: NotRequired[str]
|
|
@@ -1269,6 +1319,19 @@ class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
|
1269
1319
|
nextToken: NotRequired[str]
|
|
1270
1320
|
|
|
1271
1321
|
|
|
1322
|
+
class KubernetesNetworkConfigRequestTypeDef(TypedDict):
|
|
1323
|
+
serviceIpv4Cidr: NotRequired[str]
|
|
1324
|
+
ipFamily: NotRequired[IpFamilyType]
|
|
1325
|
+
elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
|
|
1326
|
+
|
|
1327
|
+
|
|
1328
|
+
class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
1329
|
+
serviceIpv4Cidr: NotRequired[str]
|
|
1330
|
+
serviceIpv6Cidr: NotRequired[str]
|
|
1331
|
+
ipFamily: NotRequired[IpFamilyType]
|
|
1332
|
+
elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
|
|
1333
|
+
|
|
1334
|
+
|
|
1272
1335
|
class EncryptionConfigOutputTypeDef(TypedDict):
|
|
1273
1336
|
resources: NotRequired[List[str]]
|
|
1274
1337
|
provider: NotRequired[ProviderTypeDef]
|
|
@@ -1349,6 +1412,15 @@ class LoggingOutputTypeDef(TypedDict):
|
|
|
1349
1412
|
|
|
1350
1413
|
|
|
1351
1414
|
LogSetupUnionTypeDef = Union[LogSetupTypeDef, LogSetupOutputTypeDef]
|
|
1415
|
+
|
|
1416
|
+
|
|
1417
|
+
class RemoteNetworkConfigResponseTypeDef(TypedDict):
|
|
1418
|
+
remoteNodeNetworks: NotRequired[List[RemoteNodeNetworkOutputTypeDef]]
|
|
1419
|
+
remotePodNetworks: NotRequired[List[RemotePodNetworkOutputTypeDef]]
|
|
1420
|
+
|
|
1421
|
+
|
|
1422
|
+
RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
|
|
1423
|
+
RemotePodNetworkUnionTypeDef = Union[RemotePodNetworkTypeDef, RemotePodNetworkOutputTypeDef]
|
|
1352
1424
|
UpdateTypeDef = TypedDict(
|
|
1353
1425
|
"UpdateTypeDef",
|
|
1354
1426
|
{
|
|
@@ -1511,6 +1583,10 @@ class NodegroupTypeDef(TypedDict):
|
|
|
1511
1583
|
tags: NotRequired[Dict[str, str]]
|
|
1512
1584
|
|
|
1513
1585
|
|
|
1586
|
+
class LoggingTypeDef(TypedDict):
|
|
1587
|
+
clusterLogging: NotRequired[Sequence[LogSetupUnionTypeDef]]
|
|
1588
|
+
|
|
1589
|
+
|
|
1514
1590
|
ClusterTypeDef = TypedDict(
|
|
1515
1591
|
"ClusterTypeDef",
|
|
1516
1592
|
{
|
|
@@ -1537,12 +1613,16 @@ ClusterTypeDef = TypedDict(
|
|
|
1537
1613
|
"accessConfig": NotRequired[AccessConfigResponseTypeDef],
|
|
1538
1614
|
"upgradePolicy": NotRequired[UpgradePolicyResponseTypeDef],
|
|
1539
1615
|
"zonalShiftConfig": NotRequired[ZonalShiftConfigResponseTypeDef],
|
|
1616
|
+
"remoteNetworkConfig": NotRequired[RemoteNetworkConfigResponseTypeDef],
|
|
1617
|
+
"computeConfig": NotRequired[ComputeConfigResponseTypeDef],
|
|
1618
|
+
"storageConfig": NotRequired[StorageConfigResponseTypeDef],
|
|
1540
1619
|
},
|
|
1541
1620
|
)
|
|
1542
1621
|
|
|
1543
1622
|
|
|
1544
|
-
class
|
|
1545
|
-
|
|
1623
|
+
class RemoteNetworkConfigRequestTypeDef(TypedDict):
|
|
1624
|
+
remoteNodeNetworks: NotRequired[Sequence[RemoteNodeNetworkUnionTypeDef]]
|
|
1625
|
+
remotePodNetworks: NotRequired[Sequence[RemotePodNetworkUnionTypeDef]]
|
|
1546
1626
|
|
|
1547
1627
|
|
|
1548
1628
|
class AssociateEncryptionConfigResponseTypeDef(TypedDict):
|
|
@@ -1667,6 +1747,19 @@ class DescribeNodegroupResponseTypeDef(TypedDict):
|
|
|
1667
1747
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1668
1748
|
|
|
1669
1749
|
|
|
1750
|
+
class UpdateClusterConfigRequestRequestTypeDef(TypedDict):
|
|
1751
|
+
name: str
|
|
1752
|
+
resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
|
|
1753
|
+
logging: NotRequired[LoggingTypeDef]
|
|
1754
|
+
clientRequestToken: NotRequired[str]
|
|
1755
|
+
accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
|
|
1756
|
+
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1757
|
+
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1758
|
+
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1759
|
+
kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
|
|
1760
|
+
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1761
|
+
|
|
1762
|
+
|
|
1670
1763
|
class CreateClusterResponseTypeDef(TypedDict):
|
|
1671
1764
|
cluster: ClusterTypeDef
|
|
1672
1765
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1707,16 +1800,9 @@ class CreateClusterRequestRequestTypeDef(TypedDict):
|
|
|
1707
1800
|
bootstrapSelfManagedAddons: NotRequired[bool]
|
|
1708
1801
|
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1709
1802
|
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
name: str
|
|
1714
|
-
resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
|
|
1715
|
-
logging: NotRequired[LoggingTypeDef]
|
|
1716
|
-
clientRequestToken: NotRequired[str]
|
|
1717
|
-
accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
|
|
1718
|
-
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1719
|
-
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1803
|
+
remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
|
|
1804
|
+
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1805
|
+
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1720
1806
|
|
|
1721
1807
|
|
|
1722
1808
|
class DescribeInsightResponseTypeDef(TypedDict):
|
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -10,6 +10,8 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: AccessConfigResponseTypeDef = ...
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2024 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
@@ -70,12 +72,15 @@ __all__ = (
|
|
|
70
72
|
"AssociateIdentityProviderConfigResponseTypeDef",
|
|
71
73
|
"AssociatedAccessPolicyTypeDef",
|
|
72
74
|
"AutoScalingGroupTypeDef",
|
|
75
|
+
"BlockStorageTypeDef",
|
|
73
76
|
"CertificateTypeDef",
|
|
74
77
|
"ClientStatTypeDef",
|
|
75
78
|
"ClusterHealthTypeDef",
|
|
76
79
|
"ClusterIssueTypeDef",
|
|
77
80
|
"ClusterTypeDef",
|
|
78
81
|
"CompatibilityTypeDef",
|
|
82
|
+
"ComputeConfigRequestTypeDef",
|
|
83
|
+
"ComputeConfigResponseTypeDef",
|
|
79
84
|
"ConnectorConfigRequestTypeDef",
|
|
80
85
|
"ConnectorConfigResponseTypeDef",
|
|
81
86
|
"ControlPlanePlacementRequestTypeDef",
|
|
@@ -149,6 +154,7 @@ __all__ = (
|
|
|
149
154
|
"DisassociateIdentityProviderConfigResponseTypeDef",
|
|
150
155
|
"EksAnywhereSubscriptionTermTypeDef",
|
|
151
156
|
"EksAnywhereSubscriptionTypeDef",
|
|
157
|
+
"ElasticLoadBalancingTypeDef",
|
|
152
158
|
"EncryptionConfigOutputTypeDef",
|
|
153
159
|
"EncryptionConfigTypeDef",
|
|
154
160
|
"EncryptionConfigUnionTypeDef",
|
|
@@ -234,7 +240,17 @@ __all__ = (
|
|
|
234
240
|
"RegisterClusterResponseTypeDef",
|
|
235
241
|
"RemoteAccessConfigOutputTypeDef",
|
|
236
242
|
"RemoteAccessConfigTypeDef",
|
|
243
|
+
"RemoteNetworkConfigRequestTypeDef",
|
|
244
|
+
"RemoteNetworkConfigResponseTypeDef",
|
|
245
|
+
"RemoteNodeNetworkOutputTypeDef",
|
|
246
|
+
"RemoteNodeNetworkTypeDef",
|
|
247
|
+
"RemoteNodeNetworkUnionTypeDef",
|
|
248
|
+
"RemotePodNetworkOutputTypeDef",
|
|
249
|
+
"RemotePodNetworkTypeDef",
|
|
250
|
+
"RemotePodNetworkUnionTypeDef",
|
|
237
251
|
"ResponseMetadataTypeDef",
|
|
252
|
+
"StorageConfigRequestTypeDef",
|
|
253
|
+
"StorageConfigResponseTypeDef",
|
|
238
254
|
"TagResourceRequestRequestTypeDef",
|
|
239
255
|
"TaintTypeDef",
|
|
240
256
|
"UntagResourceRequestRequestTypeDef",
|
|
@@ -348,6 +364,9 @@ class OidcIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
|
348
364
|
class AutoScalingGroupTypeDef(TypedDict):
|
|
349
365
|
name: NotRequired[str]
|
|
350
366
|
|
|
367
|
+
class BlockStorageTypeDef(TypedDict):
|
|
368
|
+
enabled: NotRequired[bool]
|
|
369
|
+
|
|
351
370
|
class CertificateTypeDef(TypedDict):
|
|
352
371
|
data: NotRequired[str]
|
|
353
372
|
|
|
@@ -361,6 +380,11 @@ class ClusterIssueTypeDef(TypedDict):
|
|
|
361
380
|
message: NotRequired[str]
|
|
362
381
|
resourceIds: NotRequired[List[str]]
|
|
363
382
|
|
|
383
|
+
class ComputeConfigResponseTypeDef(TypedDict):
|
|
384
|
+
enabled: NotRequired[bool]
|
|
385
|
+
nodePools: NotRequired[List[str]]
|
|
386
|
+
nodeRoleArn: NotRequired[str]
|
|
387
|
+
|
|
364
388
|
class ConnectorConfigResponseTypeDef(TypedDict):
|
|
365
389
|
activationId: NotRequired[str]
|
|
366
390
|
activationCode: NotRequired[str]
|
|
@@ -368,11 +392,6 @@ class ConnectorConfigResponseTypeDef(TypedDict):
|
|
|
368
392
|
provider: NotRequired[str]
|
|
369
393
|
roleArn: NotRequired[str]
|
|
370
394
|
|
|
371
|
-
class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
372
|
-
serviceIpv4Cidr: NotRequired[str]
|
|
373
|
-
serviceIpv6Cidr: NotRequired[str]
|
|
374
|
-
ipFamily: NotRequired[IpFamilyType]
|
|
375
|
-
|
|
376
395
|
class UpgradePolicyResponseTypeDef(TypedDict):
|
|
377
396
|
supportType: NotRequired[SupportTypeType]
|
|
378
397
|
|
|
@@ -388,6 +407,11 @@ class VpcConfigResponseTypeDef(TypedDict):
|
|
|
388
407
|
class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
389
408
|
enabled: NotRequired[bool]
|
|
390
409
|
|
|
410
|
+
class ComputeConfigRequestTypeDef(TypedDict):
|
|
411
|
+
enabled: NotRequired[bool]
|
|
412
|
+
nodePools: NotRequired[Sequence[str]]
|
|
413
|
+
nodeRoleArn: NotRequired[str]
|
|
414
|
+
|
|
391
415
|
class ConnectorConfigRequestTypeDef(TypedDict):
|
|
392
416
|
roleArn: str
|
|
393
417
|
provider: ConnectorConfigProviderType
|
|
@@ -415,10 +439,6 @@ CreateAccessEntryRequestRequestTypeDef = TypedDict(
|
|
|
415
439
|
},
|
|
416
440
|
)
|
|
417
441
|
|
|
418
|
-
class KubernetesNetworkConfigRequestTypeDef(TypedDict):
|
|
419
|
-
serviceIpv4Cidr: NotRequired[str]
|
|
420
|
-
ipFamily: NotRequired[IpFamilyType]
|
|
421
|
-
|
|
422
442
|
class UpgradePolicyRequestTypeDef(TypedDict):
|
|
423
443
|
supportType: NotRequired[SupportTypeType]
|
|
424
444
|
|
|
@@ -599,6 +619,9 @@ class DisassociateAccessPolicyRequestRequestTypeDef(TypedDict):
|
|
|
599
619
|
principalArn: str
|
|
600
620
|
policyArn: str
|
|
601
621
|
|
|
622
|
+
class ElasticLoadBalancingTypeDef(TypedDict):
|
|
623
|
+
enabled: NotRequired[bool]
|
|
624
|
+
|
|
602
625
|
class ProviderTypeDef(TypedDict):
|
|
603
626
|
keyArn: NotRequired[str]
|
|
604
627
|
|
|
@@ -741,6 +764,18 @@ class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
|
741
764
|
ec2SshKey: NotRequired[str]
|
|
742
765
|
sourceSecurityGroups: NotRequired[List[str]]
|
|
743
766
|
|
|
767
|
+
class RemoteNodeNetworkOutputTypeDef(TypedDict):
|
|
768
|
+
cidrs: NotRequired[List[str]]
|
|
769
|
+
|
|
770
|
+
class RemotePodNetworkOutputTypeDef(TypedDict):
|
|
771
|
+
cidrs: NotRequired[List[str]]
|
|
772
|
+
|
|
773
|
+
class RemoteNodeNetworkTypeDef(TypedDict):
|
|
774
|
+
cidrs: NotRequired[Sequence[str]]
|
|
775
|
+
|
|
776
|
+
class RemotePodNetworkTypeDef(TypedDict):
|
|
777
|
+
cidrs: NotRequired[Sequence[str]]
|
|
778
|
+
|
|
744
779
|
class TagResourceRequestRequestTypeDef(TypedDict):
|
|
745
780
|
resourceArn: str
|
|
746
781
|
tags: Mapping[str, str]
|
|
@@ -830,6 +865,7 @@ class UpdateAddonRequestRequestTypeDef(TypedDict):
|
|
|
830
865
|
class AddonVersionInfoTypeDef(TypedDict):
|
|
831
866
|
addonVersion: NotRequired[str]
|
|
832
867
|
architecture: NotRequired[List[str]]
|
|
868
|
+
computeTypes: NotRequired[List[str]]
|
|
833
869
|
compatibilities: NotRequired[List[CompatibilityTypeDef]]
|
|
834
870
|
requiresConfiguration: NotRequired[bool]
|
|
835
871
|
requiresIamPermissions: NotRequired[bool]
|
|
@@ -902,6 +938,12 @@ class NodegroupResourcesTypeDef(TypedDict):
|
|
|
902
938
|
autoScalingGroups: NotRequired[List[AutoScalingGroupTypeDef]]
|
|
903
939
|
remoteAccessSecurityGroup: NotRequired[str]
|
|
904
940
|
|
|
941
|
+
class StorageConfigRequestTypeDef(TypedDict):
|
|
942
|
+
blockStorage: NotRequired[BlockStorageTypeDef]
|
|
943
|
+
|
|
944
|
+
class StorageConfigResponseTypeDef(TypedDict):
|
|
945
|
+
blockStorage: NotRequired[BlockStorageTypeDef]
|
|
946
|
+
|
|
905
947
|
class DeprecationDetailTypeDef(TypedDict):
|
|
906
948
|
usage: NotRequired[str]
|
|
907
949
|
replacedWith: NotRequired[str]
|
|
@@ -1117,6 +1159,17 @@ class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
|
1117
1159
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1118
1160
|
nextToken: NotRequired[str]
|
|
1119
1161
|
|
|
1162
|
+
class KubernetesNetworkConfigRequestTypeDef(TypedDict):
|
|
1163
|
+
serviceIpv4Cidr: NotRequired[str]
|
|
1164
|
+
ipFamily: NotRequired[IpFamilyType]
|
|
1165
|
+
elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
|
|
1166
|
+
|
|
1167
|
+
class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
1168
|
+
serviceIpv4Cidr: NotRequired[str]
|
|
1169
|
+
serviceIpv6Cidr: NotRequired[str]
|
|
1170
|
+
ipFamily: NotRequired[IpFamilyType]
|
|
1171
|
+
elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
|
|
1172
|
+
|
|
1120
1173
|
class EncryptionConfigOutputTypeDef(TypedDict):
|
|
1121
1174
|
resources: NotRequired[List[str]]
|
|
1122
1175
|
provider: NotRequired[ProviderTypeDef]
|
|
@@ -1186,6 +1239,13 @@ class LoggingOutputTypeDef(TypedDict):
|
|
|
1186
1239
|
clusterLogging: NotRequired[List[LogSetupOutputTypeDef]]
|
|
1187
1240
|
|
|
1188
1241
|
LogSetupUnionTypeDef = Union[LogSetupTypeDef, LogSetupOutputTypeDef]
|
|
1242
|
+
|
|
1243
|
+
class RemoteNetworkConfigResponseTypeDef(TypedDict):
|
|
1244
|
+
remoteNodeNetworks: NotRequired[List[RemoteNodeNetworkOutputTypeDef]]
|
|
1245
|
+
remotePodNetworks: NotRequired[List[RemotePodNetworkOutputTypeDef]]
|
|
1246
|
+
|
|
1247
|
+
RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
|
|
1248
|
+
RemotePodNetworkUnionTypeDef = Union[RemotePodNetworkTypeDef, RemotePodNetworkOutputTypeDef]
|
|
1189
1249
|
UpdateTypeDef = TypedDict(
|
|
1190
1250
|
"UpdateTypeDef",
|
|
1191
1251
|
{
|
|
@@ -1330,6 +1390,9 @@ class NodegroupTypeDef(TypedDict):
|
|
|
1330
1390
|
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1331
1391
|
tags: NotRequired[Dict[str, str]]
|
|
1332
1392
|
|
|
1393
|
+
class LoggingTypeDef(TypedDict):
|
|
1394
|
+
clusterLogging: NotRequired[Sequence[LogSetupUnionTypeDef]]
|
|
1395
|
+
|
|
1333
1396
|
ClusterTypeDef = TypedDict(
|
|
1334
1397
|
"ClusterTypeDef",
|
|
1335
1398
|
{
|
|
@@ -1356,11 +1419,15 @@ ClusterTypeDef = TypedDict(
|
|
|
1356
1419
|
"accessConfig": NotRequired[AccessConfigResponseTypeDef],
|
|
1357
1420
|
"upgradePolicy": NotRequired[UpgradePolicyResponseTypeDef],
|
|
1358
1421
|
"zonalShiftConfig": NotRequired[ZonalShiftConfigResponseTypeDef],
|
|
1422
|
+
"remoteNetworkConfig": NotRequired[RemoteNetworkConfigResponseTypeDef],
|
|
1423
|
+
"computeConfig": NotRequired[ComputeConfigResponseTypeDef],
|
|
1424
|
+
"storageConfig": NotRequired[StorageConfigResponseTypeDef],
|
|
1359
1425
|
},
|
|
1360
1426
|
)
|
|
1361
1427
|
|
|
1362
|
-
class
|
|
1363
|
-
|
|
1428
|
+
class RemoteNetworkConfigRequestTypeDef(TypedDict):
|
|
1429
|
+
remoteNodeNetworks: NotRequired[Sequence[RemoteNodeNetworkUnionTypeDef]]
|
|
1430
|
+
remotePodNetworks: NotRequired[Sequence[RemotePodNetworkUnionTypeDef]]
|
|
1364
1431
|
|
|
1365
1432
|
class AssociateEncryptionConfigResponseTypeDef(TypedDict):
|
|
1366
1433
|
update: UpdateTypeDef
|
|
@@ -1463,6 +1530,18 @@ class DescribeNodegroupResponseTypeDef(TypedDict):
|
|
|
1463
1530
|
nodegroup: NodegroupTypeDef
|
|
1464
1531
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1465
1532
|
|
|
1533
|
+
class UpdateClusterConfigRequestRequestTypeDef(TypedDict):
|
|
1534
|
+
name: str
|
|
1535
|
+
resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
|
|
1536
|
+
logging: NotRequired[LoggingTypeDef]
|
|
1537
|
+
clientRequestToken: NotRequired[str]
|
|
1538
|
+
accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
|
|
1539
|
+
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1540
|
+
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1541
|
+
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1542
|
+
kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
|
|
1543
|
+
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1544
|
+
|
|
1466
1545
|
class CreateClusterResponseTypeDef(TypedDict):
|
|
1467
1546
|
cluster: ClusterTypeDef
|
|
1468
1547
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1498,15 +1577,9 @@ class CreateClusterRequestRequestTypeDef(TypedDict):
|
|
|
1498
1577
|
bootstrapSelfManagedAddons: NotRequired[bool]
|
|
1499
1578
|
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1500
1579
|
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
|
|
1505
|
-
logging: NotRequired[LoggingTypeDef]
|
|
1506
|
-
clientRequestToken: NotRequired[str]
|
|
1507
|
-
accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
|
|
1508
|
-
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1509
|
-
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1580
|
+
remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
|
|
1581
|
+
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1582
|
+
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1510
1583
|
|
|
1511
1584
|
class DescribeInsightResponseTypeDef(TypedDict):
|
|
1512
1585
|
insight: InsightTypeDef
|
mypy_boto3_eks/version.py
CHANGED
mypy_boto3_eks/waiter.py
CHANGED
|
@@ -32,6 +32,8 @@ Usage::
|
|
|
32
32
|
nodegroup_active_waiter: NodegroupActiveWaiter = client.get_waiter("nodegroup_active")
|
|
33
33
|
nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")
|
|
34
34
|
```
|
|
35
|
+
|
|
36
|
+
Copyright 2024 Vlad Emelianov
|
|
35
37
|
"""
|
|
36
38
|
|
|
37
39
|
import sys
|
|
@@ -69,59 +71,59 @@ __all__ = (
|
|
|
69
71
|
|
|
70
72
|
class AddonActiveWaiter(Waiter):
|
|
71
73
|
"""
|
|
72
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonActive)
|
|
74
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive)
|
|
73
75
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
74
76
|
"""
|
|
75
77
|
|
|
76
78
|
def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonActiveWaitTypeDef]) -> None:
|
|
77
79
|
"""
|
|
78
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonActive.wait)
|
|
80
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive.wait)
|
|
79
81
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
80
82
|
"""
|
|
81
83
|
|
|
82
84
|
|
|
83
85
|
class AddonDeletedWaiter(Waiter):
|
|
84
86
|
"""
|
|
85
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonDeleted)
|
|
87
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted)
|
|
86
88
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
87
89
|
"""
|
|
88
90
|
|
|
89
91
|
def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonDeletedWaitTypeDef]) -> None:
|
|
90
92
|
"""
|
|
91
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonDeleted.wait)
|
|
93
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted.wait)
|
|
92
94
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
93
95
|
"""
|
|
94
96
|
|
|
95
97
|
|
|
96
98
|
class ClusterActiveWaiter(Waiter):
|
|
97
99
|
"""
|
|
98
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterActive)
|
|
100
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive)
|
|
99
101
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
100
102
|
"""
|
|
101
103
|
|
|
102
104
|
def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterActiveWaitTypeDef]) -> None:
|
|
103
105
|
"""
|
|
104
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterActive.wait)
|
|
106
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive.wait)
|
|
105
107
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
106
108
|
"""
|
|
107
109
|
|
|
108
110
|
|
|
109
111
|
class ClusterDeletedWaiter(Waiter):
|
|
110
112
|
"""
|
|
111
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterDeleted)
|
|
113
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted)
|
|
112
114
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
113
115
|
"""
|
|
114
116
|
|
|
115
117
|
def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterDeletedWaitTypeDef]) -> None:
|
|
116
118
|
"""
|
|
117
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterDeleted.wait)
|
|
119
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted.wait)
|
|
118
120
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
119
121
|
"""
|
|
120
122
|
|
|
121
123
|
|
|
122
124
|
class FargateProfileActiveWaiter(Waiter):
|
|
123
125
|
"""
|
|
124
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileActive)
|
|
126
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive)
|
|
125
127
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofileactivewaiter)
|
|
126
128
|
"""
|
|
127
129
|
|
|
@@ -129,14 +131,14 @@ class FargateProfileActiveWaiter(Waiter):
|
|
|
129
131
|
self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef]
|
|
130
132
|
) -> None:
|
|
131
133
|
"""
|
|
132
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileActive.wait)
|
|
134
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive.wait)
|
|
133
135
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofileactivewaiter)
|
|
134
136
|
"""
|
|
135
137
|
|
|
136
138
|
|
|
137
139
|
class FargateProfileDeletedWaiter(Waiter):
|
|
138
140
|
"""
|
|
139
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileDeleted)
|
|
141
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted)
|
|
140
142
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofiledeletedwaiter)
|
|
141
143
|
"""
|
|
142
144
|
|
|
@@ -144,32 +146,32 @@ class FargateProfileDeletedWaiter(Waiter):
|
|
|
144
146
|
self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef]
|
|
145
147
|
) -> None:
|
|
146
148
|
"""
|
|
147
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
149
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
148
150
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofiledeletedwaiter)
|
|
149
151
|
"""
|
|
150
152
|
|
|
151
153
|
|
|
152
154
|
class NodegroupActiveWaiter(Waiter):
|
|
153
155
|
"""
|
|
154
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupActive)
|
|
156
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive)
|
|
155
157
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
156
158
|
"""
|
|
157
159
|
|
|
158
160
|
def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupActiveWaitTypeDef]) -> None:
|
|
159
161
|
"""
|
|
160
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupActive.wait)
|
|
162
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive.wait)
|
|
161
163
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
162
164
|
"""
|
|
163
165
|
|
|
164
166
|
|
|
165
167
|
class NodegroupDeletedWaiter(Waiter):
|
|
166
168
|
"""
|
|
167
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupDeleted)
|
|
169
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted)
|
|
168
170
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
169
171
|
"""
|
|
170
172
|
|
|
171
173
|
def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupDeletedWaitTypeDef]) -> None:
|
|
172
174
|
"""
|
|
173
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
175
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
174
176
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
175
177
|
"""
|