mypy-boto3-eks 1.35.57__py3-none-any.whl → 1.35.81__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.
@@ -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",
@@ -216,6 +222,7 @@ __all__ = (
216
222
  "LoggingOutputTypeDef",
217
223
  "LoggingTypeDef",
218
224
  "MarketplaceInformationTypeDef",
225
+ "NodeRepairConfigTypeDef",
219
226
  "NodegroupHealthTypeDef",
220
227
  "NodegroupResourcesTypeDef",
221
228
  "NodegroupScalingConfigTypeDef",
@@ -234,7 +241,17 @@ __all__ = (
234
241
  "RegisterClusterResponseTypeDef",
235
242
  "RemoteAccessConfigOutputTypeDef",
236
243
  "RemoteAccessConfigTypeDef",
244
+ "RemoteNetworkConfigRequestTypeDef",
245
+ "RemoteNetworkConfigResponseTypeDef",
246
+ "RemoteNodeNetworkOutputTypeDef",
247
+ "RemoteNodeNetworkTypeDef",
248
+ "RemoteNodeNetworkUnionTypeDef",
249
+ "RemotePodNetworkOutputTypeDef",
250
+ "RemotePodNetworkTypeDef",
251
+ "RemotePodNetworkUnionTypeDef",
237
252
  "ResponseMetadataTypeDef",
253
+ "StorageConfigRequestTypeDef",
254
+ "StorageConfigResponseTypeDef",
238
255
  "TagResourceRequestRequestTypeDef",
239
256
  "TaintTypeDef",
240
257
  "UntagResourceRequestRequestTypeDef",
@@ -348,6 +365,9 @@ class OidcIdentityProviderConfigRequestTypeDef(TypedDict):
348
365
  class AutoScalingGroupTypeDef(TypedDict):
349
366
  name: NotRequired[str]
350
367
 
368
+ class BlockStorageTypeDef(TypedDict):
369
+ enabled: NotRequired[bool]
370
+
351
371
  class CertificateTypeDef(TypedDict):
352
372
  data: NotRequired[str]
353
373
 
@@ -361,6 +381,11 @@ class ClusterIssueTypeDef(TypedDict):
361
381
  message: NotRequired[str]
362
382
  resourceIds: NotRequired[List[str]]
363
383
 
384
+ class ComputeConfigResponseTypeDef(TypedDict):
385
+ enabled: NotRequired[bool]
386
+ nodePools: NotRequired[List[str]]
387
+ nodeRoleArn: NotRequired[str]
388
+
364
389
  class ConnectorConfigResponseTypeDef(TypedDict):
365
390
  activationId: NotRequired[str]
366
391
  activationCode: NotRequired[str]
@@ -368,11 +393,6 @@ class ConnectorConfigResponseTypeDef(TypedDict):
368
393
  provider: NotRequired[str]
369
394
  roleArn: NotRequired[str]
370
395
 
371
- class KubernetesNetworkConfigResponseTypeDef(TypedDict):
372
- serviceIpv4Cidr: NotRequired[str]
373
- serviceIpv6Cidr: NotRequired[str]
374
- ipFamily: NotRequired[IpFamilyType]
375
-
376
396
  class UpgradePolicyResponseTypeDef(TypedDict):
377
397
  supportType: NotRequired[SupportTypeType]
378
398
 
@@ -388,6 +408,11 @@ class VpcConfigResponseTypeDef(TypedDict):
388
408
  class ZonalShiftConfigResponseTypeDef(TypedDict):
389
409
  enabled: NotRequired[bool]
390
410
 
411
+ class ComputeConfigRequestTypeDef(TypedDict):
412
+ enabled: NotRequired[bool]
413
+ nodePools: NotRequired[Sequence[str]]
414
+ nodeRoleArn: NotRequired[str]
415
+
391
416
  class ConnectorConfigRequestTypeDef(TypedDict):
392
417
  roleArn: str
393
418
  provider: ConnectorConfigProviderType
@@ -415,10 +440,6 @@ CreateAccessEntryRequestRequestTypeDef = TypedDict(
415
440
  },
416
441
  )
417
442
 
418
- class KubernetesNetworkConfigRequestTypeDef(TypedDict):
419
- serviceIpv4Cidr: NotRequired[str]
420
- ipFamily: NotRequired[IpFamilyType]
421
-
422
443
  class UpgradePolicyRequestTypeDef(TypedDict):
423
444
  supportType: NotRequired[SupportTypeType]
424
445
 
@@ -445,6 +466,9 @@ LaunchTemplateSpecificationTypeDef = TypedDict(
445
466
  },
446
467
  )
