@aws-sdk/client-ecs 3.272.0 → 3.278.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/ECS.js +15 -0
- package/dist-cjs/commands/DeleteTaskDefinitionsCommand.js +46 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +79 -70
- package/dist-cjs/protocols/Aws_json1_1.js +82 -3
- package/dist-es/ECS.js +15 -0
- package/dist-es/commands/DeleteTaskDefinitionsCommand.js +42 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +59 -52
- package/dist-es/protocols/Aws_json1_1.js +77 -0
- package/dist-types/ECS.d.ts +36 -13
- package/dist-types/ECSClient.d.ts +3 -2
- package/dist-types/commands/CreateClusterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccountSettingCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +50 -0
- package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +6 -3
- package/dist-types/commands/PutAccountSettingCommand.d.ts +3 -3
- package/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +1 -1
- package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +3 -3
- package/dist-types/commands/UpdateServiceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +2128 -2096
- package/dist-types/protocols/Aws_json1_1.d.ts +3 -0
- package/dist-types/ts3.4/ECS.d.ts +17 -0
- package/dist-types/ts3.4/ECSClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DeleteTaskDefinitionsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +122 -108
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +4 -4
|
@@ -9,6 +9,7 @@ import { DeleteAttributesCommandInput, DeleteAttributesCommandOutput } from "../
|
|
|
9
9
|
import { DeleteCapacityProviderCommandInput, DeleteCapacityProviderCommandOutput } from "../commands/DeleteCapacityProviderCommand";
|
|
10
10
|
import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "../commands/DeleteClusterCommand";
|
|
11
11
|
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "../commands/DeleteServiceCommand";
|
|
12
|
+
import { DeleteTaskDefinitionsCommandInput, DeleteTaskDefinitionsCommandOutput } from "../commands/DeleteTaskDefinitionsCommand";
|
|
12
13
|
import { DeleteTaskSetCommandInput, DeleteTaskSetCommandOutput } from "../commands/DeleteTaskSetCommand";
|
|
13
14
|
import { DeregisterContainerInstanceCommandInput, DeregisterContainerInstanceCommandOutput } from "../commands/DeregisterContainerInstanceCommand";
|
|
14
15
|
import { DeregisterTaskDefinitionCommandInput, DeregisterTaskDefinitionCommandOutput } from "../commands/DeregisterTaskDefinitionCommand";
|
|
@@ -64,6 +65,7 @@ export declare const serializeAws_json1_1DeleteAttributesCommand: (input: Delete
|
|
|
64
65
|
export declare const serializeAws_json1_1DeleteCapacityProviderCommand: (input: DeleteCapacityProviderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
66
|
export declare const serializeAws_json1_1DeleteClusterCommand: (input: DeleteClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
67
|
export declare const serializeAws_json1_1DeleteServiceCommand: (input: DeleteServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
export declare const serializeAws_json1_1DeleteTaskDefinitionsCommand: (input: DeleteTaskDefinitionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
69
|
export declare const serializeAws_json1_1DeleteTaskSetCommand: (input: DeleteTaskSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
70
|
export declare const serializeAws_json1_1DeregisterContainerInstanceCommand: (input: DeregisterContainerInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
71
|
export declare const serializeAws_json1_1DeregisterTaskDefinitionCommand: (input: DeregisterTaskDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -119,6 +121,7 @@ export declare const deserializeAws_json1_1DeleteAttributesCommand: (output: __H
|
|
|
119
121
|
export declare const deserializeAws_json1_1DeleteCapacityProviderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCapacityProviderCommandOutput>;
|
|
120
122
|
export declare const deserializeAws_json1_1DeleteClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterCommandOutput>;
|
|
121
123
|
export declare const deserializeAws_json1_1DeleteServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceCommandOutput>;
|
|
124
|
+
export declare const deserializeAws_json1_1DeleteTaskDefinitionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTaskDefinitionsCommandOutput>;
|
|
122
125
|
export declare const deserializeAws_json1_1DeleteTaskSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTaskSetCommandOutput>;
|
|
123
126
|
export declare const deserializeAws_json1_1DeregisterContainerInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterContainerInstanceCommandOutput>;
|
|
124
127
|
export declare const deserializeAws_json1_1DeregisterTaskDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterTaskDefinitionCommandOutput>;
|
|
@@ -35,6 +35,10 @@ import {
|
|
|
35
35
|
DeleteServiceCommandInput,
|
|
36
36
|
DeleteServiceCommandOutput,
|
|
37
37
|
} from "./commands/DeleteServiceCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteTaskDefinitionsCommandInput,
|
|
40
|
+
DeleteTaskDefinitionsCommandOutput,
|
|
41
|
+
} from "./commands/DeleteTaskDefinitionsCommand";
|
|
38
42
|
import {
|
|
39
43
|
DeleteTaskSetCommandInput,
|
|
40
44
|
DeleteTaskSetCommandOutput,
|
|
@@ -338,6 +342,19 @@ export declare class ECS extends ECSClient {
|
|
|
338
342
|
options: __HttpHandlerOptions,
|
|
339
343
|
cb: (err: any, data?: DeleteServiceCommandOutput) => void
|
|
340
344
|
): void;
|
|
345
|
+
deleteTaskDefinitions(
|
|
346
|
+
args: DeleteTaskDefinitionsCommandInput,
|
|
347
|
+
options?: __HttpHandlerOptions
|
|
348
|
+
): Promise<DeleteTaskDefinitionsCommandOutput>;
|
|
349
|
+
deleteTaskDefinitions(
|
|
350
|
+
args: DeleteTaskDefinitionsCommandInput,
|
|
351
|
+
cb: (err: any, data?: DeleteTaskDefinitionsCommandOutput) => void
|
|
352
|
+
): void;
|
|
353
|
+
deleteTaskDefinitions(
|
|
354
|
+
args: DeleteTaskDefinitionsCommandInput,
|
|
355
|
+
options: __HttpHandlerOptions,
|
|
356
|
+
cb: (err: any, data?: DeleteTaskDefinitionsCommandOutput) => void
|
|
357
|
+
): void;
|
|
341
358
|
deleteTaskSet(
|
|
342
359
|
args: DeleteTaskSetCommandInput,
|
|
343
360
|
options?: __HttpHandlerOptions
|
|
@@ -80,6 +80,10 @@ import {
|
|
|
80
80
|
DeleteServiceCommandInput,
|
|
81
81
|
DeleteServiceCommandOutput,
|
|
82
82
|
} from "./commands/DeleteServiceCommand";
|
|
83
|
+
import {
|
|
84
|
+
DeleteTaskDefinitionsCommandInput,
|
|
85
|
+
DeleteTaskDefinitionsCommandOutput,
|
|
86
|
+
} from "./commands/DeleteTaskDefinitionsCommand";
|
|
83
87
|
import {
|
|
84
88
|
DeleteTaskSetCommandInput,
|
|
85
89
|
DeleteTaskSetCommandOutput,
|
|
@@ -279,6 +283,7 @@ export declare type ServiceInputTypes =
|
|
|
279
283
|
| DeleteCapacityProviderCommandInput
|
|
280
284
|
| DeleteClusterCommandInput
|
|
281
285
|
| DeleteServiceCommandInput
|
|
286
|
+
| DeleteTaskDefinitionsCommandInput
|
|
282
287
|
| DeleteTaskSetCommandInput
|
|
283
288
|
| DeregisterContainerInstanceCommandInput
|
|
284
289
|
| DeregisterTaskDefinitionCommandInput
|
|
@@ -335,6 +340,7 @@ export declare type ServiceOutputTypes =
|
|
|
335
340
|
| DeleteCapacityProviderCommandOutput
|
|
336
341
|
| DeleteClusterCommandOutput
|
|
337
342
|
| DeleteServiceCommandOutput
|
|
343
|
+
| DeleteTaskDefinitionsCommandOutput
|
|
338
344
|
| DeleteTaskSetCommandOutput
|
|
339
345
|
| DeregisterContainerInstanceCommandOutput
|
|
340
346
|
| DeregisterTaskDefinitionCommandOutput
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ECSClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ECSClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteTaskDefinitionsRequest,
|
|
16
|
+
DeleteTaskDefinitionsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DeleteTaskDefinitionsCommandInput
|
|
19
|
+
extends DeleteTaskDefinitionsRequest {}
|
|
20
|
+
export interface DeleteTaskDefinitionsCommandOutput
|
|
21
|
+
extends DeleteTaskDefinitionsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteTaskDefinitionsCommand extends $Command<
|
|
24
|
+
DeleteTaskDefinitionsCommandInput,
|
|
25
|
+
DeleteTaskDefinitionsCommandOutput,
|
|
26
|
+
ECSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteTaskDefinitionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteTaskDefinitionsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ECSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteTaskDefinitionsCommandInput,
|
|
37
|
+
DeleteTaskDefinitionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -7,6 +7,7 @@ export * from "./DeleteAttributesCommand";
|
|
|
7
7
|
export * from "./DeleteCapacityProviderCommand";
|
|
8
8
|
export * from "./DeleteClusterCommand";
|
|
9
9
|
export * from "./DeleteServiceCommand";
|
|
10
|
+
export * from "./DeleteTaskDefinitionsCommand";
|
|
10
11
|
export * from "./DeleteTaskSetCommand";
|
|
11
12
|
export * from "./DeregisterContainerInstanceCommand";
|
|
12
13
|
export * from "./DeregisterTaskDefinitionCommand";
|
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region?: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|
|
@@ -581,84 +581,13 @@ export interface DeleteServiceRequest {
|
|
|
581
581
|
export interface DeleteServiceResponse {
|
|
582
582
|
service?: Service;
|
|
583
583
|
}
|
|
584
|
-
export interface
|
|
585
|
-
|
|
586
|
-
service: string | undefined;
|
|
587
|
-
taskSet: string | undefined;
|
|
588
|
-
force?: boolean;
|
|
589
|
-
}
|
|
590
|
-
export interface DeleteTaskSetResponse {
|
|
591
|
-
taskSet?: TaskSet;
|
|
592
|
-
}
|
|
593
|
-
export declare class TaskSetNotFoundException extends __BaseException {
|
|
594
|
-
readonly name: "TaskSetNotFoundException";
|
|
595
|
-
readonly $fault: "client";
|
|
596
|
-
constructor(
|
|
597
|
-
opts: __ExceptionOptionType<TaskSetNotFoundException, __BaseException>
|
|
598
|
-
);
|
|
599
|
-
}
|
|
600
|
-
export interface DeregisterContainerInstanceRequest {
|
|
601
|
-
cluster?: string;
|
|
602
|
-
containerInstance: string | undefined;
|
|
603
|
-
force?: boolean;
|
|
604
|
-
}
|
|
605
|
-
export declare enum InstanceHealthCheckState {
|
|
606
|
-
IMPAIRED = "IMPAIRED",
|
|
607
|
-
INITIALIZING = "INITIALIZING",
|
|
608
|
-
INSUFFICIENT_DATA = "INSUFFICIENT_DATA",
|
|
609
|
-
OK = "OK",
|
|
610
|
-
}
|
|
611
|
-
export declare enum InstanceHealthCheckType {
|
|
612
|
-
CONTAINER_RUNTIME = "CONTAINER_RUNTIME",
|
|
613
|
-
}
|
|
614
|
-
export interface InstanceHealthCheckResult {
|
|
615
|
-
type?: InstanceHealthCheckType | string;
|
|
616
|
-
status?: InstanceHealthCheckState | string;
|
|
617
|
-
lastUpdated?: Date;
|
|
618
|
-
lastStatusChange?: Date;
|
|
619
|
-
}
|
|
620
|
-
export interface ContainerInstanceHealthStatus {
|
|
621
|
-
overallStatus?: InstanceHealthCheckState | string;
|
|
622
|
-
details?: InstanceHealthCheckResult[];
|
|
623
|
-
}
|
|
624
|
-
export interface Resource {
|
|
625
|
-
name?: string;
|
|
626
|
-
type?: string;
|
|
627
|
-
doubleValue?: number;
|
|
628
|
-
longValue?: number;
|
|
629
|
-
integerValue?: number;
|
|
630
|
-
stringSetValue?: string[];
|
|
631
|
-
}
|
|
632
|
-
export interface VersionInfo {
|
|
633
|
-
agentVersion?: string;
|
|
634
|
-
agentHash?: string;
|
|
635
|
-
dockerVersion?: string;
|
|
584
|
+
export interface DeleteTaskDefinitionsRequest {
|
|
585
|
+
taskDefinitions: string[] | undefined;
|
|
636
586
|
}
|
|
637
|
-
export interface
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
version?: number;
|
|
642
|
-
versionInfo?: VersionInfo;
|
|
643
|
-
remainingResources?: Resource[];
|
|
644
|
-
registeredResources?: Resource[];
|
|
645
|
-
status?: string;
|
|
646
|
-
statusReason?: string;
|
|
647
|
-
agentConnected?: boolean;
|
|
648
|
-
runningTasksCount?: number;
|
|
649
|
-
pendingTasksCount?: number;
|
|
650
|
-
agentUpdateStatus?: AgentUpdateStatus | string;
|
|
651
|
-
attributes?: Attribute[];
|
|
652
|
-
registeredAt?: Date;
|
|
653
|
-
attachments?: Attachment[];
|
|
654
|
-
tags?: Tag[];
|
|
655
|
-
healthStatus?: ContainerInstanceHealthStatus;
|
|
656
|
-
}
|
|
657
|
-
export interface DeregisterContainerInstanceResponse {
|
|
658
|
-
containerInstance?: ContainerInstance;
|
|
659
|
-
}
|
|
660
|
-
export interface DeregisterTaskDefinitionRequest {
|
|
661
|
-
taskDefinition: string | undefined;
|
|
587
|
+
export interface Failure {
|
|
588
|
+
arn?: string;
|
|
589
|
+
reason?: string;
|
|
590
|
+
detail?: string;
|
|
662
591
|
}
|
|
663
592
|
export declare enum Compatibility {
|
|
664
593
|
EC2 = "EC2",
|
|
@@ -890,6 +819,7 @@ export interface RuntimePlatform {
|
|
|
890
819
|
}
|
|
891
820
|
export declare enum TaskDefinitionStatus {
|
|
892
821
|
ACTIVE = "ACTIVE",
|
|
822
|
+
DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
|
|
893
823
|
INACTIVE = "INACTIVE",
|
|
894
824
|
}
|
|
895
825
|
export declare enum Scope {
|
|
@@ -967,6 +897,89 @@ export interface TaskDefinition {
|
|
|
967
897
|
registeredBy?: string;
|
|
968
898
|
ephemeralStorage?: EphemeralStorage;
|
|
969
899
|
}
|
|
900
|
+
export interface DeleteTaskDefinitionsResponse {
|
|
901
|
+
taskDefinitions?: TaskDefinition[];
|
|
902
|
+
failures?: Failure[];
|
|
903
|
+
}
|
|
904
|
+
export interface DeleteTaskSetRequest {
|
|
905
|
+
cluster: string | undefined;
|
|
906
|
+
service: string | undefined;
|
|
907
|
+
taskSet: string | undefined;
|
|
908
|
+
force?: boolean;
|
|
909
|
+
}
|
|
910
|
+
export interface DeleteTaskSetResponse {
|
|
911
|
+
taskSet?: TaskSet;
|
|
912
|
+
}
|
|
913
|
+
export declare class TaskSetNotFoundException extends __BaseException {
|
|
914
|
+
readonly name: "TaskSetNotFoundException";
|
|
915
|
+
readonly $fault: "client";
|
|
916
|
+
constructor(
|
|
917
|
+
opts: __ExceptionOptionType<TaskSetNotFoundException, __BaseException>
|
|
918
|
+
);
|
|
919
|
+
}
|
|
920
|
+
export interface DeregisterContainerInstanceRequest {
|
|
921
|
+
cluster?: string;
|
|
922
|
+
containerInstance: string | undefined;
|
|
923
|
+
force?: boolean;
|
|
924
|
+
}
|
|
925
|
+
export declare enum InstanceHealthCheckState {
|
|
926
|
+
IMPAIRED = "IMPAIRED",
|
|
927
|
+
INITIALIZING = "INITIALIZING",
|
|
928
|
+
INSUFFICIENT_DATA = "INSUFFICIENT_DATA",
|
|
929
|
+
OK = "OK",
|
|
930
|
+
}
|
|
931
|
+
export declare enum InstanceHealthCheckType {
|
|
932
|
+
CONTAINER_RUNTIME = "CONTAINER_RUNTIME",
|
|
933
|
+
}
|
|
934
|
+
export interface InstanceHealthCheckResult {
|
|
935
|
+
type?: InstanceHealthCheckType | string;
|
|
936
|
+
status?: InstanceHealthCheckState | string;
|
|
937
|
+
lastUpdated?: Date;
|
|
938
|
+
lastStatusChange?: Date;
|
|
939
|
+
}
|
|
940
|
+
export interface ContainerInstanceHealthStatus {
|
|
941
|
+
overallStatus?: InstanceHealthCheckState | string;
|
|
942
|
+
details?: InstanceHealthCheckResult[];
|
|
943
|
+
}
|
|
944
|
+
export interface Resource {
|
|
945
|
+
name?: string;
|
|
946
|
+
type?: string;
|
|
947
|
+
doubleValue?: number;
|
|
948
|
+
longValue?: number;
|
|
949
|
+
integerValue?: number;
|
|
950
|
+
stringSetValue?: string[];
|
|
951
|
+
}
|
|
952
|
+
export interface VersionInfo {
|
|
953
|
+
agentVersion?: string;
|
|
954
|
+
agentHash?: string;
|
|
955
|
+
dockerVersion?: string;
|
|
956
|
+
}
|
|
957
|
+
export interface ContainerInstance {
|
|
958
|
+
containerInstanceArn?: string;
|
|
959
|
+
ec2InstanceId?: string;
|
|
960
|
+
capacityProviderName?: string;
|
|
961
|
+
version?: number;
|
|
962
|
+
versionInfo?: VersionInfo;
|
|
963
|
+
remainingResources?: Resource[];
|
|
964
|
+
registeredResources?: Resource[];
|
|
965
|
+
status?: string;
|
|
966
|
+
statusReason?: string;
|
|
967
|
+
agentConnected?: boolean;
|
|
968
|
+
runningTasksCount?: number;
|
|
969
|
+
pendingTasksCount?: number;
|
|
970
|
+
agentUpdateStatus?: AgentUpdateStatus | string;
|
|
971
|
+
attributes?: Attribute[];
|
|
972
|
+
registeredAt?: Date;
|
|
973
|
+
attachments?: Attachment[];
|
|
974
|
+
tags?: Tag[];
|
|
975
|
+
healthStatus?: ContainerInstanceHealthStatus;
|
|
976
|
+
}
|
|
977
|
+
export interface DeregisterContainerInstanceResponse {
|
|
978
|
+
containerInstance?: ContainerInstance;
|
|
979
|
+
}
|
|
980
|
+
export interface DeregisterTaskDefinitionRequest {
|
|
981
|
+
taskDefinition: string | undefined;
|
|
982
|
+
}
|
|
970
983
|
export interface DeregisterTaskDefinitionResponse {
|
|
971
984
|
taskDefinition?: TaskDefinition;
|
|
972
985
|
}
|
|
@@ -979,11 +992,6 @@ export interface DescribeCapacityProvidersRequest {
|
|
|
979
992
|
maxResults?: number;
|
|
980
993
|
nextToken?: string;
|
|
981
994
|
}
|
|
982
|
-
export interface Failure {
|
|
983
|
-
arn?: string;
|
|
984
|
-
reason?: string;
|
|
985
|
-
detail?: string;
|
|
986
|
-
}
|
|
987
995
|
export interface DescribeCapacityProvidersResponse {
|
|
988
996
|
capacityProviders?: CapacityProvider[];
|
|
989
997
|
failures?: Failure[];
|
|
@@ -1821,32 +1829,10 @@ export declare const DeleteServiceRequestFilterSensitiveLog: (
|
|
|
1821
1829
|
export declare const DeleteServiceResponseFilterSensitiveLog: (
|
|
1822
1830
|
obj: DeleteServiceResponse
|
|
1823
1831
|
) => any;
|
|
1824
|
-
export declare const
|
|
1825
|
-
obj:
|
|
1826
|
-
) => any;
|
|
1827
|
-
export declare const DeleteTaskSetResponseFilterSensitiveLog: (
|
|
1828
|
-
obj: DeleteTaskSetResponse
|
|
1829
|
-
) => any;
|
|
1830
|
-
export declare const DeregisterContainerInstanceRequestFilterSensitiveLog: (
|
|
1831
|
-
obj: DeregisterContainerInstanceRequest
|
|
1832
|
-
) => any;
|
|
1833
|
-
export declare const InstanceHealthCheckResultFilterSensitiveLog: (
|
|
1834
|
-
obj: InstanceHealthCheckResult
|
|
1835
|
-
) => any;
|
|
1836
|
-
export declare const ContainerInstanceHealthStatusFilterSensitiveLog: (
|
|
1837
|
-
obj: ContainerInstanceHealthStatus
|
|
1838
|
-
) => any;
|
|
1839
|
-
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
1840
|
-
export declare const VersionInfoFilterSensitiveLog: (obj: VersionInfo) => any;
|
|
1841
|
-
export declare const ContainerInstanceFilterSensitiveLog: (
|
|
1842
|
-
obj: ContainerInstance
|
|
1843
|
-
) => any;
|
|
1844
|
-
export declare const DeregisterContainerInstanceResponseFilterSensitiveLog: (
|
|
1845
|
-
obj: DeregisterContainerInstanceResponse
|
|
1846
|
-
) => any;
|
|
1847
|
-
export declare const DeregisterTaskDefinitionRequestFilterSensitiveLog: (
|
|
1848
|
-
obj: DeregisterTaskDefinitionRequest
|
|
1832
|
+
export declare const DeleteTaskDefinitionsRequestFilterSensitiveLog: (
|
|
1833
|
+
obj: DeleteTaskDefinitionsRequest
|
|
1849
1834
|
) => any;
|
|
1835
|
+
export declare const FailureFilterSensitiveLog: (obj: Failure) => any;
|
|
1850
1836
|
export declare const ContainerDependencyFilterSensitiveLog: (
|
|
1851
1837
|
obj: ContainerDependency
|
|
1852
1838
|
) => any;
|
|
@@ -1919,13 +1905,41 @@ export declare const VolumeFilterSensitiveLog: (obj: Volume) => any;
|
|
|
1919
1905
|
export declare const TaskDefinitionFilterSensitiveLog: (
|
|
1920
1906
|
obj: TaskDefinition
|
|
1921
1907
|
) => any;
|
|
1908
|
+
export declare const DeleteTaskDefinitionsResponseFilterSensitiveLog: (
|
|
1909
|
+
obj: DeleteTaskDefinitionsResponse
|
|
1910
|
+
) => any;
|
|
1911
|
+
export declare const DeleteTaskSetRequestFilterSensitiveLog: (
|
|
1912
|
+
obj: DeleteTaskSetRequest
|
|
1913
|
+
) => any;
|
|
1914
|
+
export declare const DeleteTaskSetResponseFilterSensitiveLog: (
|
|
1915
|
+
obj: DeleteTaskSetResponse
|
|
1916
|
+
) => any;
|
|
1917
|
+
export declare const DeregisterContainerInstanceRequestFilterSensitiveLog: (
|
|
1918
|
+
obj: DeregisterContainerInstanceRequest
|
|
1919
|
+
) => any;
|
|
1920
|
+
export declare const InstanceHealthCheckResultFilterSensitiveLog: (
|
|
1921
|
+
obj: InstanceHealthCheckResult
|
|
1922
|
+
) => any;
|
|
1923
|
+
export declare const ContainerInstanceHealthStatusFilterSensitiveLog: (
|
|
1924
|
+
obj: ContainerInstanceHealthStatus
|
|
1925
|
+
) => any;
|
|
1926
|
+
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
1927
|
+
export declare const VersionInfoFilterSensitiveLog: (obj: VersionInfo) => any;
|
|
1928
|
+
export declare const ContainerInstanceFilterSensitiveLog: (
|
|
1929
|
+
obj: ContainerInstance
|
|
1930
|
+
) => any;
|
|
1931
|
+
export declare const DeregisterContainerInstanceResponseFilterSensitiveLog: (
|
|
1932
|
+
obj: DeregisterContainerInstanceResponse
|
|
1933
|
+
) => any;
|
|
1934
|
+
export declare const DeregisterTaskDefinitionRequestFilterSensitiveLog: (
|
|
1935
|
+
obj: DeregisterTaskDefinitionRequest
|
|
1936
|
+
) => any;
|
|
1922
1937
|
export declare const DeregisterTaskDefinitionResponseFilterSensitiveLog: (
|
|
1923
1938
|
obj: DeregisterTaskDefinitionResponse
|
|
1924
1939
|
) => any;
|
|
1925
1940
|
export declare const DescribeCapacityProvidersRequestFilterSensitiveLog: (
|
|
1926
1941
|
obj: DescribeCapacityProvidersRequest
|
|
1927
1942
|
) => any;
|
|
1928
|
-
export declare const FailureFilterSensitiveLog: (obj: Failure) => any;
|
|
1929
1943
|
export declare const DescribeCapacityProvidersResponseFilterSensitiveLog: (
|
|
1930
1944
|
obj: DescribeCapacityProvidersResponse
|
|
1931
1945
|
) => any;
|
|
@@ -39,6 +39,10 @@ import {
|
|
|
39
39
|
DeleteServiceCommandInput,
|
|
40
40
|
DeleteServiceCommandOutput,
|
|
41
41
|
} from "../commands/DeleteServiceCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteTaskDefinitionsCommandInput,
|
|
44
|
+
DeleteTaskDefinitionsCommandOutput,
|
|
45
|
+
} from "../commands/DeleteTaskDefinitionsCommand";
|
|
42
46
|
import {
|
|
43
47
|
DeleteTaskSetCommandInput,
|
|
44
48
|
DeleteTaskSetCommandOutput,
|
|
@@ -259,6 +263,10 @@ export declare const serializeAws_json1_1DeleteServiceCommand: (
|
|
|
259
263
|
input: DeleteServiceCommandInput,
|
|
260
264
|
context: __SerdeContext
|
|
261
265
|
) => Promise<__HttpRequest>;
|
|
266
|
+
export declare const serializeAws_json1_1DeleteTaskDefinitionsCommand: (
|
|
267
|
+
input: DeleteTaskDefinitionsCommandInput,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<__HttpRequest>;
|
|
262
270
|
export declare const serializeAws_json1_1DeleteTaskSetCommand: (
|
|
263
271
|
input: DeleteTaskSetCommandInput,
|
|
264
272
|
context: __SerdeContext
|
|
@@ -479,6 +487,10 @@ export declare const deserializeAws_json1_1DeleteServiceCommand: (
|
|
|
479
487
|
output: __HttpResponse,
|
|
480
488
|
context: __SerdeContext
|
|
481
489
|
) => Promise<DeleteServiceCommandOutput>;
|
|
490
|
+
export declare const deserializeAws_json1_1DeleteTaskDefinitionsCommand: (
|
|
491
|
+
output: __HttpResponse,
|
|
492
|
+
context: __SerdeContext
|
|
493
|
+
) => Promise<DeleteTaskDefinitionsCommandOutput>;
|
|
482
494
|
export declare const deserializeAws_json1_1DeleteTaskSetCommand: (
|
|
483
495
|
output: __HttpResponse,
|
|
484
496
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.278.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.278.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.272.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.278.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.272.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
29
29
|
"@aws-sdk/middleware-content-length": "3.272.0",
|
|
30
30
|
"@aws-sdk/middleware-endpoint": "3.272.0",
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.278.0",
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.272.0",
|
|
33
33
|
"@aws-sdk/middleware-recursion-detection": "3.272.0",
|
|
34
34
|
"@aws-sdk/middleware-retry": "3.272.0",
|