@aws-sdk/client-eks 3.600.0 → 3.605.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js
CHANGED
|
@@ -952,6 +952,7 @@ var se_CreateClusterCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
952
952
|
body = JSON.stringify(
|
|
953
953
|
(0, import_smithy_client.take)(input, {
|
|
954
954
|
accessConfig: (_) => (0, import_smithy_client._json)(_),
|
|
955
|
+
bootstrapSelfManagedAddons: [],
|
|
955
956
|
clientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
956
957
|
encryptionConfig: (_) => (0, import_smithy_client._json)(_),
|
|
957
958
|
kubernetesNetworkConfig: (_) => (0, import_smithy_client._json)(_),
|
|
@@ -100,6 +100,7 @@ export const se_CreateClusterCommand = async (input, context) => {
|
|
|
100
100
|
let body;
|
|
101
101
|
body = JSON.stringify(take(input, {
|
|
102
102
|
accessConfig: (_) => _json(_),
|
|
103
|
+
bootstrapSelfManagedAddons: [],
|
|
103
104
|
clientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
104
105
|
encryptionConfig: (_) => _json(_),
|
|
105
106
|
kubernetesNetworkConfig: (_) => _json(_),
|
|
@@ -129,6 +129,7 @@ declare const CreateClusterCommand_base: {
|
|
|
129
129
|
* bootstrapClusterCreatorAdminPermissions: true || false,
|
|
130
130
|
* authenticationMode: "API" || "API_AND_CONFIG_MAP" || "CONFIG_MAP",
|
|
131
131
|
* },
|
|
132
|
+
* bootstrapSelfManagedAddons: true || false,
|
|
132
133
|
* };
|
|
133
134
|
* const command = new CreateClusterCommand(input);
|
|
134
135
|
* const response = await client.send(command);
|
|
@@ -1752,6 +1752,13 @@ export interface CreateClusterRequest {
|
|
|
1752
1752
|
* @public
|
|
1753
1753
|
*/
|
|
1754
1754
|
accessConfig?: CreateAccessConfigRequest;
|
|
1755
|
+
/**
|
|
1756
|
+
* <p>If you set this value to <code>False</code> when creating a cluster, the default networking add-ons will not be installed.</p>
|
|
1757
|
+
* <p>The default networking addons include vpc-cni, coredns, and kube-proxy.</p>
|
|
1758
|
+
* <p>Use this option when you plan to install third-party alternative add-ons or self-manage the default networking add-ons.</p>
|
|
1759
|
+
* @public
|
|
1760
|
+
*/
|
|
1761
|
+
bootstrapSelfManagedAddons?: boolean;
|
|
1755
1762
|
}
|
|
1756
1763
|
/**
|
|
1757
1764
|
* <p>An object representing the <code>certificate-authority-data</code> for your
|
|
@@ -447,6 +447,7 @@ export interface CreateClusterRequest {
|
|
|
447
447
|
encryptionConfig?: EncryptionConfig[];
|
|
448
448
|
outpostConfig?: OutpostConfigRequest;
|
|
449
449
|
accessConfig?: CreateAccessConfigRequest;
|
|
450
|
+
bootstrapSelfManagedAddons?: boolean;
|
|
450
451
|
}
|
|
451
452
|
export interface Certificate {
|
|
452
453
|
data?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-eks",
|
|
3
3
|
"description": "AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.605.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-eks",
|