447
468
 
469
+ class NodeRepairConfigTypeDef(TypedDict):
470
+ enabled: NotRequired[bool]
471
+
448
472
  class NodegroupScalingConfigTypeDef(TypedDict):
449
473
  minSize: NotRequired[int]
450
474
  maxSize: NotRequired[int]
@@ -599,6 +623,9 @@ class DisassociateAccessPolicyRequestRequestTypeDef(TypedDict):
599
623
  principalArn: str
600
624
  policyArn: str
601
625
 
626
+ class ElasticLoadBalancingTypeDef(TypedDict):
627
+ enabled: NotRequired[bool]
628
+
602
629
  class ProviderTypeDef(TypedDict):
603
630
  keyArn: NotRequired[str]
604
631
 
@@ -741,6 +768,18 @@ class RemoteAccessConfigOutputTypeDef(TypedDict):
741
768
  ec2SshKey: NotRequired[str]
742
769
  sourceSecurityGroups: NotRequired[List[str]]
743
770
 
771
+ class RemoteNodeNetworkOutputTypeDef(TypedDict):
772
+ cidrs: NotRequired[List[str]]
773
+
774
+ class RemotePodNetworkOutputTypeDef(TypedDict):
775
+ cidrs: NotRequired[List[str]]
776
+
777
+ class RemoteNodeNetworkTypeDef(TypedDict):
778
+ cidrs: NotRequired[Sequence[str]]
779
+
780
+ class RemotePodNetworkTypeDef(TypedDict):
781
+ cidrs: NotRequired[Sequence[str]]
782
+
744
783
  class TagResourceRequestRequestTypeDef(TypedDict):
745
784
  resourceArn: str
746
785
  tags: Mapping[str, str]
@@ -830,6 +869,7 @@ class UpdateAddonRequestRequestTypeDef(TypedDict):
830
869
  class AddonVersionInfoTypeDef(TypedDict):
831
870
  addonVersion: NotRequired[str]
832
871
  architecture: NotRequired[List[str]]
872
+ computeTypes: NotRequired[List[str]]
833
873
  compatibilities: NotRequired[List[CompatibilityTypeDef]]
834
874
  requiresConfiguration: NotRequired[bool]
835
875
  requiresIamPermissions: NotRequired[bool]
@@ -902,6 +942,12 @@ class NodegroupResourcesTypeDef(TypedDict):
902
942
  autoScalingGroups: NotRequired[List[AutoScalingGroupTypeDef]]
903
943
  remoteAccessSecurityGroup: NotRequired[str]
904
944
 
945
+ class StorageConfigRequestTypeDef(TypedDict):
946
+ blockStorage: NotRequired[BlockStorageTypeDef]
947
+
948
+ class StorageConfigResponseTypeDef(TypedDict):
949
+ blockStorage: NotRequired[BlockStorageTypeDef]
950
+
905
951
  class DeprecationDetailTypeDef(TypedDict):
906
952
  usage: NotRequired[str]
907
953
  replacedWith: NotRequired[str]
@@ -980,6 +1026,7 @@ class CreateNodegroupRequestRequestTypeDef(TypedDict):
980
1026
  clientRequestToken: NotRequired[str]
981
1027
  launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
982
1028
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1029
+ nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
983
1030
  capacityType: NotRequired[CapacityTypesType]
984
1031
  version: NotRequired[str]
985
1032
  releaseVersion: NotRequired[str]
@@ -1117,6 +1164,17 @@ class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
1117
1164
  ResponseMetadata: ResponseMetadataTypeDef
1118
1165
  nextToken: NotRequired[str]
1119
1166
 
1167
+ class KubernetesNetworkConfigRequestTypeDef(TypedDict):
1168
+ serviceIpv4Cidr: NotRequired[str]
1169
+ ipFamily: NotRequired[IpFamilyType]
1170
+ elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
1171
+
1172
+ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
1173
+ serviceIpv4Cidr: NotRequired[str]
1174
+ serviceIpv6Cidr: NotRequired[str]
1175
+ ipFamily: NotRequired[IpFamilyType]
1176
+ elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
1177
+
1120
1178
  class EncryptionConfigOutputTypeDef(TypedDict):
