@aws-sdk/client-ecs 3.629.0 → 3.632.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-es/models/index.js +1 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +10 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +10 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +12 -2
- package/dist-types/commands/CreateTaskSetCommand.d.ts +11 -1
- package/dist-types/commands/DeleteAccountSettingCommand.d.ts +10 -0
- package/dist-types/commands/DeleteAttributesCommand.d.ts +2 -2
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +10 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +10 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +10 -0
- package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +17 -0
- package/dist-types/commands/DeleteTaskSetCommand.d.ts +10 -0
- package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +10 -0
- package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +17 -0
- package/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +10 -0
- package/dist-types/commands/DescribeClustersCommand.d.ts +10 -0
- package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +10 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +10 -0
- package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +17 -0
- package/dist-types/commands/DescribeTaskSetsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeTasksCommand.d.ts +10 -0
- package/dist-types/commands/DiscoverPollEndpointCommand.d.ts +10 -0
- package/dist-types/commands/ExecuteCommandCommand.d.ts +10 -0
- package/dist-types/commands/GetTaskProtectionCommand.d.ts +10 -0
- package/dist-types/commands/ListAccountSettingsCommand.d.ts +10 -0
- package/dist-types/commands/ListClustersCommand.d.ts +10 -0
- package/dist-types/commands/ListContainerInstancesCommand.d.ts +10 -0
- package/dist-types/commands/ListServicesByNamespaceCommand.d.ts +10 -0
- package/dist-types/commands/ListServicesCommand.d.ts +10 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -0
- package/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +10 -0
- package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +10 -0
- package/dist-types/commands/ListTasksCommand.d.ts +10 -0
- package/dist-types/commands/PutAccountSettingCommand.d.ts +10 -0
- package/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +10 -0
- package/dist-types/commands/PutAttributesCommand.d.ts +2 -2
- package/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +10 -0
- package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +10 -0
- package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +25 -3
- package/dist-types/commands/RunTaskCommand.d.ts +10 -0
- package/dist-types/commands/StartTaskCommand.d.ts +10 -0
- package/dist-types/commands/StopTaskCommand.d.ts +12 -2
- package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +10 -0
- package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +10 -0
- package/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +10 -0
- package/dist-types/commands/TagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +10 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +10 -0
- package/dist-types/commands/UpdateClusterSettingsCommand.d.ts +10 -0
- package/dist-types/commands/UpdateContainerAgentCommand.d.ts +10 -0
- package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +11 -1
- package/dist-types/commands/UpdateServiceCommand.d.ts +10 -0
- package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +10 -0
- package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +10 -0
- package/dist-types/commands/UpdateTaskSetCommand.d.ts +12 -1
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +239 -275
- package/dist-types/models/models_1.d.ts +11 -0
- package/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +6 -3
- package/dist-types/ts3.4/models/models_1.d.ts +4 -0
- package/package.json +6 -6
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ECSClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
UpdateTaskSetResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { UpdateTaskSetRequest } from "../models/models_0";
|
|
9
|
+
import { UpdateTaskSetResponse } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface UpdateTaskSetCommandInput extends UpdateTaskSetRequest {}
|
|
@@ -815,6 +815,11 @@ export interface ResourceRequirement {
|
|
|
815
815
|
value: string | undefined;
|
|
816
816
|
type: ResourceType | undefined;
|
|
817
817
|
}
|
|
818
|
+
export interface ContainerRestartPolicy {
|
|
819
|
+
enabled: boolean | undefined;
|
|
820
|
+
ignoredExitCodes?: number[];
|
|
821
|
+
restartAttemptPeriod?: number;
|
|
822
|
+
}
|
|
818
823
|
export interface SystemControl {
|
|
819
824
|
namespace?: string;
|
|
820
825
|
value?: string;
|
|
@@ -856,6 +861,7 @@ export interface ContainerDefinition {
|
|
|
856
861
|
links?: string[];
|
|
857
862
|
portMappings?: PortMapping[];
|
|
858
863
|
essential?: boolean;
|
|
864
|
+
restartPolicy?: ContainerRestartPolicy;
|
|
859
865
|
entryPoint?: string[];
|
|
860
866
|
command?: string[];
|
|
861
867
|
environment?: KeyValuePair[];
|
|
@@ -1894,9 +1900,6 @@ export interface UpdateTaskSetRequest {
|
|
|
1894
1900
|
taskSet: string | undefined;
|
|
1895
1901
|
scale: Scale | undefined;
|
|
1896
1902
|
}
|
|
1897
|
-
export interface UpdateTaskSetResponse {
|
|
1898
|
-
taskSet?: TaskSet;
|
|
1899
|
-
}
|
|
1900
1903
|
export declare const SessionFilterSensitiveLog: (obj: Session) => any;
|
|
1901
1904
|
export declare const ExecuteCommandResponseFilterSensitiveLog: (
|
|
1902
1905
|
obj: ExecuteCommandResponse
|
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.632.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-ecs",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.632.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.632.0",
|
|
25
25
|
"@aws-sdk/core": "3.629.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.632.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.632.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
32
32
|
"@aws-sdk/types": "3.609.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.632.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.5",
|