Skip to content

Commit 5e299dd

Browse files
author
awstools
committedDec 17, 2024
feat(client-ecs): Added support for enableFaultInjection task definition parameter which can be used to enable Fault Injection feature on ECS tasks.
1 parent d9ef47c commit 5e299dd

File tree

7 files changed

+40
-7
lines changed

7 files changed

+40
-7
lines changed
 

‎clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,7 @@ export interface DeleteTaskDefinitionsCommandOutput extends DeleteTaskDefinition
333333
* // ephemeralStorage: { // EphemeralStorage
334334
* // sizeInGiB: Number("int"), // required
335335
* // },
336+
* // enableFaultInjection: true || false,
336337
* // },
337338
* // ],
338339
* // failures: [ // Failures

‎clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,7 @@ export interface DeregisterTaskDefinitionCommandOutput extends DeregisterTaskDef
328328
* // ephemeralStorage: { // EphemeralStorage
329329
* // sizeInGiB: Number("int"), // required
330330
* // },
331+
* // enableFaultInjection: true || false,
331332
* // },
332333
* // };
333334
*

‎clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ export interface DescribeTaskDefinitionCommandOutput extends DescribeTaskDefinit
321321
* // ephemeralStorage: { // EphemeralStorage
322322
* // sizeInGiB: Number("int"), // required
323323
* // },
324+
* // enableFaultInjection: true || false,
324325
* // },
325326
* // tags: [ // Tags
326327
* // { // Tag

‎clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts

+2
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinit
309309
* cpuArchitecture: "X86_64" || "ARM64",
310310
* operatingSystemFamily: "WINDOWS_SERVER_2019_FULL" || "WINDOWS_SERVER_2019_CORE" || "WINDOWS_SERVER_2016_FULL" || "WINDOWS_SERVER_2004_CORE" || "WINDOWS_SERVER_2022_CORE" || "WINDOWS_SERVER_2022_FULL" || "WINDOWS_SERVER_20H2_CORE" || "LINUX",
311311
* },
312+
* enableFaultInjection: true || false,
312313
* };
313314
* const command = new RegisterTaskDefinitionCommand(input);
314315
* const response = await client.send(command);
@@ -583,6 +584,7 @@ export interface RegisterTaskDefinitionCommandOutput extends RegisterTaskDefinit
583584
* // ephemeralStorage: { // EphemeralStorage
584585
* // sizeInGiB: Number("int"), // required
585586
* // },
587+
* // enableFaultInjection: true || false,
586588
* // },
587589
* // tags: [ // Tags
588590
* // { // Tag

‎clients/client-ecs/src/models/models_0.ts

+19-4
Original file line numberDiff line numberDiff line change
@@ -1470,8 +1470,9 @@ export interface DeploymentConfiguration {
14701470
* uses either the blue/green (<code>CODE_DEPLOY</code>) or <code>EXTERNAL</code>
14711471
* deployment types and has tasks that use the EC2 launch type.</p>
14721472
* </note>
1473-
* <p>If the tasks in the service use the Fargate launch type, the maximum
1474-
* percent value is not used, although it is returned when describing your service.</p>
1473+
* <p>If the service uses either the blue/green (<code>CODE_DEPLOY</code>) or <code>EXTERNAL</code>
1474+
* deployment types, and the tasks in the service use the Fargate launch type, the maximum
1475+
* percent value is not used. The value is still returned when describing your service.</p>
14751476
* @public
14761477
*/
14771478
maximumPercent?: number | undefined;
@@ -2150,7 +2151,7 @@ export interface LogConfiguration {
21502151
* <code>Host</code> (OpenSearch Service endpoint without protocol), <code>Port</code>,
21512152
* <code>Index</code>, <code>Type</code>, <code>Aws_auth</code>,
21522153
* <code>Aws_region</code>, <code>Suppress_Type_Name</code>, and
2153-
* <code>tls</code>.</p>
2154+
* <code>tls</code>. For more information, see <a href="http://aws.amazon.com/blogs/containers/under-the-hood-firelens-for-amazon-ecs-tasks/">Under the hood: FireLens for Amazon ECS Tasks</a>.</p>
21542155
* <p>When you export logs to Amazon S3, you can specify the bucket using the <code>bucket</code>
21552156
* option. You can also specify <code>region</code>, <code>total_file_size</code>,
21562157
* <code>upload_timeout</code>, and <code>use_put_object</code> as options.</p>
@@ -7555,6 +7556,13 @@ export interface TaskDefinition {
75557556
* @public
75567557
*/
75577558
ephemeralStorage?: EphemeralStorage | undefined;
7559+
7560+
/**
7561+
* <p>Enables fault injection and allows for fault injection requests to be accepted from the task's containers.
7562+
* The default value is <code>false</code>.</p>
7563+
* @public
7564+
*/
7565+
enableFaultInjection?: boolean | undefined;
75587566
}
75597567

75607568
/**
@@ -10565,7 +10573,7 @@ export interface ListServiceDeploymentsRequest {
1056510573
* <p>The cluster that hosts the service. This can either be the cluster name or ARN.
1056610574
* Starting April 15, 2023, Amazon Web Services will not onboard new customers to Amazon
1056710575
* Elastic Inference (EI), and will help current customers migrate their workloads to
10568-
* options that offer better price and performanceIf you don't specify a cluster,
10576+
* options that offer better price and performance. If you don't specify a cluster,
1056910577
* <code>default</code> is used.</p>
1057010578
* @public
1057110579
*/
@@ -12135,6 +12143,13 @@ export interface RegisterTaskDefinitionRequest {
1213512143
* @public
1213612144
*/
1213712145
runtimePlatform?: RuntimePlatform | undefined;
12146+
12147+
/**
12148+
* <p>Enables fault injection when you register your task definition and allows for fault injection requests
12149+
* to be accepted from the task's containers. The default value is <code>false</code>.</p>
12150+
* @public
12151+
*/
12152+
enableFaultInjection?: boolean | undefined;
1213812153
}
1213912154

1214012155
/**

‎clients/client-ecs/src/protocols/Aws_json1_1.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4423,6 +4423,7 @@ const de_TaskDefinition = (output: any, context: __SerdeContext): TaskDefinition
44234423
containerDefinitions: _json,
44244424
cpu: __expectString,
44254425
deregisteredAt: (_: any) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
4426+
enableFaultInjection: __expectBoolean,
44264427
ephemeralStorage: _json,
44274428
executionRoleArn: __expectString,
44284429
family: __expectString,

‎codegen/sdk-codegen/aws-models/ecs.json

+15-3
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.