@aws-sdk/client-ecs 3.45.0 → 3.47.2
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 +45 -0
- package/dist-cjs/endpoints.js +0 -24
- package/dist-cjs/models/models_0.js +5 -150
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/endpoints.js +0 -24
- package/dist-es/models/models_0.js +0 -96
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/ECS.d.ts +1 -1
- package/dist-types/ECSClient.d.ts +5 -1
- package/dist-types/commands/RunTaskCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +4 -147
- 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/ECSClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -96
- 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 { ECSClientConfig } from "./ECSClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: ECSClientConfig) => {
|
|
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: ECSClientConfig) => {
|
|
|
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 { ECSClientConfig } from "./ECSClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: ECSClientConfig) => {
|
|
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: ECSClientConfig) => {
|
|
|
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 { CreateCapacityProviderCommandInput, CreateCapacityProviderCommandOutput } from "./commands/CreateCapacityProviderCommand";
|
|
10
10
|
import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
|
|
@@ -103,6 +103,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
103
103
|
regionInfoProvider?: RegionInfoProvider;
|
|
104
104
|
|
|
105
105
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
106
|
+
|
|
107
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
106
108
|
}
|
|
107
109
|
declare type ECSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
108
110
|
|
|
@@ -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 AgentUpdateStatus {
|
|
13
9
|
FAILED = "FAILED",
|
|
14
10
|
PENDING = "PENDING",
|
|
@@ -23,10 +19,6 @@ export interface ClientException extends __SmithyException, $MetadataBearer {
|
|
|
23
19
|
$fault: "client";
|
|
24
20
|
message?: string;
|
|
25
21
|
}
|
|
26
|
-
export declare namespace ClientException {
|
|
27
|
-
|
|
28
|
-
const filterSensitiveLog: (obj: ClientException) => any;
|
|
29
|
-
}
|
|
30
22
|
export declare enum ManagedScalingStatus {
|
|
31
23
|
DISABLED = "DISABLED",
|
|
32
24
|
ENABLED = "ENABLED"
|
|
@@ -135,40 +127,24 @@ export interface InvalidParameterException extends __SmithyException, $MetadataB
|
|
|
135
127
|
$fault: "client";
|
|
136
128
|
message?: string;
|
|
137
129
|
}
|
|
138
|
-
export declare namespace InvalidParameterException {
|
|
139
|
-
|
|
140
|
-
const filterSensitiveLog: (obj: InvalidParameterException) => any;
|
|
141
|
-
}
|
|
142
130
|
|
|
143
131
|
export interface LimitExceededException extends __SmithyException, $MetadataBearer {
|
|
144
132
|
name: "LimitExceededException";
|
|
145
133
|
$fault: "client";
|
|
146
134
|
message?: string;
|
|
147
135
|
}
|
|
148
|
-
export declare namespace LimitExceededException {
|
|
149
|
-
|
|
150
|
-
const filterSensitiveLog: (obj: LimitExceededException) => any;
|
|
151
|
-
}
|
|
152
136
|
|
|
153
137
|
export interface ServerException extends __SmithyException, $MetadataBearer {
|
|
154
138
|
name: "ServerException";
|
|
155
139
|
$fault: "server";
|
|
156
140
|
message?: string;
|
|
157
141
|
}
|
|
158
|
-
export declare namespace ServerException {
|
|
159
|
-
|
|
160
|
-
const filterSensitiveLog: (obj: ServerException) => any;
|
|
161
|
-
}
|
|
162
142
|
|
|
163
143
|
export interface UpdateInProgressException extends __SmithyException, $MetadataBearer {
|
|
164
144
|
name: "UpdateInProgressException";
|
|
165
145
|
$fault: "client";
|
|
166
146
|
message?: string;
|
|
167
147
|
}
|
|
168
|
-
export declare namespace UpdateInProgressException {
|
|
169
|
-
|
|
170
|
-
const filterSensitiveLog: (obj: UpdateInProgressException) => any;
|
|
171
|
-
}
|
|
172
148
|
|
|
173
149
|
export interface ExecuteCommandLogConfiguration {
|
|
174
150
|
|
|
@@ -335,10 +311,6 @@ export interface ClusterNotFoundException extends __SmithyException, $MetadataBe
|
|
|
335
311
|
$fault: "client";
|
|
336
312
|
message?: string;
|
|
337
313
|
}
|
|
338
|
-
export declare namespace ClusterNotFoundException {
|
|
339
|
-
|
|
340
|
-
const filterSensitiveLog: (obj: ClusterNotFoundException) => any;
|
|
341
|
-
}
|
|
342
314
|
|
|
343
315
|
export interface DeploymentCircuitBreaker {
|
|
344
316
|
|
|
@@ -740,30 +712,18 @@ export interface PlatformTaskDefinitionIncompatibilityException extends __Smithy
|
|
|
740
712
|
$fault: "client";
|
|
741
713
|
message?: string;
|
|
742
714
|
}
|
|
743
|
-
export declare namespace PlatformTaskDefinitionIncompatibilityException {
|
|
744
|
-
|
|
745
|
-
const filterSensitiveLog: (obj: PlatformTaskDefinitionIncompatibilityException) => any;
|
|
746
|
-
}
|
|
747
715
|
|
|
748
716
|
export interface PlatformUnknownException extends __SmithyException, $MetadataBearer {
|
|
749
717
|
name: "PlatformUnknownException";
|
|
750
718
|
$fault: "client";
|
|
751
719
|
message?: string;
|
|
752
720
|
}
|
|
753
|
-
export declare namespace PlatformUnknownException {
|
|
754
|
-
|
|
755
|
-
const filterSensitiveLog: (obj: PlatformUnknownException) => any;
|
|
756
|
-
}
|
|
757
721
|
|
|
758
722
|
export interface UnsupportedFeatureException extends __SmithyException, $MetadataBearer {
|
|
759
723
|
name: "UnsupportedFeatureException";
|
|
760
724
|
$fault: "client";
|
|
761
725
|
message?: string;
|
|
762
726
|
}
|
|
763
|
-
export declare namespace UnsupportedFeatureException {
|
|
764
|
-
|
|
765
|
-
const filterSensitiveLog: (obj: UnsupportedFeatureException) => any;
|
|
766
|
-
}
|
|
767
727
|
export interface CreateTaskSetRequest {
|
|
768
728
|
|
|
769
729
|
service: string | undefined;
|
|
@@ -810,20 +770,12 @@ export interface ServiceNotActiveException extends __SmithyException, $MetadataB
|
|
|
810
770
|
$fault: "client";
|
|
811
771
|
message?: string;
|
|
812
772
|
}
|
|
813
|
-
export declare namespace ServiceNotActiveException {
|
|
814
|
-
|
|
815
|
-
const filterSensitiveLog: (obj: ServiceNotActiveException) => any;
|
|
816
|
-
}
|
|
817
773
|
|
|
818
774
|
export interface ServiceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
819
775
|
name: "ServiceNotFoundException";
|
|
820
776
|
$fault: "client";
|
|
821
777
|
message?: string;
|
|
822
778
|
}
|
|
823
|
-
export declare namespace ServiceNotFoundException {
|
|
824
|
-
|
|
825
|
-
const filterSensitiveLog: (obj: ServiceNotFoundException) => any;
|
|
826
|
-
}
|
|
827
779
|
export declare enum SettingName {
|
|
828
780
|
AWSVPC_TRUNKING = "awsvpcTrunking",
|
|
829
781
|
CONTAINER_INSIGHTS = "containerInsights",
|
|
@@ -904,10 +856,6 @@ export interface TargetNotFoundException extends __SmithyException, $MetadataBea
|
|
|
904
856
|
$fault: "client";
|
|
905
857
|
message?: string;
|
|
906
858
|
}
|
|
907
|
-
export declare namespace TargetNotFoundException {
|
|
908
|
-
|
|
909
|
-
const filterSensitiveLog: (obj: TargetNotFoundException) => any;
|
|
910
|
-
}
|
|
911
859
|
export interface DeleteCapacityProviderRequest {
|
|
912
860
|
|
|
913
861
|
capacityProvider: string | undefined;
|
|
@@ -930,30 +878,18 @@ export interface ClusterContainsContainerInstancesException extends __SmithyExce
|
|
|
930
878
|
$fault: "client";
|
|
931
879
|
message?: string;
|
|
932
880
|
}
|
|
933
|
-
export declare namespace ClusterContainsContainerInstancesException {
|
|
934
|
-
|
|
935
|
-
const filterSensitiveLog: (obj: ClusterContainsContainerInstancesException) => any;
|
|
936
|
-
}
|
|
937
881
|
|
|
938
882
|
export interface ClusterContainsServicesException extends __SmithyException, $MetadataBearer {
|
|
939
883
|
name: "ClusterContainsServicesException";
|
|
940
884
|
$fault: "client";
|
|
941
885
|
message?: string;
|
|
942
886
|
}
|
|
943
|
-
export declare namespace ClusterContainsServicesException {
|
|
944
|
-
|
|
945
|
-
const filterSensitiveLog: (obj: ClusterContainsServicesException) => any;
|
|
946
|
-
}
|
|
947
887
|
|
|
948
888
|
export interface ClusterContainsTasksException extends __SmithyException, $MetadataBearer {
|
|
949
889
|
name: "ClusterContainsTasksException";
|
|
950
890
|
$fault: "client";
|
|
951
891
|
message?: string;
|
|
952
892
|
}
|
|
953
|
-
export declare namespace ClusterContainsTasksException {
|
|
954
|
-
|
|
955
|
-
const filterSensitiveLog: (obj: ClusterContainsTasksException) => any;
|
|
956
|
-
}
|
|
957
893
|
export interface DeleteClusterRequest {
|
|
958
894
|
|
|
959
895
|
cluster: string | undefined;
|
|
@@ -1018,10 +954,6 @@ export interface TaskSetNotFoundException extends __SmithyException, $MetadataBe
|
|
|
1018
954
|
$fault: "client";
|
|
1019
955
|
message?: string;
|
|
1020
956
|
}
|
|
1021
|
-
export declare namespace TaskSetNotFoundException {
|
|
1022
|
-
|
|
1023
|
-
const filterSensitiveLog: (obj: TaskSetNotFoundException) => any;
|
|
1024
|
-
}
|
|
1025
957
|
export interface DeregisterContainerInstanceRequest {
|
|
1026
958
|
|
|
1027
959
|
cluster?: string;
|
|
@@ -2304,10 +2236,6 @@ export interface TargetNotConnectedException extends __SmithyException, $Metadat
|
|
|
2304
2236
|
$fault: "client";
|
|
2305
2237
|
message?: string;
|
|
2306
2238
|
}
|
|
2307
|
-
export declare namespace TargetNotConnectedException {
|
|
2308
|
-
|
|
2309
|
-
const filterSensitiveLog: (obj: TargetNotConnectedException) => any;
|
|
2310
|
-
}
|
|
2311
2239
|
export interface ListAccountSettingsRequest {
|
|
2312
2240
|
|
|
2313
2241
|
name?: SettingName | string;
|
|
@@ -2601,10 +2529,6 @@ export interface AttributeLimitExceededException extends __SmithyException, $Met
|
|
|
2601
2529
|
$fault: "client";
|
|
2602
2530
|
message?: string;
|
|
2603
2531
|
}
|
|
2604
|
-
export declare namespace AttributeLimitExceededException {
|
|
2605
|
-
|
|
2606
|
-
const filterSensitiveLog: (obj: AttributeLimitExceededException) => any;
|
|
2607
|
-
}
|
|
2608
2532
|
export interface PutAttributesRequest {
|
|
2609
2533
|
|
|
2610
2534
|
cluster?: string;
|
|
@@ -2649,10 +2573,6 @@ export interface ResourceInUseException extends __SmithyException, $MetadataBear
|
|
|
2649
2573
|
$fault: "client";
|
|
2650
2574
|
message?: string;
|
|
2651
2575
|
}
|
|
2652
|
-
export declare namespace ResourceInUseException {
|
|
2653
|
-
|
|
2654
|
-
const filterSensitiveLog: (obj: ResourceInUseException) => any;
|
|
2655
|
-
}
|
|
2656
2576
|
export declare enum PlatformDeviceType {
|
|
2657
2577
|
GPU = "GPU"
|
|
2658
2578
|
}
|
|
@@ -2755,10 +2675,6 @@ export interface BlockedException extends __SmithyException, $MetadataBearer {
|
|
|
2755
2675
|
$fault: "client";
|
|
2756
2676
|
message?: string;
|
|
2757
2677
|
}
|
|
2758
|
-
export declare namespace BlockedException {
|
|
2759
|
-
|
|
2760
|
-
const filterSensitiveLog: (obj: BlockedException) => any;
|
|
2761
|
-
}
|
|
2762
2678
|
export interface RunTaskRequest {
|
|
2763
2679
|
|
|
2764
2680
|
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
@@ -3004,10 +2920,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
3004
2920
|
$fault: "client";
|
|
3005
2921
|
message?: string;
|
|
3006
2922
|
}
|
|
3007
|
-
export declare namespace ResourceNotFoundException {
|
|
3008
|
-
|
|
3009
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
3010
|
-
}
|
|
3011
2923
|
export interface TagResourceRequest {
|
|
3012
2924
|
|
|
3013
2925
|
resourceArn: string | undefined;
|
|
@@ -3113,20 +3025,12 @@ export interface MissingVersionException extends __SmithyException, $MetadataBea
|
|
|
3113
3025
|
$fault: "client";
|
|
3114
3026
|
message?: string;
|
|
3115
3027
|
}
|
|
3116
|
-
export declare namespace MissingVersionException {
|
|
3117
|
-
|
|
3118
|
-
const filterSensitiveLog: (obj: MissingVersionException) => any;
|
|
3119
|
-
}
|
|
3120
3028
|
|
|
3121
3029
|
export interface NoUpdateAvailableException extends __SmithyException, $MetadataBearer {
|
|
3122
3030
|
name: "NoUpdateAvailableException";
|
|
3123
3031
|
$fault: "client";
|
|
3124
3032
|
message?: string;
|
|
3125
3033
|
}
|
|
3126
|
-
export declare namespace NoUpdateAvailableException {
|
|
3127
|
-
|
|
3128
|
-
const filterSensitiveLog: (obj: NoUpdateAvailableException) => any;
|
|
3129
|
-
}
|
|
3130
3034
|
export interface UpdateContainerAgentRequest {
|
|
3131
3035
|
|
|
3132
3036
|
cluster?: string;
|
|
@@ -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 { ECSClientConfig } from "./ECSClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: ECSClientConfig) => {
|
|
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: ECSClientConfig) => {
|
|
|
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 { ECSClientConfig } from "./ECSClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: ECSClientConfig) => {
|
|
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: ECSClientConfig) => {
|
|
|
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-ecs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.47.2",
|
|
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,49 +18,45 @@
|
|
|
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.2",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.47.2",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.47.2",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.47.2",
|
|
25
|
+
"@aws-sdk/hash-node": "3.47.2",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.47.2",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.47.2",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.47.2",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.47.2",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.47.2",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.47.2",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.47.2",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.47.2",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.47.2",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.47.2",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.47.2",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.47.2",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.47.2",
|
|
39
|
+
"@aws-sdk/types": "3.47.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.47.2",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.47.1",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.47.2",
|
|
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.2",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.47.2",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.47.2",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.47.2",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.47.1",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.47.2",
|
|
51
|
+
"@aws-sdk/util-waiter": "3.47.2",
|
|
53
52
|
"tslib": "^2.3.0"
|
|
54
53
|
},
|
|
55
54
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
57
|
-
"@types/node": "^12.7.5"
|
|
58
|
-
"downlevel-dts": "0.7.0",
|
|
59
|
-
"jest": "^26.1.0",
|
|
60
|
-
"rimraf": "^3.0.0",
|
|
61
|
-
"ts-jest": "^26.4.1",
|
|
62
|
-
"typedoc": "^0.19.2",
|
|
63
|
-
"typescript": "~4.3.5"
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.47.1",
|
|
56
|
+
"@types/node": "^12.7.5"
|
|
64
57
|
},
|
|
65
58
|
"engines": {
|
|
66
|
-
"node": ">=
|
|
59
|
+
"node": ">=12.0.0"
|
|
67
60
|
},
|
|
68
61
|
"typesVersions": {
|
|
69
62
|
"<4.0": {
|