@aws-sdk/client-eks 3.1112.0 → 3.1114.0
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.
- package/README.md +35 -0
- package/dist-cjs/index.js +381 -123
- package/dist-es/EKS.js +14 -0
- package/dist-es/commands/ActivateCertificateAuthorityCommand.js +4 -0
- package/dist-es/commands/CreateCertificateAuthorityCommand.js +4 -0
- package/dist-es/commands/DeleteCertificateAuthorityCommand.js +4 -0
- package/dist-es/commands/DescribeCertificateAuthorityCommand.js +4 -0
- package/dist-es/commands/ListCertificateAuthoritiesCommand.js +4 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +76 -52
- package/dist-es/models/errors.js +29 -29
- package/dist-es/pagination/ListCertificateAuthoritiesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +166 -36
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForCertificateAuthorityUpdateComplete.js +49 -0
- package/dist-types/EKS.d.ts +48 -0
- package/dist-types/EKSClient.d.ts +7 -2
- package/dist-types/commands/ActivateCertificateAuthorityCommand.d.ts +139 -0
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +2 -2
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/CancelUpdateCommand.d.ts +2 -2
- package/dist-types/commands/CreateCertificateAuthorityCommand.d.ts +149 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCertificateAuthorityCommand.d.ts +134 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterClusterCommand.d.ts +4 -0
- package/dist-types/commands/DescribeCertificateAuthorityCommand.d.ts +104 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +4 -0
- package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/ListCertificateAuthoritiesCommand.d.ts +102 -0
- package/dist-types/commands/RegisterClusterCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAddonCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCapabilityCommand.d.ts +2 -2
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +2 -2
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +120 -64
- package/dist-types/models/errors.d.ts +37 -37
- package/dist-types/models/models_0.d.ts +569 -186
- package/dist-types/pagination/ListCertificateAuthoritiesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +20 -0
- package/dist-types/ts3.4/EKS.d.ts +98 -0
- package/dist-types/ts3.4/EKSClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/ActivateCertificateAuthorityCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCertificateAuthorityCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteCertificateAuthorityCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeCertificateAuthorityCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCertificateAuthoritiesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +90 -58
- package/dist-types/ts3.4/models/errors.d.ts +14 -14
- package/dist-types/ts3.4/models/models_0.d.ts +103 -22
- package/dist-types/ts3.4/pagination/ListCertificateAuthoritiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +20 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForCertificateAuthorityUpdateComplete.d.ts +15 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForCertificateAuthorityUpdateComplete.d.ts +15 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -188,6 +188,13 @@ see LICENSE for more information.
|
|
|
188
188
|
|
|
189
189
|
## Client Commands (Operations List)
|
|
190
190
|
|
|
191
|
+
<details>
|
|
192
|
+
<summary>
|
|
193
|
+
ActivateCertificateAuthority
|
|
194
|
+
</summary>
|
|
195
|
+
|
|
196
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/eks/command/ActivateCertificateAuthorityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-eks/Interface/ActivateCertificateAuthorityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-eks/Interface/ActivateCertificateAuthorityCommandOutput/)
|
|
197
|
+
</details>
|
|
191
198
|
<details>
|
|
192
199
|
<summary>
|
|
193
200
|
AssociateAccessPolicy
|
|
@@ -239,6 +246,13 @@ CreateCapability
|
|
|
239
246
|
</details>
|
|
240
247
|
<details>
|
|
241
248
|
<summary>
|
|
249
|
+
CreateCertificateAuthority
|
|
250
|
+
</summary>
|
|
251
|
+
|
|
252
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/eks/command/CreateCertificateAuthorityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-eks/Interface/CreateCertificateAuthorityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-eks/Interface/CreateCertificateAuthorityCommandOutput/)
|
|
253
|
+
</details>
|
|
254
|
+
<details>
|
|
255
|
+
<summary>
|
|
242
256
|
CreateCluster
|
|
243
257
|
</summary>
|
|
244
258
|
|
|
@@ -295,6 +309,13 @@ DeleteCapability
|
|
|
295
309
|
</details>
|
|
296
310
|
<details>
|
|
297
311
|
<summary>
|
|
312
|
+
DeleteCertificateAuthority
|
|
313
|
+
</summary>
|
|
314
|
+
|
|
315
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/eks/command/DeleteCertificateAuthorityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-eks/Interface/DeleteCertificateAuthorityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-eks/Interface/DeleteCertificateAuthorityCommandOutput/)
|
|
316
|
+
</details>
|
|
317
|
+
<details>
|
|
318
|
+
<summary>
|
|
298
319
|
DeleteCluster
|
|
299
320
|
</summary>
|
|
300
321
|
|
|
@@ -372,6 +393,13 @@ DescribeCapability
|
|
|
372
393
|
</details>
|
|
373
394
|
<details>
|
|
374
395
|
<summary>
|
|
396
|
+
DescribeCertificateAuthority
|
|
397
|
+
</summary>
|
|
398
|
+
|
|
399
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/eks/command/DescribeCertificateAuthorityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-eks/Interface/DescribeCertificateAuthorityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-eks/Interface/DescribeCertificateAuthorityCommandOutput/)
|
|
400
|
+
</details>
|
|
401
|
+
<details>
|
|
402
|
+
<summary>
|
|
375
403
|
DescribeCluster
|
|
376
404
|
</summary>
|
|
377
405
|
|
|
@@ -491,6 +519,13 @@ ListCapabilities
|
|
|
491
519
|
</details>
|
|
492
520
|
<details>
|
|
493
521
|
<summary>
|
|
522
|
+
ListCertificateAuthorities
|
|
523
|
+
</summary>
|
|
524
|
+
|
|
525
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/eks/command/ListCertificateAuthoritiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-eks/Interface/ListCertificateAuthoritiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-eks/Interface/ListCertificateAuthoritiesCommandOutput/)
|
|
526
|
+
</details>
|
|
527
|
+
<details>
|
|
528
|
+
<summary>
|
|
494
529
|
ListClusters
|
|
495
530
|
</summary>
|
|
496
531
|
|