@aws-sdk/client-ecs 3.363.0 → 3.364.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-types/commands/DeleteTaskDefinitionsCommand.d.ts +1 -0
- package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +1 -0
- package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +27 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +1 -1
|
@@ -215,6 +215,7 @@ export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinit
|
|
|
215
215
|
* "<keys>": "STRING_VALUE",
|
|
216
216
|
* },
|
|
217
217
|
* },
|
|
218
|
+
* credentialSpecs: "<StringList>",
|
|
218
219
|
* },
|
|
219
220
|
* ],
|
|
220
221
|
* volumes: [ // VolumeList
|
|
@@ -465,6 +466,7 @@ export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinit
|
|
|
465
466
|
* // "<keys>": "STRING_VALUE",
|
|
466
467
|
* // },
|
|
467
468
|
* // },
|
|
469
|
+
* // credentialSpecs: "<StringList>",
|
|
468
470
|
* // },
|
|
469
471
|
* // ],
|
|
470
472
|
* // family: "STRING_VALUE",
|
|
@@ -3445,6 +3445,8 @@ export interface FirelensConfiguration {
|
|
|
3445
3445
|
* </note>
|
|
3446
3446
|
* <p>You can view the health status of both individual containers and a task with the
|
|
3447
3447
|
* DescribeTasks API operation or when viewing the task details in the console.</p>
|
|
3448
|
+
* <p>The health check is designed to make sure that your containers survive
|
|
3449
|
+
* agent restarts, upgrades, or temporary unavailability.</p>
|
|
3448
3450
|
* <p>The following describes the possible <code>healthStatus</code> values for a
|
|
3449
3451
|
* container:</p>
|
|
3450
3452
|
* <ul>
|
|
@@ -3492,6 +3494,14 @@ export interface FirelensConfiguration {
|
|
|
3492
3494
|
* <p>The following are notes about container health check support:</p>
|
|
3493
3495
|
* <ul>
|
|
3494
3496
|
* <li>
|
|
3497
|
+
* <p>When the Amazon ECS agent cannot connect to the Amazon ECS service, the
|
|
3498
|
+
* service reports the container as <code>UNHEALTHY</code>. </p>
|
|
3499
|
+
* </li>
|
|
3500
|
+
* <li>
|
|
3501
|
+
* <p>The health check statuses are the "last heard from" response from the Amazon ECS agent. There
|
|
3502
|
+
* are no assumptions made about the status of the container health checks.</p>
|
|
3503
|
+
* </li>
|
|
3504
|
+
* <li>
|
|
3495
3505
|
* <p>Container health checks require version 1.17.0 or greater of the Amazon ECS
|
|
3496
3506
|
* container agent. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html">Updating the
|
|
3497
3507
|
* Amazon ECS container agent</a>.</p>
|
|
@@ -4770,6 +4780,23 @@ export interface ContainerDefinition {
|
|
|
4770
4780
|
* in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
4771
4781
|
*/
|
|
4772
4782
|
firelensConfiguration?: FirelensConfiguration;
|
|
4783
|
+
/**
|
|
4784
|
+
* <p>A list of ARNs in SSM or Amazon S3 to a credential spec
|
|
4785
|
+
* (<code>credspec</code>code>) file that configures a container for Active Directory
|
|
4786
|
+
* authentication. This parameter is only used with domainless authentication.</p>
|
|
4787
|
+
* <p>The format for each ARN is
|
|
4788
|
+
* <code>credentialspecdomainless:MyARN</code>. Replace
|
|
4789
|
+
* <code>MyARN</code> with the ARN in SSM or Amazon S3.</p>
|
|
4790
|
+
* <p>The <code>credspec</code> must provide a ARN in Secrets Manager for a secret
|
|
4791
|
+
* containing the username, password, and the domain to connect to. For better security,
|
|
4792
|
+
* the instance isn't joined to the domain for domainless authentication. Other
|
|
4793
|
+
* applications on the instance can't use the domainless credentials. You can use this
|
|
4794
|
+
* parameter to run tasks on the same instance, even it the tasks need to join different
|
|
4795
|
+
* domains. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/windows-gmsa.html">Using gMSAs for Windows
|
|
4796
|
+
* Containers</a> and <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/linux-gmsa.html">Using gMSAs for Linux
|
|
4797
|
+
* Containers</a>.</p>
|
|
4798
|
+
*/
|
|
4799
|
+
credentialSpecs?: string[];
|
|
4773
4800
|
}
|
|
4774
4801
|
/**
|
|
4775
4802
|
* @public
|
|
@@ -812,6 +812,7 @@ export interface ContainerDefinition {
|
|
|
812
812
|
systemControls?: SystemControl[];
|
|
813
813
|
resourceRequirements?: ResourceRequirement[];
|
|
814
814
|
firelensConfiguration?: FirelensConfiguration;
|
|
815
|
+
credentialSpecs?: string[];
|
|
815
816
|
}
|
|
816
817
|
export interface EphemeralStorage {
|
|
817
818
|
sizeInGiB: number | undefined;
|
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.364.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",
|