@aws-sdk/client-eks 3.1113.0 → 3.1115.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.
Files changed (65) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +381 -123
  3. package/dist-es/EKS.js +14 -0
  4. package/dist-es/commands/ActivateCertificateAuthorityCommand.js +4 -0
  5. package/dist-es/commands/CreateCertificateAuthorityCommand.js +4 -0
  6. package/dist-es/commands/DeleteCertificateAuthorityCommand.js +4 -0
  7. package/dist-es/commands/DescribeCertificateAuthorityCommand.js +4 -0
  8. package/dist-es/commands/ListCertificateAuthoritiesCommand.js +4 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +76 -52
  11. package/dist-es/models/errors.js +29 -29
  12. package/dist-es/pagination/ListCertificateAuthoritiesPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/schemas/schemas_0.js +166 -36
  15. package/dist-es/waiters/index.js +1 -0
  16. package/dist-es/waiters/waitForCertificateAuthorityUpdateComplete.js +49 -0
  17. package/dist-types/EKS.d.ts +48 -0
  18. package/dist-types/EKSClient.d.ts +7 -2
  19. package/dist-types/commands/ActivateCertificateAuthorityCommand.d.ts +139 -0
  20. package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +2 -2
  21. package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +2 -2
  22. package/dist-types/commands/CancelUpdateCommand.d.ts +2 -2
  23. package/dist-types/commands/CreateCertificateAuthorityCommand.d.ts +149 -0
  24. package/dist-types/commands/CreateClusterCommand.d.ts +4 -0
  25. package/dist-types/commands/DeleteCertificateAuthorityCommand.d.ts +134 -0
  26. package/dist-types/commands/DeleteClusterCommand.d.ts +4 -0
  27. package/dist-types/commands/DeregisterClusterCommand.d.ts +4 -0
  28. package/dist-types/commands/DescribeCertificateAuthorityCommand.d.ts +104 -0
  29. package/dist-types/commands/DescribeClusterCommand.d.ts +4 -0
  30. package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -2
  31. package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -2
  32. package/dist-types/commands/ListCertificateAuthoritiesCommand.d.ts +102 -0
  33. package/dist-types/commands/RegisterClusterCommand.d.ts +4 -0
  34. package/dist-types/commands/UpdateAddonCommand.d.ts +2 -2
  35. package/dist-types/commands/UpdateCapabilityCommand.d.ts +2 -2
  36. package/dist-types/commands/UpdateClusterConfigCommand.d.ts +2 -2
  37. package/dist-types/commands/UpdateClusterVersionCommand.d.ts +2 -2
  38. package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +2 -2
  39. package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +2 -2
  40. package/dist-types/commands/index.d.ts +5 -0
  41. package/dist-types/models/enums.d.ts +120 -64
  42. package/dist-types/models/errors.d.ts +37 -37
  43. package/dist-types/models/models_0.d.ts +569 -186
  44. package/dist-types/pagination/ListCertificateAuthoritiesPaginator.d.ts +7 -0
  45. package/dist-types/pagination/index.d.ts +1 -0
  46. package/dist-types/schemas/schemas_0.d.ts +20 -0
  47. package/dist-types/ts3.4/EKS.d.ts +98 -0
  48. package/dist-types/ts3.4/EKSClient.d.ts +30 -0
  49. package/dist-types/ts3.4/commands/ActivateCertificateAuthorityCommand.d.ts +42 -0
  50. package/dist-types/ts3.4/commands/CreateCertificateAuthorityCommand.d.ts +42 -0
  51. package/dist-types/ts3.4/commands/DeleteCertificateAuthorityCommand.d.ts +42 -0
  52. package/dist-types/ts3.4/commands/DescribeCertificateAuthorityCommand.d.ts +42 -0
  53. package/dist-types/ts3.4/commands/ListCertificateAuthoritiesCommand.d.ts +42 -0
  54. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  55. package/dist-types/ts3.4/models/enums.d.ts +90 -58
  56. package/dist-types/ts3.4/models/errors.d.ts +14 -14
  57. package/dist-types/ts3.4/models/models_0.d.ts +103 -22
  58. package/dist-types/ts3.4/pagination/ListCertificateAuthoritiesPaginator.d.ts +11 -0
  59. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  60. package/dist-types/ts3.4/schemas/schemas_0.d.ts +20 -0
  61. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  62. package/dist-types/ts3.4/waiters/waitForCertificateAuthorityUpdateComplete.d.ts +15 -0
  63. package/dist-types/waiters/index.d.ts +1 -0
  64. package/dist-types/waiters/waitForCertificateAuthorityUpdateComplete.d.ts +15 -0
  65. package/package.json +1 -1