1121
1179
  resources: NotRequired[List[str]]
1122
1180
  provider: NotRequired[ProviderTypeDef]
@@ -1186,6 +1244,13 @@ class LoggingOutputTypeDef(TypedDict):
1186
1244
  clusterLogging: NotRequired[List[LogSetupOutputTypeDef]]
1187
1245
 
1188
1246
  LogSetupUnionTypeDef = Union[LogSetupTypeDef, LogSetupOutputTypeDef]
1247
+
1248
+ class RemoteNetworkConfigResponseTypeDef(TypedDict):
1249
+ remoteNodeNetworks: NotRequired[List[RemoteNodeNetworkOutputTypeDef]]
1250
+ remotePodNetworks: NotRequired[List[RemotePodNetworkOutputTypeDef]]
1251
+
1252
+ RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
1253
+ RemotePodNetworkUnionTypeDef = Union[RemotePodNetworkTypeDef, RemotePodNetworkOutputTypeDef]
1189
1254
  UpdateTypeDef = TypedDict(
1190
1255
  "UpdateTypeDef",
1191
1256
  {
@@ -1271,6 +1336,7 @@ class UpdateNodegroupConfigRequestRequestTypeDef(TypedDict):
1271
1336
  taints: NotRequired[UpdateTaintsPayloadTypeDef]
1272
1337
  scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
1273
1338
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1339
+ nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1274
1340
  clientRequestToken: NotRequired[str]
1275
1341
 
1276
1342
  EncryptionConfigUnionTypeDef = Union[EncryptionConfigTypeDef, EncryptionConfigOutputTypeDef]
@@ -1327,9 +1393,13 @@ class NodegroupTypeDef(TypedDict):
1327
1393
  diskSize: NotRequired[int]
1328
1394
  health: NotRequired[NodegroupHealthTypeDef]
1329
1395
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1396
+ nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1330
1397
  launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
1331
1398
  tags: NotRequired[Dict[str, str]]
1332
1399
 
1400
+ class LoggingTypeDef(TypedDict):
1401
+ clusterLogging: NotRequired[Sequence[LogSetupUnionTypeDef]]
1402
+
1333
1403
  ClusterTypeDef = TypedDict(
1334
1404
  "ClusterTypeDef",
1335
1405
  {
@@ -1356,11 +1426,15 @@ ClusterTypeDef = TypedDict(
1356
1426
  "accessConfig": NotRequired[AccessConfigResponseTypeDef],
1357
1427
  "upgradePolicy": NotRequired[UpgradePolicyResponseTypeDef],
1358
1428
  "zonalShiftConfig": NotRequired[ZonalShiftConfigResponseTypeDef],
1429
+ "remoteNetworkConfig": NotRequired[RemoteNetworkConfigResponseTypeDef],
1430
+ "computeConfig": NotRequired[ComputeConfigResponseTypeDef],
1431
+ "storageConfig": NotRequired[StorageConfigResponseTypeDef],
1359
1432
  },
1360
1433
  )
1361
1434
 
1362
- class LoggingTypeDef(TypedDict):
1363
- clusterLogging: NotRequired[Sequence[LogSetupUnionTypeDef]]
1435
+ class RemoteNetworkConfigRequestTypeDef(TypedDict):
1436
+ remoteNodeNetworks: NotRequired[Sequence[RemoteNodeNetworkUnionTypeDef]]
1437
+ remotePodNetworks: NotRequired[Sequence[RemotePodNetworkUnionTypeDef]]
1364
1438
 
1365
1439
  class AssociateEncryptionConfigResponseTypeDef(TypedDict):
1366
1440
  update: UpdateTypeDef
@@ -1463,6 +1537,18 @@ class DescribeNodegroupResponseTypeDef(TypedDict):
1463
1537
  nodegroup: NodegroupTypeDef
1464
1538
  ResponseMetadata: ResponseMetadataTypeDef
1465
1539
 
1540
+ class UpdateClusterConfigRequestRequestTypeDef(TypedDict):
1541
+ name: str
1542
+ resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
1543
+ logging: NotRequired[LoggingTypeDef]
1544
+ clientRequestToken: NotRequired[str]
1545
+ accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
1546
+ upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
1547
+ zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
1548
+ computeConfig: NotRequired[ComputeConfigRequestTypeDef]
1549
+ kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
1550
+ storageConfig: NotRequired[StorageConfigRequestTypeDef]
1551
+
1466
1552
  class CreateClusterResponseTypeDef(TypedDict):
1467
1553
  cluster: ClusterTypeDef
1468
1554
  ResponseMetadata: ResponseMetadataTypeDef
@@ -1498,15 +1584,9 @@ class CreateClusterRequestRequestTypeDef(TypedDict):
1498
1584
  bootstrapSelfManagedAddons: NotRequired[bool]
1499
1585
  upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
1500
1586
  zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
1501
-
1502
- class UpdateClusterConfigRequestRequestTypeDef(TypedDict):
1503
- name: str
1504
- resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
1505
- logging: NotRequired[LoggingTypeDef]
1506
- clientRequestToken: NotRequired[str]
1507
- accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
1508
- upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
1509
- zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
1587
+ remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
1588
+ computeConfig: NotRequired[ComputeConfigRequestTypeDef]
1589
+ storageConfig: NotRequired[StorageConfigRequestTypeDef]
1510
1590
 
1511
1591
  class DescribeInsightResponseTypeDef(TypedDict):
1512
1592
  insight: InsightTypeDef
mypy_boto3_eks/version.py CHANGED
@@ -1,5 +1,7 @@
1
1
  """
2
2
  Source of truth for version.
3
+
4
+ Copyright 2024 Vlad Emelianov
3
5
  """
4
6
 
5
- __version__ = "1.35.57"
7
+ __version__ = "1.35.81"
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
  """
mypy_boto3_eks/waiter.pyi 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
@@ -67,92 +69,92 @@ __all__ = (
67
69
 
68
70
  class AddonActiveWaiter(Waiter):
69
71
  """
70
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonActive)
72
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive)
71
73
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
72
74
  """
73
75
  def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonActiveWaitTypeDef]) -> None:
74
76
  """
75
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonActive.wait)
77
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive.wait)
76
78
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
77
79
  """
78
80
 
79
81
  class AddonDeletedWaiter(Waiter):
80
82
  """
