@aws-sdk/client-eks 3.1076.0 → 3.1077.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist-cjs/index.js +90 -31
- package/dist-es/EKS.js +2 -0
- package/dist-es/commands/CancelUpdateCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +7 -0
- package/dist-es/models/errors.js +14 -14
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +45 -14
- package/dist-types/EKS.d.ts +7 -0
- package/dist-types/EKSClient.d.ts +3 -2
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +5 -1
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +5 -1
- package/dist-types/commands/CancelUpdateCommand.d.ts +146 -0
- package/dist-types/commands/DescribeInsightCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUpdateCommand.d.ts +5 -1
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +5 -1
- package/dist-types/commands/ListInsightsCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAddonCommand.d.ts +5 -1
- package/dist-types/commands/UpdateCapabilityCommand.d.ts +5 -1
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +5 -1
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +8 -1
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +5 -1
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +5 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +15 -0
- package/dist-types/models/errors.d.ts +23 -23
- package/dist-types/models/models_0.d.ts +76 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/EKS.d.ts +17 -0
- package/dist-types/ts3.4/EKSClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CancelUpdateCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +9 -0
- package/dist-types/ts3.4/models/errors.d.ts +8 -8
- package/dist-types/ts3.4/models/models_0.d.ts +18 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +6 -8
|
@@ -51,6 +51,9 @@ export declare var AssociateIdentityProviderConfigRequest$: StaticStructureSchem
|
|
|
51
51
|
export declare var AssociateIdentityProviderConfigResponse$: StaticStructureSchema;
|
|
52
52
|
export declare var AutoScalingGroup$: StaticStructureSchema;
|
|
53
53
|
export declare var BlockStorage$: StaticStructureSchema;
|
|
54
|
+
export declare var Cancellation$: StaticStructureSchema;
|
|
55
|
+
export declare var CancelUpdateRequest$: StaticStructureSchema;
|
|
56
|
+
export declare var CancelUpdateResponse$: StaticStructureSchema;
|
|
54
57
|
export declare var Capability$: StaticStructureSchema;
|
|
55
58
|
export declare var CapabilityConfigurationRequest$: StaticStructureSchema;
|
|
56
59
|
export declare var CapabilityConfigurationResponse$: StaticStructureSchema;
|
|
@@ -219,6 +222,7 @@ export declare var RemoteNetworkConfigRequest$: StaticStructureSchema;
|
|
|
219
222
|
export declare var RemoteNetworkConfigResponse$: StaticStructureSchema;
|
|
220
223
|
export declare var RemoteNodeNetwork$: StaticStructureSchema;
|
|
221
224
|
export declare var RemotePodNetwork$: StaticStructureSchema;
|
|
225
|
+
export declare var RollbackConfig$: StaticStructureSchema;
|
|
222
226
|
export declare var SsoIdentity$: StaticStructureSchema;
|
|
223
227
|
export declare var StartInsightsRefreshRequest$: StaticStructureSchema;
|
|
224
228
|
export declare var StartInsightsRefreshResponse$: StaticStructureSchema;
|
|
@@ -265,6 +269,7 @@ export declare var ZonalShiftConfigResponse$: StaticStructureSchema;
|
|
|
265
269
|
export declare var AssociateAccessPolicy$: StaticOperationSchema;
|
|
266
270
|
export declare var AssociateEncryptionConfig$: StaticOperationSchema;
|
|
267
271
|
export declare var AssociateIdentityProviderConfig$: StaticOperationSchema;
|
|
272
|
+
export declare var CancelUpdate$: StaticOperationSchema;
|
|
268
273
|
export declare var CreateAccessEntry$: StaticOperationSchema;
|
|
269
274
|
export declare var CreateAddon$: StaticOperationSchema;
|
|
270
275
|
export declare var CreateCapability$: StaticOperationSchema;
|
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.1077.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,14 +19,12 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-
|
|
23
|
-
"@aws-
|
|
24
|
-
"@aws-sdk/core": "^3.974.24",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.59",
|
|
22
|
+
"@aws-sdk/core": "^3.974.25",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.60",
|
|
26
24
|
"@aws-sdk/types": "^3.973.14",
|
|
27
|
-
"@smithy/core": "^3.
|
|
28
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
29
|
-
"@smithy/node-http-handler": "^4.9.
|
|
25
|
+
"@smithy/core": "^3.28.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.1",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.1",
|
|
30
28
|
"@smithy/types": "^4.15.0",
|
|
31
29
|
"tslib": "^2.6.2"
|
|
32
30
|
},
|