@aws-sdk/client-eks 3.1113.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.
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
@@ -9,67 +9,33 @@ export declare const AccessScopeType: {
9
9
  readonly namespace: "namespace";
10
10
  };
11
11
  export type AccessScopeType = (typeof AccessScopeType)[keyof typeof AccessScopeType];
12
- export declare const AddonIssueCode: {
13
- readonly ACCESS_DENIED: "AccessDenied";
14
- readonly ADDON_PERMISSION_FAILURE: "AddonPermissionFailure";
15
- readonly ADDON_SUBSCRIPTION_NEEDED: "AddonSubscriptionNeeded";
16
- readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
17
- readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
18
- readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
19
- readonly INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas";
20
- readonly INTERNAL_FAILURE: "InternalFailure";
21
- readonly K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound";
22
- readonly UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification";
23
- };
24
- export type AddonIssueCode = (typeof AddonIssueCode)[keyof typeof AddonIssueCode];
25
- export declare const AddonStatus: {
26
- readonly ACTIVE: "ACTIVE";
27
- readonly CREATE_FAILED: "CREATE_FAILED";
28
- readonly CREATING: "CREATING";
29
- readonly DEGRADED: "DEGRADED";
30
- readonly DELETE_FAILED: "DELETE_FAILED";
12
+ export declare const CertificateAuthorityActivatedBy: {
13
+ readonly CUSTOMER: "CUSTOMER";
14
+ readonly EKS: "EKS";
15
+ };
16
+ export type CertificateAuthorityActivatedBy =
17
+ (typeof CertificateAuthorityActivatedBy)[keyof typeof CertificateAuthorityActivatedBy];
18
+ export declare const CertificateAuthorityCreatedBy: {
19
+ readonly CUSTOMER: "CUSTOMER";
20
+ readonly EKS: "EKS";
21
+ };
22
+ export type CertificateAuthorityCreatedBy =
23
+ (typeof CertificateAuthorityCreatedBy)[keyof typeof CertificateAuthorityCreatedBy];
24
+ export declare const CertificateAuthorityDistributionStatus: {
25
+ readonly COMPLETE: "COMPLETE";
31
26
  readonly DELETING: "DELETING";
32
- readonly UPDATE_FAILED: "UPDATE_FAILED";
33
- readonly UPDATING: "UPDATING";
34
- };
35
- export type AddonStatus = (typeof AddonStatus)[keyof typeof AddonStatus];
36
- export declare const AMITypes: {
37
- readonly AL2023_ARM_64_NVIDIA: "AL2023_ARM_64_NVIDIA";
38
- readonly AL2023_ARM_64_STANDARD: "AL2023_ARM_64_STANDARD";
39
- readonly AL2023_x86_64_NEURON: "AL2023_x86_64_NEURON";
40
- readonly AL2023_x86_64_NVIDIA: "AL2023_x86_64_NVIDIA";
41
- readonly AL2023_x86_64_STANDARD: "AL2023_x86_64_STANDARD";
42
- readonly AL2_ARM_64: "AL2_ARM_64";
43
- readonly AL2_x86_64: "AL2_x86_64";
44
- readonly AL2_x86_64_GPU: "AL2_x86_64_GPU";
45
- readonly BOTTLEROCKET_ARM_64: "BOTTLEROCKET_ARM_64";
46
- readonly BOTTLEROCKET_ARM_64_FIPS: "BOTTLEROCKET_ARM_64_FIPS";
47
- readonly BOTTLEROCKET_ARM_64_NVIDIA: "BOTTLEROCKET_ARM_64_NVIDIA";
48
- readonly BOTTLEROCKET_ARM_64_NVIDIA_FIPS: "BOTTLEROCKET_ARM_64_NVIDIA_FIPS";
49
- readonly BOTTLEROCKET_x86_64: "BOTTLEROCKET_x86_64";
50
- readonly BOTTLEROCKET_x86_64_FIPS: "BOTTLEROCKET_x86_64_FIPS";
51
- readonly BOTTLEROCKET_x86_64_NVIDIA: "BOTTLEROCKET_x86_64_NVIDIA";
52
- readonly BOTTLEROCKET_x86_64_NVIDIA_FIPS: "BOTTLEROCKET_x86_64_NVIDIA_FIPS";
53
- readonly CUSTOM: "CUSTOM";
54
- readonly WINDOWS_CORE_2019_x86_64: "WINDOWS_CORE_2019_x86_64";
55
- readonly WINDOWS_CORE_2022_x86_64: "WINDOWS_CORE_2022_x86_64";
56
- readonly WINDOWS_CORE_2025_x86_64: "WINDOWS_CORE_2025_x86_64";
57
- readonly WINDOWS_FULL_2019_x86_64: "WINDOWS_FULL_2019_x86_64";
58
- readonly WINDOWS_FULL_2022_x86_64: "WINDOWS_FULL_2022_x86_64";
59
- readonly WINDOWS_FULL_2025_x86_64: "WINDOWS_FULL_2025_x86_64";
27
+ readonly FAILED: "FAILED";
28
+ readonly IN_PROGRESS: "IN_PROGRESS";
60
29
  };
61
- export type AMITypes = (typeof AMITypes)[keyof typeof AMITypes];
62
- export declare const SsoIdentityType: {
63
- readonly SSO_GROUP: "SSO_GROUP";
64
- readonly SSO_USER: "SSO_USER";
30
+ export type CertificateAuthorityDistributionStatus =
31
+ (typeof CertificateAuthorityDistributionStatus)[keyof typeof CertificateAuthorityDistributionStatus];
32
+ export declare const CertificateAuthoritySigningStatus: {
33
+ readonly ACTIVATING: "ACTIVATING";
34
+ readonly IN_USE: "IN_USE";
35
+ readonly NOT_USED: "NOT_USED";
65
36
  };
66
- export type SsoIdentityType = (typeof SsoIdentityType)[keyof typeof SsoIdentityType];
67
- export declare const ArgoCdRole: {
68
- readonly ADMIN: "ADMIN";
69
- readonly EDITOR: "EDITOR";
70
- readonly VIEWER: "VIEWER";
71
- };
72
- export type ArgoCdRole = (typeof ArgoCdRole)[keyof typeof ArgoCdRole];
37
+ export type CertificateAuthoritySigningStatus =
38
+ (typeof CertificateAuthoritySigningStatus)[keyof typeof CertificateAuthoritySigningStatus];
73
39
  export declare const CancellationStatus: {
74
40
  readonly FAILED: "Failed";
75
41
  readonly IN_PROGRESS: "InProgress";
@@ -97,8 +63,10 @@ export declare const ErrorCode: {
97
63
  };
98
64
  export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
99
65
  export declare const UpdateParamType: {
66
+ readonly ACTIVE_CERTIFICATE_AUTHORITY: "ActiveCertificateAuthority";
100
67
  readonly ADDON_VERSION: "AddonVersion";
101
68
  readonly AUTHENTICATION_MODE: "AuthenticationMode";
69
+ readonly CERTIFICATE_AUTHORITY_ID: "CertificateAuthorityId";
102
70
  readonly CLUSTER_LOGGING: "ClusterLogging";
103
71
  readonly COMPUTE_CONFIG: "ComputeConfig";
104
72
  readonly CONFIGURATION_VALUES: "ConfigurationValues";
@@ -136,10 +104,12 @@ export declare const UpdateParamType: {
136
104
  readonly ROLE_MAPPINGS_TO_REMOVE: "RoleMappingsToRemove";
137
105
  readonly SECURITY_GROUPS: "SecurityGroups";
138
106
  readonly SERVICE_ACCOUNT_ROLE_ARN: "ServiceAccountRoleArn";
107
+ readonly SIGNING_STATUS: "SigningStatus";
139
108
  readonly STORAGE_CONFIG: "StorageConfig";
140
109
  readonly SUBNETS: "Subnets";
141
110
  readonly TAINTS_TO_ADD: "TaintsToAdd";
142
111
  readonly TAINTS_TO_REMOVE: "TaintsToRemove";
112
+ readonly TRUSTED_CERTIFICATE_AUTHORITIES: "TrustedCertificateAuthorities";
143
113
  readonly UPDATED_TIER: "UpdatedTier";
144
114
  readonly UPDATE_STRATEGY: "UpdateStrategy";
145
115
  readonly UPGRADE_POLICY: "UpgradePolicy";
@@ -167,6 +137,7 @@ export declare const UpdateType: {
167
137
  readonly ASSOCIATE_IDENTITY_PROVIDER_CONFIG: "AssociateIdentityProviderConfig";
168
138
  readonly AUTO_MODE_UPDATE: "AutoModeUpdate";
169
139
  readonly CAPABILITY_UPDATE: "CapabilityUpdate";
140
+ readonly CERTIFICATE_AUTHORITY_UPDATE: "CertificateAuthorityUpdate";
170
141
  readonly CONFIG_UPDATE: "ConfigUpdate";
171
142
  readonly CONTROL_PLANE_COMPONENT_CONFIG_UPDATE: "ControlPlaneComponentConfigUpdate";
172
143
  readonly CONTROL_PLANE_EGRESS_UPDATE: "ControlPlaneEgressUpdate";
@@ -184,6 +155,67 @@ export declare const UpdateType: {
184
155
  readonly ZONAL_SHIFT_CONFIG_UPDATE: "ZonalShiftConfigUpdate";
185
156
  };
186
157
  export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
158
+ export declare const AddonIssueCode: {
159
+ readonly ACCESS_DENIED: "AccessDenied";
160
+ readonly ADDON_PERMISSION_FAILURE: "AddonPermissionFailure";
161
+ readonly ADDON_SUBSCRIPTION_NEEDED: "AddonSubscriptionNeeded";
162
+ readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
163
+ readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
164
+ readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
165
+ readonly INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas";
166
+ readonly INTERNAL_FAILURE: "InternalFailure";
167
+ readonly K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound";
168
+ readonly UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification";
169
+ };
170
+ export type AddonIssueCode = (typeof AddonIssueCode)[keyof typeof AddonIssueCode];
171
+ export declare const AddonStatus: {
172
+ readonly ACTIVE: "ACTIVE";
173
+ readonly CREATE_FAILED: "CREATE_FAILED";
174
+ readonly CREATING: "CREATING";
175
+ readonly DEGRADED: "DEGRADED";
176
+ readonly DELETE_FAILED: "DELETE_FAILED";
177
+ readonly DELETING: "DELETING";
178
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
179
+ readonly UPDATING: "UPDATING";
180
+ };
181
+ export type AddonStatus = (typeof AddonStatus)[keyof typeof AddonStatus];
182
+ export declare const AMITypes: {
183
+ readonly AL2023_ARM_64_NVIDIA: "AL2023_ARM_64_NVIDIA";
184
+ readonly AL2023_ARM_64_STANDARD: "AL2023_ARM_64_STANDARD";
185
+ readonly AL2023_x86_64_NEURON: "AL2023_x86_64_NEURON";
186
+ readonly AL2023_x86_64_NVIDIA: "AL2023_x86_64_NVIDIA";
187
+ readonly AL2023_x86_64_STANDARD: "AL2023_x86_64_STANDARD";
188
+ readonly AL2_ARM_64: "AL2_ARM_64";
189
+ readonly AL2_x86_64: "AL2_x86_64";
190
+ readonly AL2_x86_64_GPU: "AL2_x86_64_GPU";
191
+ readonly BOTTLEROCKET_ARM_64: "BOTTLEROCKET_ARM_64";
192
+ readonly BOTTLEROCKET_ARM_64_FIPS: "BOTTLEROCKET_ARM_64_FIPS";
193
+ readonly BOTTLEROCKET_ARM_64_NVIDIA: "BOTTLEROCKET_ARM_64_NVIDIA";
194
+ readonly BOTTLEROCKET_ARM_64_NVIDIA_FIPS: "BOTTLEROCKET_ARM_64_NVIDIA_FIPS";
195
+ readonly BOTTLEROCKET_x86_64: "BOTTLEROCKET_x86_64";
196
+ readonly BOTTLEROCKET_x86_64_FIPS: "BOTTLEROCKET_x86_64_FIPS";
197
+ readonly BOTTLEROCKET_x86_64_NVIDIA: "BOTTLEROCKET_x86_64_NVIDIA";
198
+ readonly BOTTLEROCKET_x86_64_NVIDIA_FIPS: "BOTTLEROCKET_x86_64_NVIDIA_FIPS";
199
+ readonly CUSTOM: "CUSTOM";
200
+ readonly WINDOWS_CORE_2019_x86_64: "WINDOWS_CORE_2019_x86_64";
201
+ readonly WINDOWS_CORE_2022_x86_64: "WINDOWS_CORE_2022_x86_64";
202
+ readonly WINDOWS_CORE_2025_x86_64: "WINDOWS_CORE_2025_x86_64";
203
+ readonly WINDOWS_FULL_2019_x86_64: "WINDOWS_FULL_2019_x86_64";
204
+ readonly WINDOWS_FULL_2022_x86_64: "WINDOWS_FULL_2022_x86_64";
205
+ readonly WINDOWS_FULL_2025_x86_64: "WINDOWS_FULL_2025_x86_64";
206
+ };
207
+ export type AMITypes = (typeof AMITypes)[keyof typeof AMITypes];
208
+ export declare const SsoIdentityType: {
209
+ readonly SSO_GROUP: "SSO_GROUP";
210
+ readonly SSO_USER: "SSO_USER";
211
+ };
212
+ export type SsoIdentityType = (typeof SsoIdentityType)[keyof typeof SsoIdentityType];
213
+ export declare const ArgoCdRole: {
214
+ readonly ADMIN: "ADMIN";
215
+ readonly EDITOR: "EDITOR";
216
+ readonly VIEWER: "VIEWER";
217
+ };
218
+ export type ArgoCdRole = (typeof ArgoCdRole)[keyof typeof ArgoCdRole];
187
219
  export declare const ResolveConflicts: {
188
220
  readonly NONE: "NONE";
189
221
  readonly OVERWRITE: "OVERWRITE";
@@ -15,15 +15,6 @@ export declare class InvalidParameterException extends __BaseException {
15
15
  subscriptionId?: string | undefined;
16
16
  constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
17
17
  }
18
- export declare class InvalidRequestException extends __BaseException {
19
- readonly name: "InvalidRequestException";
20
- readonly $fault: "client";
21
- clusterName?: string | undefined;
22
- nodegroupName?: string | undefined;
23
- addonName?: string | undefined;
24
- subscriptionId?: string | undefined;
25
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
26
- }
27
18
  export declare class ResourceNotFoundException extends __BaseException {
28
19
  readonly name: "ResourceNotFoundException";
29
20
  readonly $fault: "client";
@@ -43,6 +34,20 @@ export declare class ServerException extends __BaseException {
43
34
  subscriptionId?: string | undefined;
44
35
  constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
45
36
  }
37
+ export declare class ServiceUnavailableException extends __BaseException {
38
+ readonly name: "ServiceUnavailableException";
39
+ readonly $fault: "server";
40
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
41
+ }
42
+ export declare class InvalidRequestException extends __BaseException {
43
+ readonly name: "InvalidRequestException";
44
+ readonly $fault: "client";
45
+ clusterName?: string | undefined;
46
+ nodegroupName?: string | undefined;
47
+ addonName?: string | undefined;
48
+ subscriptionId?: string | undefined;
49
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
50
+ }
46
51
  export declare class ClientException extends __BaseException {
47
52
  readonly name: "ClientException";
48
53
  readonly $fault: "client";
@@ -80,11 +85,6 @@ export declare class ResourceLimitExceededException extends __BaseException {
80
85
  subscriptionId?: string | undefined;
81
86
  constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
82
87
  }
83
- export declare class ServiceUnavailableException extends __BaseException {
84
- readonly name: "ServiceUnavailableException";
85
- readonly $fault: "server";
86
- constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
87
- }
88
88
  export declare class UnsupportedAvailabilityZoneException extends __BaseException {
89
89
  readonly name: "UnsupportedAvailabilityZoneException";
90
90
  readonly $fault: "client";
@@ -12,6 +12,10 @@ import {
12
12
  CapabilityType,
13
13
  CapacityTypes,
14
14
  Category,
15
+ CertificateAuthorityActivatedBy,
16
+ CertificateAuthorityCreatedBy,
17
+ CertificateAuthorityDistributionStatus,
18
+ CertificateAuthoritySigningStatus,
15
19
  ClusterIssueCode,
16
20
  ClusterStatus,
17
21
  ClusterVersionStatus,
@@ -68,6 +72,50 @@ export interface AccessScope {
68
72
  type?: AccessScopeType | undefined;
69
73
  namespaces?: string[] | undefined;
70
74
  }
75
+ export interface ActivateCertificateAuthorityRequest {
76
+ clusterName: string | undefined;
77
+ certificateAuthorityId: string | undefined;
78
+ clientRequestToken?: string | undefined;
79
+ }
80
+ export interface CertificateAuthoritySummary {
81
+ id?: string | undefined;
82
+ createdAt?: Date | undefined;
83
+ createdBy?: CertificateAuthorityCreatedBy | undefined;
84
+ activatedAt?: Date | undefined;
85
+ activatedBy?: CertificateAuthorityActivatedBy | undefined;
86
+ signingStatus?: CertificateAuthoritySigningStatus | undefined;
87
+ distributionStatus?: CertificateAuthorityDistributionStatus | undefined;
88
+ }
89
+ export interface Cancellation {
90
+ status?: CancellationStatus | undefined;
91
+ reason?: string | undefined;
92
+ }
93
+ export interface ErrorDetail {
94
+ errorCode?: ErrorCode | undefined;
95
+ errorMessage?: string | undefined;
96
+ resourceIds?: string[] | undefined;
97
+ }
98
+ export interface UpdateParam {
99
+ type?: UpdateParamType | undefined;
100
+ value?: string | undefined;
101
+ }
102
+ export interface Update {
103
+ id?: string | undefined;
104
+ status?: UpdateStatus | undefined;
105
+ type?: UpdateType | undefined;
106
+ params?: UpdateParam[] | undefined;
107
+ createdAt?: Date | undefined;
108
+ errors?: ErrorDetail[] | undefined;
109
+ cancellation?: Cancellation | undefined;
110
+ }
111
+ export interface ActivateCertificateAuthorityResponse {
112
+ update?: Update | undefined;
113
+ certificateAuthority?: CertificateAuthoritySummary | undefined;
114
+ }
115
+ export interface ActiveCertificateAuthority {
116
+ id?: string | undefined;
117
+ activatedBy?: CertificateAuthorityActivatedBy | undefined;
118
+ }
71
119
  export interface AddonIssue {
72
120
  code?: AddonIssueCode | undefined;
73
121
  message?: string | undefined;
@@ -206,28 +254,6 @@ export interface AssociateEncryptionConfigRequest {
206
254
  encryptionConfig: EncryptionConfig[] | undefined;
207
255
  clientRequestToken?: string | undefined;
208
256
  }
209
- export interface Cancellation {
210
- status?: CancellationStatus | undefined;
211
- reason?: string | undefined;
212
- }
213
- export interface ErrorDetail {
214
- errorCode?: ErrorCode | undefined;
215
- errorMessage?: string | undefined;
216
- resourceIds?: string[] | undefined;
217
- }
218
- export interface UpdateParam {
219
- type?: UpdateParamType | undefined;
220
- value?: string | undefined;
221
- }
222
- export interface Update {
223
- id?: string | undefined;
224
- status?: UpdateStatus | undefined;
225
- type?: UpdateType | undefined;
226
- params?: UpdateParam[] | undefined;
227
- createdAt?: Date | undefined;
228
- errors?: ErrorDetail[] | undefined;
229
- cancellation?: Cancellation | undefined;
230
- }
231
257
  export interface AssociateEncryptionConfigResponse {
232
258
  update?: Update | undefined;
233
259
  }
@@ -330,6 +356,14 @@ export interface Capability {
330
356
  export interface CreateCapabilityResponse {
331
357
  capability?: Capability | undefined;
332
358
  }
359
+ export interface CreateCertificateAuthorityRequest {
360
+ clusterName: string | undefined;
361
+ clientRequestToken?: string | undefined;
362
+ }
363
+ export interface CreateCertificateAuthorityResponse {
364
+ update?: Update | undefined;
365
+ certificateAuthority?: CertificateAuthoritySummary | undefined;
366
+ }
333
367
  export interface CreateAccessConfigRequest {
334
368
  bootstrapClusterCreatorAdminPermissions?: boolean | undefined;
335
369
  authenticationMode?: AuthenticationMode | undefined;
@@ -457,6 +491,7 @@ export interface CreateClusterRequest {
457
491
  }
458
492
  export interface Certificate {
459
493
  data?: string | undefined;
494
+ active?: ActiveCertificateAuthority | undefined;
460
495
  }
461
496
  export interface ComputeConfigResponse {
462
497
  enabled?: boolean | undefined;
@@ -808,6 +843,15 @@ export interface DeleteCapabilityRequest {
808
843
  export interface DeleteCapabilityResponse {
809
844
  capability?: Capability | undefined;
810
845
  }
846
+ export interface DeleteCertificateAuthorityRequest {
847
+ clusterName: string | undefined;
848
+ certificateAuthorityId: string | undefined;
849
+ clientRequestToken?: string | undefined;
850
+ }
851
+ export interface DeleteCertificateAuthorityResponse {
852
+ update?: Update | undefined;
853
+ certificateAuthority?: CertificateAuthoritySummary | undefined;
854
+ }
811
855
  export interface DeleteClusterRequest {
812
856
  name: string | undefined;
813
857
  }
@@ -891,6 +935,34 @@ export interface DescribeCapabilityRequest {
891
935
  export interface DescribeCapabilityResponse {
892
936
  capability?: Capability | undefined;
893
937
  }
938
+ export interface DescribeCertificateAuthorityRequest {
939
+ clusterName: string | undefined;
940
+ certificateAuthorityId: string | undefined;
941
+ }
942
+ export interface CertificateAuthorityScheduledEvents {
943
+ firstAutoActivation?: Date | undefined;
944
+ finalAutoActivation?: Date | undefined;
945
+ }
946
+ export interface CertificateAuthorityValidity {
947
+ notBefore?: Date | undefined;
948
+ notAfter?: Date | undefined;
949
+ }
950
+ export interface CertificateAuthority {
951
+ id?: string | undefined;
952
+ createdAt?: Date | undefined;
953
+ createdBy?: CertificateAuthorityCreatedBy | undefined;
954
+ activatedAt?: Date | undefined;
955
+ activatedBy?: CertificateAuthorityActivatedBy | undefined;
956
+ signingStatus?: CertificateAuthoritySigningStatus | undefined;
957
+ distributionStatus?: CertificateAuthorityDistributionStatus | undefined;
958
+ validity?: CertificateAuthorityValidity | undefined;
959
+ scheduledEvents?: CertificateAuthorityScheduledEvents | undefined;
960
+ rollbackAvailable?: boolean | undefined;
961
+ data?: string | undefined;
962
+ }
963
+ export interface DescribeCertificateAuthorityResponse {
964
+ certificateAuthority?: CertificateAuthority | undefined;
965
+ }
894
966
  export interface DescribeClusterRequest {
895
967
  name: string | undefined;
896
968
  }
@@ -1178,6 +1250,15 @@ export interface ListCapabilitiesResponse {
1178
1250
  capabilities?: CapabilitySummary[] | undefined;
1179
1251
  nextToken?: string | undefined;
1180
1252
  }
1253
+ export interface ListCertificateAuthoritiesRequest {
1254
+ clusterName: string | undefined;
1255
+ maxResults?: number | undefined;
1256
+ nextToken?: string | undefined;
1257
+ }
1258
+ export interface ListCertificateAuthoritiesResponse {
1259
+ certificateAuthorities?: CertificateAuthoritySummary[] | undefined;
1260
+ nextToken?: string | undefined;
1261
+ }
1181
1262
  export interface ListClustersRequest {
1182
1263
  maxResults?: number | undefined;
1183
1264
  nextToken?: string | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListCertificateAuthoritiesCommandInput,
4
+ ListCertificateAuthoritiesCommandOutput,
5
+ } from "../commands/ListCertificateAuthoritiesCommand";
6
+ import { EKSPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListCertificateAuthorities: (
8
+ config: EKSPaginationConfiguration,
9
+ input: ListCertificateAuthoritiesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListCertificateAuthoritiesCommandOutput>;
@@ -6,6 +6,7 @@ export * from "./ListAccessPoliciesPaginator";
6
6
  export * from "./ListAddonsPaginator";
7
7
  export * from "./ListAssociatedAccessPoliciesPaginator";
8
8
  export * from "./ListCapabilitiesPaginator";
9
+ export * from "./ListCertificateAuthoritiesPaginator";
9
10
  export * from "./ListClustersPaginator";
10
11
  export * from "./ListEksAnywhereSubscriptionsPaginator";
11
12
  export * from "./ListFargateProfilesPaginator";
@@ -21,6 +21,9 @@ export declare var AccessConfigResponse$: StaticStructureSchema;
21
21
  export declare var AccessEntry$: StaticStructureSchema;
22
22
  export declare var AccessPolicy$: StaticStructureSchema;
23
23
  export declare var AccessScope$: StaticStructureSchema;
24
+ export declare var ActivateCertificateAuthorityRequest$: StaticStructureSchema;
25
+ export declare var ActivateCertificateAuthorityResponse$: StaticStructureSchema;
26
+ export declare var ActiveCertificateAuthority$: StaticStructureSchema;
24
27
  export declare var Addon$: StaticStructureSchema;
25
28
  export declare var AddonCompatibilityDetail$: StaticStructureSchema;
26
29
  export declare var AddonHealth$: StaticStructureSchema;
@@ -58,6 +61,10 @@ export declare var CapabilityHealth$: StaticStructureSchema;
58
61
  export declare var CapabilityIssue$: StaticStructureSchema;
59
62
  export declare var CapabilitySummary$: StaticStructureSchema;
60
63
  export declare var Certificate$: StaticStructureSchema;
64
+ export declare var CertificateAuthority$: StaticStructureSchema;
65
+ export declare var CertificateAuthorityScheduledEvents$: StaticStructureSchema;
66
+ export declare var CertificateAuthoritySummary$: StaticStructureSchema;
67
+ export declare var CertificateAuthorityValidity$: StaticStructureSchema;
61
68
  export declare var ClientStat$: StaticStructureSchema;
62
69
  export declare var Cluster$: StaticStructureSchema;
63
70
  export declare var ClusterHealth$: StaticStructureSchema;
@@ -80,6 +87,8 @@ export declare var CreateAddonRequest$: StaticStructureSchema;
80
87
  export declare var CreateAddonResponse$: StaticStructureSchema;
81
88
  export declare var CreateCapabilityRequest$: StaticStructureSchema;
82
89
  export declare var CreateCapabilityResponse$: StaticStructureSchema;
90
+ export declare var CreateCertificateAuthorityRequest$: StaticStructureSchema;
91
+ export declare var CreateCertificateAuthorityResponse$: StaticStructureSchema;
83
92
  export declare var CreateClusterRequest$: StaticStructureSchema;
84
93
  export declare var CreateClusterResponse$: StaticStructureSchema;
85
94
  export declare var CreateEksAnywhereSubscriptionRequest$: StaticStructureSchema;
@@ -96,6 +105,8 @@ export declare var DeleteAddonRequest$: StaticStructureSchema;
96
105
  export declare var DeleteAddonResponse$: StaticStructureSchema;
97
106
  export declare var DeleteCapabilityRequest$: StaticStructureSchema;
98
107
  export declare var DeleteCapabilityResponse$: StaticStructureSchema;
108
+ export declare var DeleteCertificateAuthorityRequest$: StaticStructureSchema;
109
+ export declare var DeleteCertificateAuthorityResponse$: StaticStructureSchema;
99
110
  export declare var DeleteClusterRequest$: StaticStructureSchema;
100
111
  export declare var DeleteClusterResponse$: StaticStructureSchema;
101
112
  export declare var DeleteEksAnywhereSubscriptionRequest$: StaticStructureSchema;
@@ -119,6 +130,8 @@ export declare var DescribeAddonVersionsRequest$: StaticStructureSchema;
119
130
  export declare var DescribeAddonVersionsResponse$: StaticStructureSchema;
120
131
  export declare var DescribeCapabilityRequest$: StaticStructureSchema;
121
132
  export declare var DescribeCapabilityResponse$: StaticStructureSchema;
133
+ export declare var DescribeCertificateAuthorityRequest$: StaticStructureSchema;
134
+ export declare var DescribeCertificateAuthorityResponse$: StaticStructureSchema;
122
135
  export declare var DescribeClusterRequest$: StaticStructureSchema;
123
136
  export declare var DescribeClusterResponse$: StaticStructureSchema;
124
137
  export declare var DescribeClusterVersionsRequest$: StaticStructureSchema;
@@ -193,6 +206,8 @@ export declare var ListAssociatedAccessPoliciesRequest$: StaticStructureSchema;
193
206
  export declare var ListAssociatedAccessPoliciesResponse$: StaticStructureSchema;
194
207
  export declare var ListCapabilitiesRequest$: StaticStructureSchema;
195
208
  export declare var ListCapabilitiesResponse$: StaticStructureSchema;
209
+ export declare var ListCertificateAuthoritiesRequest$: StaticStructureSchema;
210
+ export declare var ListCertificateAuthoritiesResponse$: StaticStructureSchema;
196
211
  export declare var ListClustersRequest$: StaticStructureSchema;
197
212
  export declare var ListClustersResponse$: StaticStructureSchema;
198
213
  export declare var ListEksAnywhereSubscriptionsRequest$: StaticStructureSchema;
@@ -290,6 +305,7 @@ export declare var VpcConfigResponse$: StaticStructureSchema;
290
305
  export declare var WarmPoolConfig$: StaticStructureSchema;
291
306
  export declare var ZonalShiftConfigRequest$: StaticStructureSchema;
292
307
  export declare var ZonalShiftConfigResponse$: StaticStructureSchema;
308
+ export declare var ActivateCertificateAuthority$: StaticOperationSchema;
293
309
  export declare var AssociateAccessPolicy$: StaticOperationSchema;
294
310
  export declare var AssociateEncryptionConfig$: StaticOperationSchema;
295
311
  export declare var AssociateIdentityProviderConfig$: StaticOperationSchema;
@@ -297,6 +313,7 @@ export declare var CancelUpdate$: StaticOperationSchema;
297
313
  export declare var CreateAccessEntry$: StaticOperationSchema;
298
314
  export declare var CreateAddon$: StaticOperationSchema;
299
315
  export declare var CreateCapability$: StaticOperationSchema;
316
+ export declare var CreateCertificateAuthority$: StaticOperationSchema;
300
317
  export declare var CreateCluster$: StaticOperationSchema;
301
318
  export declare var CreateEksAnywhereSubscription$: StaticOperationSchema;
302
319
  export declare var CreateFargateProfile$: StaticOperationSchema;
@@ -305,6 +322,7 @@ export declare var CreatePodIdentityAssociation$: StaticOperationSchema;
305
322
  export declare var DeleteAccessEntry$: StaticOperationSchema;
306
323
  export declare var DeleteAddon$: StaticOperationSchema;
307
324
  export declare var DeleteCapability$: StaticOperationSchema;
325
+ export declare var DeleteCertificateAuthority$: StaticOperationSchema;
308
326
  export declare var DeleteCluster$: StaticOperationSchema;
309
327
  export declare var DeleteEksAnywhereSubscription$: StaticOperationSchema;
310
328
  export declare var DeleteFargateProfile$: StaticOperationSchema;
@@ -316,6 +334,7 @@ export declare var DescribeAddon$: StaticOperationSchema;
316
334
  export declare var DescribeAddonConfiguration$: StaticOperationSchema;
317
335
  export declare var DescribeAddonVersions$: StaticOperationSchema;
318
336
  export declare var DescribeCapability$: StaticOperationSchema;
337
+ export declare var DescribeCertificateAuthority$: StaticOperationSchema;
319
338
  export declare var DescribeCluster$: StaticOperationSchema;
320
339
  export declare var DescribeClusterVersions$: StaticOperationSchema;
321
340
  export declare var DescribeEksAnywhereSubscription$: StaticOperationSchema;
@@ -333,6 +352,7 @@ export declare var ListAccessPolicies$: StaticOperationSchema;
333
352
  export declare var ListAddons$: StaticOperationSchema;
334
353
  export declare var ListAssociatedAccessPolicies$: StaticOperationSchema;
335
354
  export declare var ListCapabilities$: StaticOperationSchema;
355
+ export declare var ListCertificateAuthorities$: StaticOperationSchema;
336
356
  export declare var ListClusters$: StaticOperationSchema;
337
357
  export declare var ListEksAnywhereSubscriptions$: StaticOperationSchema;
338
358
  export declare var ListFargateProfiles$: StaticOperationSchema;
@@ -6,3 +6,4 @@ export * from "./waitForFargateProfileActive";
6
6
  export * from "./waitForFargateProfileDeleted";
7
7
  export * from "./waitForNodegroupActive";
8
8
  export * from "./waitForNodegroupDeleted";
9
+ export * from "./waitForCertificateAuthorityUpdateComplete";
@@ -0,0 +1,15 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/core/client";
2
+ import {
3
+ DescribeUpdateCommandInput,
4
+ DescribeUpdateCommandOutput,
5
+ } from "../commands/DescribeUpdateCommand";
6
+ import { EKSClient } from "../EKSClient";
7
+ import { EKSServiceException } from "../models/EKSServiceException";
8
+ export declare const waitForCertificateAuthorityUpdateComplete: (
9
+ params: WaiterConfiguration<EKSClient>,
10
+ input: DescribeUpdateCommandInput,
11
+ ) => Promise<WaiterResult<DescribeUpdateCommandOutput | EKSServiceException>>;
12
+ export declare const waitUntilCertificateAuthorityUpdateComplete: (
13
+ params: WaiterConfiguration<EKSClient>,
14
+ input: DescribeUpdateCommandInput,
15
+ ) => Promise<WaiterResult<DescribeUpdateCommandOutput>>;
@@ -6,3 +6,4 @@ export * from "./waitForFargateProfileActive";
6
6
  export * from "./waitForFargateProfileDeleted";
7
7
  export * from "./waitForNodegroupActive";
8
8
  export * from "./waitForNodegroupDeleted";
9
+ export * from "./waitForCertificateAuthorityUpdateComplete";
@@ -0,0 +1,15 @@
1
+ import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client";
2
+ import { type DescribeUpdateCommandInput, type DescribeUpdateCommandOutput } from "../commands/DescribeUpdateCommand";
3
+ import type { EKSClient } from "../EKSClient";
4
+ import type { EKSServiceException } from "../models/EKSServiceException";
5
+ /**
6
+ *
7
+ * @deprecated Use waitUntilCertificateAuthorityUpdateComplete instead. waitForCertificateAuthorityUpdateComplete does not throw error in non-success cases.
8
+ */
9
+ export declare const waitForCertificateAuthorityUpdateComplete: (params: WaiterConfiguration<EKSClient>, input: DescribeUpdateCommandInput) => Promise<WaiterResult<DescribeUpdateCommandOutput | EKSServiceException>>;
10
+ /**
11
+ *
12
+ * @param params - Waiter configuration options.
13
+ * @param input - The input to DescribeUpdateCommand for polling.
14
+ */
15
+ export declare const waitUntilCertificateAuthorityUpdateComplete: (params: WaiterConfiguration<EKSClient>, input: DescribeUpdateCommandInput) => Promise<WaiterResult<DescribeUpdateCommandOutput>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-eks",
3
- "version": "3.1113.0",
3
+ "version": "3.1114.0",
4
4
  "description": "AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-eks",
6
6
  "license": "Apache-2.0",