81
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonDeleted)
83
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted)
82
84
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
83
85
  """
84
86
  def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonDeletedWaitTypeDef]) -> None:
85
87
  """
86
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonDeleted.wait)
88
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted.wait)
87
89
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
88
90
  """
89
91
 
90
92
  class ClusterActiveWaiter(Waiter):
91
93
  """
92
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterActive)
94
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive)
93
95
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
94
96
  """
95
97
  def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterActiveWaitTypeDef]) -> None:
96
98
  """
97
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterActive.wait)
99
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive.wait)
98
100
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
99
101
  """
100
102
 
101
103
  class ClusterDeletedWaiter(Waiter):
102
104
  """
103
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterDeleted)
105
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted)
104
106
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
105
107
  """
106
108
  def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterDeletedWaitTypeDef]) -> None:
107
109
  """
108
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterDeleted.wait)
110
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted.wait)
109
111
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
110
112
  """
111
113
 
112
114
  class FargateProfileActiveWaiter(Waiter):
113
115
  """
114
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileActive)
116
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive)
115
117
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofileactivewaiter)
116
118
  """
117
119
  def wait(
118
120
  self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef]
119
121
  ) -> None:
120
122
  """
121
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileActive.wait)
123
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive.wait)
122
124
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofileactivewaiter)
123
125
  """
124
126
 
125
127
  class FargateProfileDeletedWaiter(Waiter):
126
128
  """
127
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileDeleted)
129
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted)
128
130
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofiledeletedwaiter)
129
131
  """
130
132
  def wait(
131
133
  self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef]
132
134
  ) -> None:
133
135
  """
134
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileDeleted.wait)
136
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted.wait)
135
137
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofiledeletedwaiter)
136
138
  """
137
139
 
138
140
  class NodegroupActiveWaiter(Waiter):
139
141
  """
140
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupActive)
142
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive)
141
143
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
142
144
  """
143
145
  def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupActiveWaitTypeDef]) -> None:
144
146
  """
145
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupActive.wait)
147
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive.wait)
146
148
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
147
149
  """
148
150
 
149
151
  class NodegroupDeletedWaiter(Waiter):
150
152
  """
151
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupDeleted)
153
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted)
152
154
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
153
155
  """
154
156
  def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupDeletedWaitTypeDef]) -> None:
155
157
  """
156
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupDeleted.wait)
158
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted.wait)
157
159
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
158
160
  """