@aws-sdk/client-ecs 3.497.0 → 3.501.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.
|
@@ -30,7 +30,7 @@ declare const CreateTaskSetCommand_base: {
|
|
|
30
30
|
* uses the <code>EXTERNAL</code> deployment controller type. For more information, see
|
|
31
31
|
* <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html">Amazon ECS deployment
|
|
32
32
|
* types</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
33
|
-
* <p>
|
|
33
|
+
* <p>For information about the maximum number of task sets and otther quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS service quotas</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
34
34
|
* @example
|
|
35
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
36
|
* ```javascript
|
|
@@ -1272,8 +1272,8 @@ export interface DeploymentConfiguration {
|
|
|
1272
1272
|
* the container health check settings. </p>
|
|
1273
1273
|
* </li>
|
|
1274
1274
|
* </ul>
|
|
1275
|
-
* <p>For services
|
|
1276
|
-
*
|
|
1275
|
+
* <p>For services that <i>do</i> use a load balancer, the following should be
|
|
1276
|
+
* noted:</p>
|
|
1277
1277
|
* <ul>
|
|
1278
1278
|
* <li>
|
|
1279
1279
|
* <p>If a task has no essential containers with a health check defined, the service
|
|
@@ -1437,7 +1437,9 @@ export declare const AssignPublicIp: {
|
|
|
1437
1437
|
export type AssignPublicIp = (typeof AssignPublicIp)[keyof typeof AssignPublicIp];
|
|
1438
1438
|
/**
|
|
1439
1439
|
* @public
|
|
1440
|
-
* <p>An object representing the networking details for a task or service
|
|
1440
|
+
* <p>An object representing the networking details for a task or service. For example
|
|
1441
|
+
* <code>awsvpcConfiguration=\{subnets=["subnet-12344321"],securityGroups=["sg-12344321"]\}</code>
|
|
1442
|
+
* </p>
|
|
1441
1443
|
*/
|
|
1442
1444
|
export interface AwsVpcConfiguration {
|
|
1443
1445
|
/**
|
|
@@ -1878,7 +1880,7 @@ export interface ServiceConnectService {
|
|
|
1878
1880
|
timeout?: TimeoutConfiguration;
|
|
1879
1881
|
/**
|
|
1880
1882
|
* @public
|
|
1881
|
-
* <p>
|
|
1883
|
+
* <p>A reference to an object that represents a Transport Layer Security (TLS) configuration.</p>
|
|
1882
1884
|
*/
|
|
1883
1885
|
tls?: ServiceConnectTlsConfiguration;
|
|
1884
1886
|
}
|
|
@@ -3934,6 +3936,7 @@ export type ContainerCondition = (typeof ContainerCondition)[keyof typeof Contai
|
|
|
3934
3936
|
* </li>
|
|
3935
3937
|
* </ul>
|
|
3936
3938
|
* </note>
|
|
3939
|
+
* <p>For more information about how to create a container dependency, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/example_task_definitions.html#example_task_definition-containerdependency">Container dependency</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
3937
3940
|
*/
|
|
3938
3941
|
export interface ContainerDependency {
|
|
3939
3942
|
/**
|
|
@@ -4865,7 +4868,7 @@ export type UlimitName = (typeof UlimitName)[keyof typeof UlimitName];
|
|
|
4865
4868
|
* overrides. The <code>nofile</code> resource limit sets a restriction on
|
|
4866
4869
|
* the number of open files that a container can use. The default
|
|
4867
4870
|
* <code>nofile</code> soft limit is <code>1024</code> and the default hard limit
|
|
4868
|
-
* is <code>
|
|
4871
|
+
* is <code>65535</code>.</p>
|
|
4869
4872
|
* <p>You can specify the <code>ulimit</code> settings for a container in a task
|
|
4870
4873
|
* definition.</p>
|
|
4871
4874
|
*/
|
|
@@ -5513,7 +5516,7 @@ export interface ContainerDefinition {
|
|
|
5513
5516
|
* overrides. The <code>nofile</code> resource limit sets a restriction on
|
|
5514
5517
|
* the number of open files that a container can use. The default
|
|
5515
5518
|
* <code>nofile</code> soft limit is <code>1024</code> and the default hard limit
|
|
5516
|
-
* is <code>
|
|
5519
|
+
* is <code>65535</code>.</p>
|
|
5517
5520
|
* <p>This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: <code>sudo docker version --format '\{\{.Server.APIVersion\}\}'</code>
|
|
5518
5521
|
* </p>
|
|
5519
5522
|
* <note>
|
|
@@ -8017,41 +8020,7 @@ export interface Task {
|
|
|
8017
8020
|
* @public
|
|
8018
8021
|
* <p>The stop code indicating why a task was stopped. The <code>stoppedReason</code> might
|
|
8019
8022
|
* contain additional details. </p>
|
|
8020
|
-
* <p>For more information about stop code, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/userguide/stopped-task-error-codes.html">Stopped tasks error
|
|
8021
|
-
* codes</a> in the <i>Amazon ECS User Guide</i>.</p>
|
|
8022
|
-
* <p>The following are valid values:</p>
|
|
8023
|
-
* <ul>
|
|
8024
|
-
* <li>
|
|
8025
|
-
* <p>
|
|
8026
|
-
* <code>TaskFailedToStart</code>
|
|
8027
|
-
* </p>
|
|
8028
|
-
* </li>
|
|
8029
|
-
* <li>
|
|
8030
|
-
* <p>
|
|
8031
|
-
* <code>EssentialContainerExited</code>
|
|
8032
|
-
* </p>
|
|
8033
|
-
* </li>
|
|
8034
|
-
* <li>
|
|
8035
|
-
* <p>
|
|
8036
|
-
* <code>UserInitiated</code>
|
|
8037
|
-
* </p>
|
|
8038
|
-
* </li>
|
|
8039
|
-
* <li>
|
|
8040
|
-
* <p>
|
|
8041
|
-
* <code>TerminationNotice</code>
|
|
8042
|
-
* </p>
|
|
8043
|
-
* </li>
|
|
8044
|
-
* <li>
|
|
8045
|
-
* <p>
|
|
8046
|
-
* <code>ServiceSchedulerInitiated</code>
|
|
8047
|
-
* </p>
|
|
8048
|
-
* </li>
|
|
8049
|
-
* <li>
|
|
8050
|
-
* <p>
|
|
8051
|
-
* <code>SpotInterruption</code>
|
|
8052
|
-
* </p>
|
|
8053
|
-
* </li>
|
|
8054
|
-
* </ul>
|
|
8023
|
+
* <p>For more information about stop code, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/userguide/stopped-task-error-codes.html">Stopped tasks error codes</a> in the <i>Amazon ECS User Guide</i>.</p>
|
|
8055
8024
|
*/
|
|
8056
8025
|
stopCode?: TaskStopCode;
|
|
8057
8026
|
/**
|
|
@@ -10560,10 +10529,10 @@ export interface StopTaskRequest {
|
|
|
10560
10529
|
task: string | undefined;
|
|
10561
10530
|
/**
|
|
10562
10531
|
* @public
|
|
10563
|
-
* <p>An optional message specified when a task is stopped. For example, if you're using a
|
|
10564
|
-
*
|
|
10565
|
-
*
|
|
10566
|
-
*
|
|
10532
|
+
* <p>An optional message specified when a task is stopped. For example, if you're using a custom
|
|
10533
|
+
* scheduler, you can use this parameter to specify the reason for stopping the task here,
|
|
10534
|
+
* and the message appears in subsequent <a>DescribeTasks</a> API operations on
|
|
10535
|
+
* this task.</p>
|
|
10567
10536
|
*/
|
|
10568
10537
|
reason?: string;
|
|
10569
10538
|
}
|
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.501.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,9 +20,9 @@
|
|
|
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.501.0",
|
|
24
24
|
"@aws-sdk/core": "3.496.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.501.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.496.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.496.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.496.0",
|