@aws-sdk/client-ecs 3.231.0 → 3.234.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/endpoint/ruleset.js +0 -9
- package/dist-cjs/models/models_0.js +8 -4
- package/dist-cjs/protocols/Aws_json1_1.js +22 -0
- package/dist-es/endpoint/ruleset.js +0 -9
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/protocols/Aws_json1_1.js +22 -0
- package/dist-types/ECS.d.ts +147 -146
- package/dist-types/ECSClient.d.ts +3 -3
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +1 -1
- package/dist-types/commands/CreateClusterCommand.d.ts +3 -3
- package/dist-types/commands/CreateServiceCommand.d.ts +14 -14
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +4 -4
- package/dist-types/commands/DeleteClusterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteServiceCommand.d.ts +6 -6
- package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +5 -5
- package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +4 -4
- package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +3 -3
- package/dist-types/commands/DescribeTasksCommand.d.ts +1 -1
- package/dist-types/commands/DiscoverPollEndpointCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteCommandCommand.d.ts +3 -1
- package/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +1 -1
- package/dist-types/commands/ListTasksCommand.d.ts +1 -1
- package/dist-types/commands/PutAccountSettingCommand.d.ts +4 -4
- package/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +2 -2
- package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +1 -1
- package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +2 -2
- package/dist-types/commands/RunTaskCommand.d.ts +9 -9
- package/dist-types/commands/StartTaskCommand.d.ts +1 -1
- package/dist-types/commands/StopTaskCommand.d.ts +4 -4
- package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +1 -1
- package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +1 -1
- package/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContainerAgentCommand.d.ts +7 -7
- package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +14 -14
- package/dist-types/commands/UpdateServiceCommand.d.ts +40 -41
- package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +9 -9
- package/dist-types/models/models_0.d.ts +1219 -1044
- package/dist-types/ts3.4/models/models_0.d.ts +12 -0
- package/package.json +7 -7
|
@@ -184,6 +184,11 @@ export declare class ClusterNotFoundException extends __BaseException {
|
|
|
184
184
|
opts: __ExceptionOptionType<ClusterNotFoundException, __BaseException>
|
|
185
185
|
);
|
|
186
186
|
}
|
|
187
|
+
export interface DeploymentAlarms {
|
|
188
|
+
alarmNames: string[] | undefined;
|
|
189
|
+
enable: boolean | undefined;
|
|
190
|
+
rollback: boolean | undefined;
|
|
191
|
+
}
|
|
187
192
|
export interface DeploymentCircuitBreaker {
|
|
188
193
|
enable: boolean | undefined;
|
|
189
194
|
rollback: boolean | undefined;
|
|
@@ -192,6 +197,7 @@ export interface DeploymentConfiguration {
|
|
|
192
197
|
deploymentCircuitBreaker?: DeploymentCircuitBreaker;
|
|
193
198
|
maximumPercent?: number;
|
|
194
199
|
minimumHealthyPercent?: number;
|
|
200
|
+
alarms?: DeploymentAlarms;
|
|
195
201
|
}
|
|
196
202
|
export declare enum DeploymentControllerType {
|
|
197
203
|
CODE_DEPLOY = "CODE_DEPLOY",
|
|
@@ -743,6 +749,7 @@ export interface PortMapping {
|
|
|
743
749
|
protocol?: TransportProtocol | string;
|
|
744
750
|
name?: string;
|
|
745
751
|
appProtocol?: ApplicationProtocol | string;
|
|
752
|
+
containerPortRange?: string;
|
|
746
753
|
}
|
|
747
754
|
export interface RepositoryCredentials {
|
|
748
755
|
credentialsParameter: string | undefined;
|
|
@@ -1064,6 +1071,8 @@ export interface NetworkBinding {
|
|
|
1064
1071
|
containerPort?: number;
|
|
1065
1072
|
hostPort?: number;
|
|
1066
1073
|
protocol?: TransportProtocol | string;
|
|
1074
|
+
containerPortRange?: string;
|
|
1075
|
+
hostPortRange?: string;
|
|
1067
1076
|
}
|
|
1068
1077
|
export interface NetworkInterface {
|
|
1069
1078
|
attachmentId?: string;
|
|
@@ -1719,6 +1728,9 @@ export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
|
|
|
1719
1728
|
export declare const CreateClusterResponseFilterSensitiveLog: (
|
|
1720
1729
|
obj: CreateClusterResponse
|
|
1721
1730
|
) => any;
|
|
1731
|
+
export declare const DeploymentAlarmsFilterSensitiveLog: (
|
|
1732
|
+
obj: DeploymentAlarms
|
|
1733
|
+
) => any;
|
|
1722
1734
|
export declare const DeploymentCircuitBreakerFilterSensitiveLog: (
|
|
1723
1735
|
obj: DeploymentCircuitBreaker
|
|
1724
1736
|
) => any;
|
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.234.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",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.234.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.234.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.234.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.226.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.226.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.226.0",
|
|
@@ -38,14 +38,14 @@
|
|
|
38
38
|
"@aws-sdk/node-config-provider": "3.226.0",
|
|
39
39
|
"@aws-sdk/node-http-handler": "3.226.0",
|
|
40
40
|
"@aws-sdk/protocol-http": "3.226.0",
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
+
"@aws-sdk/smithy-client": "3.234.0",
|
|
42
42
|
"@aws-sdk/types": "3.226.0",
|
|
43
43
|
"@aws-sdk/url-parser": "3.226.0",
|
|
44
44
|
"@aws-sdk/util-base64": "3.208.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.234.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.234.0",
|
|
49
49
|
"@aws-sdk/util-endpoints": "3.226.0",
|
|
50
50
|
"@aws-sdk/util-retry": "3.229.0",
|
|
51
51
|
"@aws-sdk/util-user-agent-browser": "3.226.0",
|