@aws-sdk/client-eks 3.43.0 → 3.47.1
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/CHANGELOG.md +48 -0
- package/README.md +10 -10
- package/dist-cjs/endpoints.js +1 -24
- package/dist-cjs/models/models_0.js +8 -81
- package/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/endpoints.js +1 -24
- package/dist-es/models/models_0.js +5 -52
- package/dist-es/protocols/Aws_restJson1.js +3 -1
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/EKS.d.ts +112 -99
- package/dist-types/EKSClient.d.ts +15 -11
- package/dist-types/commands/CreateClusterCommand.d.ts +2 -1
- package/dist-types/commands/CreateFargateProfileCommand.d.ts +28 -24
- package/dist-types/commands/CreateNodegroupCommand.d.ts +9 -8
- package/dist-types/commands/DeleteClusterCommand.d.ts +2 -2
- package/dist-types/commands/DeleteFargateProfileCommand.d.ts +8 -7
- package/dist-types/commands/DeregisterClusterCommand.d.ts +2 -1
- package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/ListClustersCommand.d.ts +2 -1
- package/dist-types/commands/ListFargateProfilesCommand.d.ts +2 -2
- package/dist-types/commands/ListNodegroupsCommand.d.ts +3 -2
- package/dist-types/commands/ListUpdatesCommand.d.ts +2 -2
- package/dist-types/commands/RegisterClusterCommand.d.ts +9 -5
- package/dist-types/commands/TagResourceCommand.d.ts +3 -4
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +12 -11
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +3 -4
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +4 -5
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +7 -6
- package/dist-types/models/models_0.d.ts +252 -265
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/EKSClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +10 -52
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +40 -47
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { EKSClientConfig } from "./EKSClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { EKSClientConfig } from "./EKSClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateEncryptionConfigCommandInput, AssociateEncryptionConfigCommandOutput } from "./commands/AssociateEncryptionConfigCommand";
|
|
10
10
|
import { AssociateIdentityProviderConfigCommandInput, AssociateIdentityProviderConfigCommandOutput } from "./commands/AssociateIdentityProviderConfigCommand";
|
|
@@ -85,6 +85,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
85
85
|
regionInfoProvider?: RegionInfoProvider;
|
|
86
86
|
|
|
87
87
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
88
|
+
|
|
89
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
88
90
|
}
|
|
89
91
|
declare type EKSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
90
92
|
|
|
@@ -5,10 +5,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
5
5
|
$fault: "client";
|
|
6
6
|
message?: string;
|
|
7
7
|
}
|
|
8
|
-
export declare namespace AccessDeniedException {
|
|
9
|
-
|
|
10
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
11
|
-
}
|
|
12
8
|
export declare enum AddonIssueCode {
|
|
13
9
|
ACCESS_DENIED = "AccessDenied",
|
|
14
10
|
ADMISSION_REQUEST_DENIED = "AdmissionRequestDenied",
|
|
@@ -265,10 +261,6 @@ export interface ClientException extends __SmithyException, $MetadataBearer {
|
|
|
265
261
|
addonName?: string;
|
|
266
262
|
message?: string;
|
|
267
263
|
}
|
|
268
|
-
export declare namespace ClientException {
|
|
269
|
-
|
|
270
|
-
const filterSensitiveLog: (obj: ClientException) => any;
|
|
271
|
-
}
|
|
272
264
|
|
|
273
265
|
export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
|
|
274
266
|
name: "InvalidParameterException";
|
|
@@ -282,10 +274,6 @@ export interface InvalidParameterException extends __SmithyException, $MetadataB
|
|
|
282
274
|
addonName?: string;
|
|
283
275
|
message?: string;
|
|
284
276
|
}
|
|
285
|
-
export declare namespace InvalidParameterException {
|
|
286
|
-
|
|
287
|
-
const filterSensitiveLog: (obj: InvalidParameterException) => any;
|
|
288
|
-
}
|
|
289
277
|
|
|
290
278
|
export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
|
|
291
279
|
name: "InvalidRequestException";
|
|
@@ -297,10 +285,6 @@ export interface InvalidRequestException extends __SmithyException, $MetadataBea
|
|
|
297
285
|
addonName?: string;
|
|
298
286
|
message?: string;
|
|
299
287
|
}
|
|
300
|
-
export declare namespace InvalidRequestException {
|
|
301
|
-
|
|
302
|
-
const filterSensitiveLog: (obj: InvalidRequestException) => any;
|
|
303
|
-
}
|
|
304
288
|
|
|
305
289
|
export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
|
|
306
290
|
name: "ResourceInUseException";
|
|
@@ -312,10 +296,6 @@ export interface ResourceInUseException extends __SmithyException, $MetadataBear
|
|
|
312
296
|
addonName?: string;
|
|
313
297
|
message?: string;
|
|
314
298
|
}
|
|
315
|
-
export declare namespace ResourceInUseException {
|
|
316
|
-
|
|
317
|
-
const filterSensitiveLog: (obj: ResourceInUseException) => any;
|
|
318
|
-
}
|
|
319
299
|
|
|
320
300
|
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
321
301
|
name: "ResourceNotFoundException";
|
|
@@ -329,10 +309,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
329
309
|
addonName?: string;
|
|
330
310
|
message?: string;
|
|
331
311
|
}
|
|
332
|
-
export declare namespace ResourceNotFoundException {
|
|
333
|
-
|
|
334
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
335
|
-
}
|
|
336
312
|
|
|
337
313
|
export interface ServerException extends __SmithyException, $MetadataBearer {
|
|
338
314
|
name: "ServerException";
|
|
@@ -344,10 +320,6 @@ export interface ServerException extends __SmithyException, $MetadataBearer {
|
|
|
344
320
|
addonName?: string;
|
|
345
321
|
message?: string;
|
|
346
322
|
}
|
|
347
|
-
export declare namespace ServerException {
|
|
348
|
-
|
|
349
|
-
const filterSensitiveLog: (obj: ServerException) => any;
|
|
350
|
-
}
|
|
351
323
|
|
|
352
324
|
export interface OidcIdentityProviderConfigRequest {
|
|
353
325
|
|
|
@@ -441,10 +413,16 @@ export declare namespace CreateAddonResponse {
|
|
|
441
413
|
|
|
442
414
|
const filterSensitiveLog: (obj: CreateAddonResponse) => any;
|
|
443
415
|
}
|
|
416
|
+
export declare enum IpFamily {
|
|
417
|
+
IPV4 = "ipv4",
|
|
418
|
+
IPV6 = "ipv6"
|
|
419
|
+
}
|
|
444
420
|
|
|
445
421
|
export interface KubernetesNetworkConfigRequest {
|
|
446
422
|
|
|
447
423
|
serviceIpv4Cidr?: string;
|
|
424
|
+
|
|
425
|
+
ipFamily?: IpFamily | string;
|
|
448
426
|
}
|
|
449
427
|
export declare namespace KubernetesNetworkConfigRequest {
|
|
450
428
|
|
|
@@ -568,6 +546,10 @@ export declare namespace Identity {
|
|
|
568
546
|
export interface KubernetesNetworkConfigResponse {
|
|
569
547
|
|
|
570
548
|
serviceIpv4Cidr?: string;
|
|
549
|
+
|
|
550
|
+
serviceIpv6Cidr?: string;
|
|
551
|
+
|
|
552
|
+
ipFamily?: IpFamily | string;
|
|
571
553
|
}
|
|
572
554
|
export declare namespace KubernetesNetworkConfigResponse {
|
|
573
555
|
|
|
@@ -656,20 +638,12 @@ export interface ResourceLimitExceededException extends __SmithyException, $Meta
|
|
|
656
638
|
nodegroupName?: string;
|
|
657
639
|
message?: string;
|
|
658
640
|
}
|
|
659
|
-
export declare namespace ResourceLimitExceededException {
|
|
660
|
-
|
|
661
|
-
const filterSensitiveLog: (obj: ResourceLimitExceededException) => any;
|
|
662
|
-
}
|
|
663
641
|
|
|
664
642
|
export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
|
|
665
643
|
name: "ServiceUnavailableException";
|
|
666
644
|
$fault: "server";
|
|
667
645
|
message?: string;
|
|
668
646
|
}
|
|
669
|
-
export declare namespace ServiceUnavailableException {
|
|
670
|
-
|
|
671
|
-
const filterSensitiveLog: (obj: ServiceUnavailableException) => any;
|
|
672
|
-
}
|
|
673
647
|
|
|
674
648
|
export interface UnsupportedAvailabilityZoneException extends __SmithyException, $MetadataBearer {
|
|
675
649
|
name: "UnsupportedAvailabilityZoneException";
|
|
@@ -682,10 +656,6 @@ export interface UnsupportedAvailabilityZoneException extends __SmithyException,
|
|
|
682
656
|
|
|
683
657
|
validZones?: string[];
|
|
684
658
|
}
|
|
685
|
-
export declare namespace UnsupportedAvailabilityZoneException {
|
|
686
|
-
|
|
687
|
-
const filterSensitiveLog: (obj: UnsupportedAvailabilityZoneException) => any;
|
|
688
|
-
}
|
|
689
659
|
|
|
690
660
|
export interface FargateProfileSelector {
|
|
691
661
|
|
|
@@ -1407,10 +1377,6 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
|
|
|
1407
1377
|
$fault: "client";
|
|
1408
1378
|
message?: string;
|
|
1409
1379
|
}
|
|
1410
|
-
export declare namespace BadRequestException {
|
|
1411
|
-
|
|
1412
|
-
const filterSensitiveLog: (obj: BadRequestException) => any;
|
|
1413
|
-
}
|
|
1414
1380
|
export interface ListTagsForResourceRequest {
|
|
1415
1381
|
|
|
1416
1382
|
resourceArn: string | undefined;
|
|
@@ -1435,10 +1401,6 @@ export interface NotFoundException extends __SmithyException, $MetadataBearer {
|
|
|
1435
1401
|
$fault: "client";
|
|
1436
1402
|
message?: string;
|
|
1437
1403
|
}
|
|
1438
|
-
export declare namespace NotFoundException {
|
|
1439
|
-
|
|
1440
|
-
const filterSensitiveLog: (obj: NotFoundException) => any;
|
|
1441
|
-
}
|
|
1442
1404
|
export interface ListUpdatesRequest {
|
|
1443
1405
|
|
|
1444
1406
|
name: string | undefined;
|
|
@@ -1517,10 +1479,6 @@ export interface ResourcePropagationDelayException extends __SmithyException, $M
|
|
|
1517
1479
|
$fault: "client";
|
|
1518
1480
|
message?: string;
|
|
1519
1481
|
}
|
|
1520
|
-
export declare namespace ResourcePropagationDelayException {
|
|
1521
|
-
|
|
1522
|
-
const filterSensitiveLog: (obj: ResourcePropagationDelayException) => any;
|
|
1523
|
-
}
|
|
1524
1482
|
export interface TagResourceRequest {
|
|
1525
1483
|
|
|
1526
1484
|
resourceArn: string | undefined;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { EKSClientConfig } from "./EKSClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { EKSClientConfig } from "./EKSClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
package/package.json
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
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.47.1",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "yarn
|
|
7
|
-
"build:cjs": "tsc -p tsconfig.json",
|
|
8
|
-
"build:docs": "
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
-
"
|
|
12
|
-
"clean
|
|
13
|
-
"clean:docs": "rimraf ./docs",
|
|
14
|
-
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
|
|
15
|
-
"test": "exit 0"
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-*"
|
|
16
13
|
},
|
|
17
14
|
"main": "./dist-cjs/index.js",
|
|
18
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -21,51 +18,47 @@
|
|
|
21
18
|
"dependencies": {
|
|
22
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-
|
|
49
|
-
"@aws-sdk/util-
|
|
50
|
-
"@aws-sdk/util-
|
|
51
|
-
"@aws-sdk/util-
|
|
52
|
-
"@aws-sdk/util-
|
|
21
|
+
"@aws-sdk/client-sts": "3.47.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.47.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.47.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.47.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.47.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.47.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.47.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.47.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.47.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.47.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.47.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.47.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.47.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.47.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.47.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.47.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.47.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.47.1",
|
|
39
|
+
"@aws-sdk/types": "3.47.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.47.1",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.47.1",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.47.1",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.47.1",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.47.1",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.47.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.47.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.47.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.47.1",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.47.1",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.47.1",
|
|
51
|
+
"@aws-sdk/util-waiter": "3.47.1",
|
|
53
52
|
"tslib": "^2.3.0",
|
|
54
53
|
"uuid": "^8.3.2"
|
|
55
54
|
},
|
|
56
55
|
"devDependencies": {
|
|
57
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
56
|
+
"@aws-sdk/service-client-documentation-generator": "3.47.1",
|
|
58
57
|
"@types/node": "^12.7.5",
|
|
59
|
-
"@types/uuid": "^8.3.0"
|
|
60
|
-
"downlevel-dts": "0.7.0",
|
|
61
|
-
"jest": "^26.1.0",
|
|
62
|
-
"rimraf": "^3.0.0",
|
|
63
|
-
"ts-jest": "^26.4.1",
|
|
64
|
-
"typedoc": "^0.19.2",
|
|
65
|
-
"typescript": "~4.3.5"
|
|
58
|
+
"@types/uuid": "^8.3.0"
|
|
66
59
|
},
|
|
67
60
|
"engines": {
|
|
68
|
-
"node": ">=
|
|
61
|
+
"node": ">=12.0.0"
|
|
69
62
|
},
|
|
70
63
|
"typesVersions": {
|
|
71
64
|
"<4.0": {
|