@@ -0,0 +1,134 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { DeleteCertificateAuthorityRequest, DeleteCertificateAuthorityResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link DeleteCertificateAuthorityCommand}.
11
+ */
12
+ export interface DeleteCertificateAuthorityCommandInput extends DeleteCertificateAuthorityRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link DeleteCertificateAuthorityCommand}.
18
+ */
19
+ export interface DeleteCertificateAuthorityCommandOutput extends DeleteCertificateAuthorityResponse, __MetadataBearer {
20
+ }
21
+ declare const DeleteCertificateAuthorityCommand_base: {
22
+ new (input: DeleteCertificateAuthorityCommandInput): import("@smithy/core/client").CommandImpl<DeleteCertificateAuthorityCommandInput, DeleteCertificateAuthorityCommandOutput, import("..").EKSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteCertificateAuthorityCommandInput): import("@smithy/core/client").CommandImpl<DeleteCertificateAuthorityCommandInput, DeleteCertificateAuthorityCommandOutput, import("..").EKSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Deletes a certificate authority (CA) from your cluster.</p>
28
+ * <p>Deleting a certificate authority removes its public certificate from the cluster's
29
+ * trust bundle. You can't delete the certificate authority that's currently signing
30
+ * certificates for the cluster (its <code>signingStatus</code> is <code>IN_USE</code>) — to
31
+ * remove the outgoing CA, first activate the successor CA with <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_ActivateCertificateAuthority.html">
32
+ * <code>ActivateCertificateAuthority</code>
33
+ * </a>. Amazon EKS also protects a successor CA
34
+ * from deletion in certain cases to keep a valid rotation path — for example, a successor
35
+ * that Amazon EKS appended can't be deleted while it's the only successor on the cluster. This is
36
+ * an asynchronous operation that returns an <code>update</code> object.</p>
37
+ * @example
38
+ * Use a bare-bones client and the command you need to make an API call.
39
+ * ```javascript
40
+ * import { EKSClient, DeleteCertificateAuthorityCommand } from "@aws-sdk/client-eks"; // ES Modules import
41
+ * // const { EKSClient, DeleteCertificateAuthorityCommand } = require("@aws-sdk/client-eks"); // CommonJS import
42
+ * // import type { EKSClientConfig } from "@aws-sdk/client-eks";
43
+ * const config = {}; // type is EKSClientConfig
44
+ * const client = new EKSClient(config);
45
+ * const input = { // DeleteCertificateAuthorityRequest
46
+ * clusterName: "STRING_VALUE", // required
47
+ * certificateAuthorityId: "STRING_VALUE", // required
48
+ * clientRequestToken: "STRING_VALUE",
49
+ * };
50
+ * const command = new DeleteCertificateAuthorityCommand(input);
51
+ * const response = await client.send(command);
52
+ * // { // DeleteCertificateAuthorityResponse
53
+ * // update: { // Update
54
+ * // id: "STRING_VALUE",
55
+ * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
56
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate" || "CertificateAuthorityUpdate",
57
+ * // params: [ // UpdateParams
58
+ * // { // UpdateParam
59
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig" || "ActiveCertificateAuthority" || "TrustedCertificateAuthorities" || "CertificateAuthorityId" || "SigningStatus",
60
+ * // value: "STRING_VALUE",
61
+ * // },
62
+ * // ],
63
+ * // createdAt: new Date("TIMESTAMP"),
64
+ * // errors: [ // ErrorDetails
65
+ * // { // ErrorDetail
66
+ * // errorCode: "SubnetNotFound" || "SecurityGroupNotFound" || "EniLimitReached" || "IpNotAvailable" || "AccessDenied" || "OperationNotPermitted" || "VpcIdNotFound" || "Unknown" || "NodeCreationFailure" || "PodEvictionFailure" || "InsufficientFreeAddresses" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
67
+ * // errorMessage: "STRING_VALUE",
68
+ * // resourceIds: [ // StringList
69
+ * // "STRING_VALUE",
70
+ * // ],
71
+ * // },
72
+ * // ],
73
+ * // cancellation: { // Cancellation
74
+ * // status: "InProgress" || "Failed" || "Successful",
75
+ * // reason: "STRING_VALUE",
76
+ * // },
77
+ * // },
78
+ * // certificateAuthority: { // CertificateAuthoritySummary
79
+ * // id: "STRING_VALUE",
80
+ * // createdAt: new Date("TIMESTAMP"),
81
+ * // createdBy: "EKS" || "CUSTOMER",
82
+ * // activatedAt: new Date("TIMESTAMP"),
83
+ * // activatedBy: "EKS" || "CUSTOMER",
84
+ * // signingStatus: "NOT_USED" || "ACTIVATING" || "IN_USE",
85
+ * // distributionStatus: "IN_PROGRESS" || "COMPLETE" || "FAILED" || "DELETING",
86
+ * // },
87
+ * // };
88
+ *
89
+ * ```
90
+ *
91
+ * @param DeleteCertificateAuthorityCommandInput - {@link DeleteCertificateAuthorityCommandInput}
92
+ * @returns {@link DeleteCertificateAuthorityCommandOutput}
93
+ * @see {@link DeleteCertificateAuthorityCommandInput} for command's `input` shape.
94
+ * @see {@link DeleteCertificateAuthorityCommandOutput} for command's `response` shape.
95
+ * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
96
+ *
97
+ * @throws {@link InvalidParameterException} (client fault)
98
+ * <p>The specified parameter is invalid. Review the available parameters for the API
99
+ * request.</p>
100
+ *
101
+ * @throws {@link ResourceInUseException} (client fault)
102
+ * <p>The specified resource is in use.</p>
103
+ *
104
+ * @throws {@link ResourceNotFoundException} (client fault)
105
+ * <p>The specified resource could not be found. You can view your available clusters with
106
+ * <code>ListClusters</code>. You can view your available managed node groups with
107
+ * <code>ListNodegroups</code>. Amazon EKS clusters and node groups are Amazon Web Services Region
108
+ * specific.</p>
109
+ *
110
+ * @throws {@link ServerException} (server fault)
111
+ * <p>These errors are usually caused by a server-side issue.</p>
112
+ *
113
+ * @throws {@link ServiceUnavailableException} (server fault)
114
+ * <p>The service is unavailable. Back off and retry the operation.</p>
115
+ *
116
+ * @throws {@link EKSServiceException}
117
+ * <p>Base exception class for all service exceptions from EKS service.</p>
118
+ *
119
+ *
120
+ * @public
121
+ */
122
+ export declare class DeleteCertificateAuthorityCommand extends DeleteCertificateAuthorityCommand_base {
123
+ /** @internal type navigation helper, not in runtime. */
124
+ protected static __types: {
125
+ api: {
126
+ input: DeleteCertificateAuthorityRequest;
127
+ output: DeleteCertificateAuthorityResponse;
128
+ };
129
+ sdk: {
130
+ input: DeleteCertificateAuthorityCommandInput;
131
+ output: DeleteCertificateAuthorityCommandOutput;
132
+ };
133
+ };
134
+ }
@@ -96,6 +96,10 @@ declare const DeleteClusterCommand_base: {
96
96
  * // status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED" || "UPDATING" || "PENDING",
97
97
  * // certificateAuthority: { // Certificate
98
98
  * // data: "STRING_VALUE",
99
+ * // active: { // ActiveCertificateAuthority
100
+ * // id: "STRING_VALUE",
101
+ * // activatedBy: "EKS" || "CUSTOMER",
102
+ * // },
99
103
  * // },
100
104
  * // clientRequestToken: "STRING_VALUE",
101
105
  * // platformVersion: "STRING_VALUE",
@@ -90,6 +90,10 @@ declare const DeregisterClusterCommand_base: {
90
90
  * // status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED" || "UPDATING" || "PENDING",
91
91
  * // certificateAuthority: { // Certificate
92
92
  * // data: "STRING_VALUE",
93
+ * // active: { // ActiveCertificateAuthority
94
+ * // id: "STRING_VALUE",
95
+ * // activatedBy: "EKS" || "CUSTOMER",
96
+ * // },
93
97
  * // },
94
98
  * // clientRequestToken: "STRING_VALUE",
95
99
  * // platformVersion: "STRING_VALUE",
@@ -0,0 +1,104 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { DescribeCertificateAuthorityRequest, DescribeCertificateAuthorityResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link DescribeCertificateAuthorityCommand}.
11
+ */
12
+ export interface DescribeCertificateAuthorityCommandInput extends DescribeCertificateAuthorityRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link DescribeCertificateAuthorityCommand}.
18
+ */
19
+ export interface DescribeCertificateAuthorityCommandOutput extends DescribeCertificateAuthorityResponse, __MetadataBearer {
20
+ }
21
+ declare const DescribeCertificateAuthorityCommand_base: {
22
+ new (input: DescribeCertificateAuthorityCommandInput): import("@smithy/core/client").CommandImpl<DescribeCertificateAuthorityCommandInput, DescribeCertificateAuthorityCommandOutput, import("..").EKSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeCertificateAuthorityCommandInput): import("@smithy/core/client").CommandImpl<DescribeCertificateAuthorityCommandInput, DescribeCertificateAuthorityCommandOutput, import("..").EKSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Returns detailed information about a certificate authority (CA) in your cluster,
28
+ * including its validity period, signing and distribution status, provenance, scheduled
29
+ * auto-activation events, and public certificate data.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { EKSClient, DescribeCertificateAuthorityCommand } from "@aws-sdk/client-eks"; // ES Modules import
34
+ * // const { EKSClient, DescribeCertificateAuthorityCommand } = require("@aws-sdk/client-eks"); // CommonJS import
35
+ * // import type { EKSClientConfig } from "@aws-sdk/client-eks";
36
+ * const config = {}; // type is EKSClientConfig
37
+ * const client = new EKSClient(config);
38
+ * const input = { // DescribeCertificateAuthorityRequest
39
+ * clusterName: "STRING_VALUE", // required
40
+ * certificateAuthorityId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new DescribeCertificateAuthorityCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // DescribeCertificateAuthorityResponse
45
+ * // certificateAuthority: { // CertificateAuthority
46
+ * // id: "STRING_VALUE",
47
+ * // createdAt: new Date("TIMESTAMP"),
48
+ * // createdBy: "EKS" || "CUSTOMER",
49
+ * // activatedAt: new Date("TIMESTAMP"),
50
+ * // activatedBy: "EKS" || "CUSTOMER",
51
+ * // signingStatus: "NOT_USED" || "ACTIVATING" || "IN_USE",
52
+ * // distributionStatus: "IN_PROGRESS" || "COMPLETE" || "FAILED" || "DELETING",
53
+ * // validity: { // CertificateAuthorityValidity
54
+ * // notBefore: new Date("TIMESTAMP"),
55
+ * // notAfter: new Date("TIMESTAMP"),
56
+ * // },
57
+ * // scheduledEvents: { // CertificateAuthorityScheduledEvents
58
+ * // firstAutoActivation: new Date("TIMESTAMP"),
59
+ * // finalAutoActivation: new Date("TIMESTAMP"),
60
+ * // },
61
+ * // rollbackAvailable: true || false,
62
+ * // data: "STRING_VALUE",
63
+ * // },
64
+ * // };
65
+ *
66
+ * ```
67
+ *
68
+ * @param DescribeCertificateAuthorityCommandInput - {@link DescribeCertificateAuthorityCommandInput}
69
+ * @returns {@link DescribeCertificateAuthorityCommandOutput}
70
+ * @see {@link DescribeCertificateAuthorityCommandInput} for command's `input` shape.
71
+ * @see {@link DescribeCertificateAuthorityCommandOutput} for command's `response` shape.
72
+ * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
73
+ *
74
+ * @throws {@link ResourceNotFoundException} (client fault)
75
+ * <p>The specified resource could not be found. You can view your available clusters with
76
+ * <code>ListClusters</code>. You can view your available managed node groups with
77
+ * <code>ListNodegroups</code>. Amazon EKS clusters and node groups are Amazon Web Services Region
78
+ * specific.</p>
79
+ *
80
+ * @throws {@link ServerException} (server fault)
81
+ * <p>These errors are usually caused by a server-side issue.</p>
82
+ *
83
+ * @throws {@link ServiceUnavailableException} (server fault)
84
+ * <p>The service is unavailable. Back off and retry the operation.</p>
85
+ *
86
+ * @throws {@link EKSServiceException}
87
+ * <p>Base exception class for all service exceptions from EKS service.</p>
88
+ *
89
+ *
90
+ * @public
91
+ */
92
+ export declare class DescribeCertificateAuthorityCommand extends DescribeCertificateAuthorityCommand_base {
93
+ /** @internal type navigation helper, not in runtime. */
94
+ protected static __types: {
95
+ api: {
96
+ input: DescribeCertificateAuthorityRequest;
97
+ output: DescribeCertificateAuthorityResponse;
98
+ };
99
+ sdk: {
100
+ input: DescribeCertificateAuthorityCommandInput;
101
+ output: DescribeCertificateAuthorityCommandOutput;
102
+ };
103
+ };
104
+ }
@@ -96,6 +96,10 @@ declare const DescribeClusterCommand_base: {
96
96
  * // status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED" || "UPDATING" || "PENDING",
97
97
  * // certificateAuthority: { // Certificate
98
98
  * // data: "STRING_VALUE",
99
+ * // active: { // ActiveCertificateAuthority
100
+ * // id: "STRING_VALUE",
101
+ * // activatedBy: "EKS" || "CUSTOMER",
102
+ * // },
99
103
  * // },
100
104
  * // clientRequestToken: "STRING_VALUE",
101
105
  * // platformVersion: "STRING_VALUE",
@@ -49,10 +49,10 @@ declare const DescribeUpdateCommand_base: {
49
49
  * // update: { // Update
50
50
  * // id: "STRING_VALUE",
51
51
  * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
52
- * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
52
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate" || "CertificateAuthorityUpdate",
53
53
  * // params: [ // UpdateParams
54
54
  * // { // UpdateParam
55
- * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
55
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig" || "ActiveCertificateAuthority" || "TrustedCertificateAuthorities" || "CertificateAuthorityId" || "SigningStatus",
56
56
  * // value: "STRING_VALUE",
57
57
  * // },
58
58
  * // ],
@@ -50,10 +50,10 @@ declare const DisassociateIdentityProviderConfigCommand_base: {
50
50
  * // update: { // Update
51
51
  * // id: "STRING_VALUE",
52
52
  * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
53
- * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
53
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate" || "CertificateAuthorityUpdate",
54
54
  * // params: [ // UpdateParams
55
55
  * // { // UpdateParam
56
- * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
56
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig" || "ActiveCertificateAuthority" || "TrustedCertificateAuthorities" || "CertificateAuthorityId" || "SigningStatus",
57
57
  * // value: "STRING_VALUE",
58
58
  * // },
59
59
  * // ],
@@ -0,0 +1,102 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { ListCertificateAuthoritiesRequest, ListCertificateAuthoritiesResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link ListCertificateAuthoritiesCommand}.
11
+ */
12
+ export interface ListCertificateAuthoritiesCommandInput extends ListCertificateAuthoritiesRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link ListCertificateAuthoritiesCommand}.
18
+ */
19
+ export interface ListCertificateAuthoritiesCommandOutput extends ListCertificateAuthoritiesResponse, __MetadataBearer {
20
+ }
21
+ declare const ListCertificateAuthoritiesCommand_base: {
22
+ new (input: ListCertificateAuthoritiesCommandInput): import("@smithy/core/client").CommandImpl<ListCertificateAuthoritiesCommandInput, ListCertificateAuthoritiesCommandOutput, import("..").EKSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListCertificateAuthoritiesCommandInput): import("@smithy/core/client").CommandImpl<ListCertificateAuthoritiesCommandInput, ListCertificateAuthoritiesCommandOutput, import("..").EKSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Lists the certificate authorities (CAs) for your cluster. A cluster has at most two
28
+ * certificate authorities: the outgoing CA that's currently signing and, during a rotation,
29
+ * one successor CA.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { EKSClient, ListCertificateAuthoritiesCommand } from "@aws-sdk/client-eks"; // ES Modules import
34
+ * // const { EKSClient, ListCertificateAuthoritiesCommand } = require("@aws-sdk/client-eks"); // CommonJS import
35
+ * // import type { EKSClientConfig } from "@aws-sdk/client-eks";
36
+ * const config = {}; // type is EKSClientConfig
37
+ * const client = new EKSClient(config);
38
+ * const input = { // ListCertificateAuthoritiesRequest
39
+ * clusterName: "STRING_VALUE", // required
40
+ * maxResults: Number("int"),
41
+ * nextToken: "STRING_VALUE",
42
+ * };
43
+ * const command = new ListCertificateAuthoritiesCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // ListCertificateAuthoritiesResponse
46
+ * // certificateAuthorities: [ // CertificateAuthoritySummaryList
47
+ * // { // CertificateAuthoritySummary
48
+ * // id: "STRING_VALUE",
49
+ * // createdAt: new Date("TIMESTAMP"),
50
+ * // createdBy: "EKS" || "CUSTOMER",
51
+ * // activatedAt: new Date("TIMESTAMP"),
52
+ * // activatedBy: "EKS" || "CUSTOMER",
53
+ * // signingStatus: "NOT_USED" || "ACTIVATING" || "IN_USE",
54
+ * // distributionStatus: "IN_PROGRESS" || "COMPLETE" || "FAILED" || "DELETING",
55
+ * // },
56
+ * // ],
57
+ * // nextToken: "STRING_VALUE",
58
+ * // };
59
+ *
60
+ * ```
61
+ *
62
+ * @param ListCertificateAuthoritiesCommandInput - {@link ListCertificateAuthoritiesCommandInput}
63
+ * @returns {@link ListCertificateAuthoritiesCommandOutput}
64
+ * @see {@link ListCertificateAuthoritiesCommandInput} for command's `input` shape.
65
+ * @see {@link ListCertificateAuthoritiesCommandOutput} for command's `response` shape.
66
+ * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
67
+ *
68
+ * @throws {@link InvalidParameterException} (client fault)
69
+ * <p>The specified parameter is invalid. Review the available parameters for the API
70
+ * request.</p>
71
+ *
72
+ * @throws {@link ResourceNotFoundException} (client fault)
73
+ * <p>The specified resource could not be found. You can view your available clusters with
74
+ * <code>ListClusters</code>. You can view your available managed node groups with
75
+ * <code>ListNodegroups</code>. Amazon EKS clusters and node groups are Amazon Web Services Region
76
+ * specific.</p>
77
+ *
78
+ * @throws {@link ServerException} (server fault)
79
+ * <p>These errors are usually caused by a server-side issue.</p>
80
+ *
81
+ * @throws {@link ServiceUnavailableException} (server fault)
82
+ * <p>The service is unavailable. Back off and retry the operation.</p>
83
+ *
84
+ * @throws {@link EKSServiceException}
85
+ * <p>Base exception class for all service exceptions from EKS service.</p>
86
+ *
87
+ *
88
+ * @public
89
+ */
90
+ export declare class ListCertificateAuthoritiesCommand extends ListCertificateAuthoritiesCommand_base {
91
+ /** @internal type navigation helper, not in runtime. */
92
+ protected static __types: {
93
+ api: {
94
+ input: ListCertificateAuthoritiesRequest;
95
+ output: ListCertificateAuthoritiesResponse;
96
+ };
97
+ sdk: {
98
+ input: ListCertificateAuthoritiesCommandInput;
99
+ output: ListCertificateAuthoritiesCommandOutput;
100
+ };
101
+ };
102
+ }
@@ -109,6 +109,10 @@ declare const RegisterClusterCommand_base: {
109
109
  * // status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED" || "UPDATING" || "PENDING",
110
110
  * // certificateAuthority: { // Certificate
111
111
  * // data: "STRING_VALUE",
112
+ * // active: { // ActiveCertificateAuthority
113
+ * // id: "STRING_VALUE",
114
+ * // activatedBy: "EKS" || "CUSTOMER",
115
+ * // },
112
116
  * // },
113
117
  * // clientRequestToken: "STRING_VALUE",
114
118
  * // platformVersion: "STRING_VALUE",
@@ -54,10 +54,10 @@ declare const UpdateAddonCommand_base: {
54
54
  * // update: { // Update
55
55
  * // id: "STRING_VALUE",
56
56
  * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
57
- * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
57
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate" || "CertificateAuthorityUpdate",
58
58
  * // params: [ // UpdateParams
59
59
  * // { // UpdateParam
60
- * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
60
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig" || "ActiveCertificateAuthority" || "TrustedCertificateAuthorities" || "CertificateAuthorityId" || "SigningStatus",
61
61
  * // value: "STRING_VALUE",
62
62
  * // },
63
63
  * // ],
@@ -80,10 +80,10 @@ declare const UpdateCapabilityCommand_base: {
80
80
  * // update: { // Update
81
81
  * // id: "STRING_VALUE",
82
82
  * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
83
- * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
83
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate" || "CertificateAuthorityUpdate",
84
84
  * // params: [ // UpdateParams
85
85
  * // { // UpdateParam
86
- * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
86
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig" || "ActiveCertificateAuthority" || "TrustedCertificateAuthorities" || "CertificateAuthorityId" || "SigningStatus",
87
87
  * // value: "STRING_VALUE",
88
88
  * // },
89
89
  * // ],
@@ -190,10 +190,10 @@ declare const UpdateClusterConfigCommand_base: {
190
190
  * // update: { // Update
191
191
  * // id: "STRING_VALUE",
192
192
  * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
193
- * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
193
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate" || "CertificateAuthorityUpdate",
194
194
  * // params: [ // UpdateParams
195
195
  * // { // UpdateParam
196
- * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
196
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig" || "ActiveCertificateAuthority" || "TrustedCertificateAuthorities" || "CertificateAuthorityId" || "SigningStatus",
197
197
  * // value: "STRING_VALUE",
198
198
  * // },
199
199
  * // ],
@@ -59,10 +59,10 @@ declare const UpdateClusterVersionCommand_base: {
59
59
  * // update: { // Update
60
60
  * // id: "STRING_VALUE",
61
61
  * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
62
- * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
62
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate" || "CertificateAuthorityUpdate",
63
63
  * // params: [ // UpdateParams
64
64
  * // { // UpdateParam
65
- * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
65
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig" || "ActiveCertificateAuthority" || "TrustedCertificateAuthorities" || "CertificateAuthorityId" || "SigningStatus",
66
66
  * // value: "STRING_VALUE",
67
67
  * // },
68
68
  * // ],
@@ -105,10 +105,10 @@ declare const UpdateNodegroupConfigCommand_base: {
105
105
  * // update: { // Update
106
106
  * // id: "STRING_VALUE",
107
107
  * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
108
- * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
108
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate" || "CertificateAuthorityUpdate",
109
109
  * // params: [ // UpdateParams
110
110
  * // { // UpdateParam
111
- * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
111
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig" || "ActiveCertificateAuthority" || "TrustedCertificateAuthorities" || "CertificateAuthorityId" || "SigningStatus",
112
112
  * // value: "STRING_VALUE",
113
113
  * // },
114
114
  * // ],
@@ -73,10 +73,10 @@ declare const UpdateNodegroupVersionCommand_base: {
73
73
  * // update: { // Update
74
74
  * // id: "STRING_VALUE",
75
75
  * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
76
- * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
76
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate" || "CertificateAuthorityUpdate",
77
77
  * // params: [ // UpdateParams
78
78
  * // { // UpdateParam
79
- * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
79
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig" || "ActiveCertificateAuthority" || "TrustedCertificateAuthorities" || "CertificateAuthorityId" || "SigningStatus",
80
80
  * // value: "STRING_VALUE",
81
81
  * // },
82
82
  * // ],
@@ -1,3 +1,4 @@
1
+ export * from "./ActivateCertificateAuthorityCommand";
1
2
  export * from "./AssociateAccessPolicyCommand";
2
3
  export * from "./AssociateEncryptionConfigCommand";
3
4
  export * from "./AssociateIdentityProviderConfigCommand";
@@ -5,6 +6,7 @@ export * from "./CancelUpdateCommand";
5
6
  export * from "./CreateAccessEntryCommand";
6
7
  export * from "./CreateAddonCommand";
7
8
  export * from "./CreateCapabilityCommand";
9
+ export * from "./CreateCertificateAuthorityCommand";
8
10
  export * from "./CreateClusterCommand";
9
11
  export * from "./CreateEksAnywhereSubscriptionCommand";
10
12
  export * from "./CreateFargateProfileCommand";
@@ -13,6 +15,7 @@ export * from "./CreatePodIdentityAssociationCommand";
13
15
  export * from "./DeleteAccessEntryCommand";
14
16
  export * from "./DeleteAddonCommand";
15
17
  export * from "./DeleteCapabilityCommand";
18
+ export * from "./DeleteCertificateAuthorityCommand";
16
19
  export * from "./DeleteClusterCommand";
17
20
  export * from "./DeleteEksAnywhereSubscriptionCommand";
18
21
  export * from "./DeleteFargateProfileCommand";
@@ -24,6 +27,7 @@ export * from "./DescribeAddonCommand";
24
27
  export * from "./DescribeAddonConfigurationCommand";
25
28
  export * from "./DescribeAddonVersionsCommand";
26
29
  export * from "./DescribeCapabilityCommand";
30
+ export * from "./DescribeCertificateAuthorityCommand";
27
31
  export * from "./DescribeClusterCommand";
28
32
  export * from "./DescribeClusterVersionsCommand";
29
33
  export * from "./DescribeEksAnywhereSubscriptionCommand";
@@ -41,6 +45,7 @@ export * from "./ListAccessPoliciesCommand";
41
45
  export * from "./ListAddonsCommand";
42
46
  export * from "./ListAssociatedAccessPoliciesCommand";
43
47
  export * from "./ListCapabilitiesCommand";
48
+ export * from "./ListCertificateAuthoritiesCommand";
44
49
  export * from "./ListClustersCommand";
45
50
  export * from "./ListEksAnywhereSubscriptionsCommand";
46
51
  export * from "./ListFargateProfilesCommand";