Skip to content

Commit 6771613

Browse files
author
awstools
committed
feat(client-batch): This release adds the task properties field to attempt details and the name field on EKS container detail.
1 parent c071cea commit 6771613

File tree

8 files changed

+295
-79
lines changed

8 files changed

+295
-79
lines changed

clients/client-batch/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ AWS SDK for JavaScript Batch Client for Node.js, Browser and React Native.
1212
developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of
1313
the batch computing to remove the undifferentiated heavy lifting of configuring and managing required infrastructure.
1414
At the same time, it also adopts a familiar batch computing software approach. You can use Batch to efficiently
15-
provision resources d, and work toward eliminating capacity constraints, reducing your overall compute costs, and
15+
provision resources, and work toward eliminating capacity constraints, reducing your overall compute costs, and
1616
delivering results more quickly.</p>
1717
<p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically
1818
provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific

clients/client-batch/src/Batch.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ export interface Batch {
505505
* developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of
506506
* the batch computing to remove the undifferentiated heavy lifting of configuring and managing required infrastructure.
507507
* At the same time, it also adopts a familiar batch computing software approach. You can use Batch to efficiently
508-
* provision resources d, and work toward eliminating capacity constraints, reducing your overall compute costs, and
508+
* provision resources, and work toward eliminating capacity constraints, reducing your overall compute costs, and
509509
* delivering results more quickly.</p>
510510
* <p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically
511511
* provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific

clients/client-batch/src/BatchClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ export interface BatchClientResolvedConfig extends BatchClientResolvedConfigType
362362
* developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of
363363
* the batch computing to remove the undifferentiated heavy lifting of configuring and managing required infrastructure.
364364
* At the same time, it also adopts a familiar batch computing software approach. You can use Batch to efficiently
365-
* provision resources d, and work toward eliminating capacity constraints, reducing your overall compute costs, and
365+
* provision resources, and work toward eliminating capacity constraints, reducing your overall compute costs, and
366366
* delivering results more quickly.</p>
367367
* <p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically
368368
* provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific

clients/client-batch/src/commands/DescribeJobsCommand.ts

+24-7
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,27 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad
7070
* // startedAt: Number("long"),
7171
* // stoppedAt: Number("long"),
7272
* // statusReason: "STRING_VALUE",
73+
* // taskProperties: [ // ListAttemptEcsTaskDetails
74+
* // { // AttemptEcsTaskDetails
75+
* // containerInstanceArn: "STRING_VALUE",
76+
* // taskArn: "STRING_VALUE",
77+
* // containers: [ // ListAttemptTaskContainerDetails
78+
* // { // AttemptTaskContainerDetails
79+
* // exitCode: Number("int"),
80+
* // name: "STRING_VALUE",
81+
* // reason: "STRING_VALUE",
82+
* // logStreamName: "STRING_VALUE",
83+
* // networkInterfaces: [
84+
* // {
85+
* // attachmentId: "STRING_VALUE",
86+
* // ipv6Address: "STRING_VALUE",
87+
* // privateIpv4Address: "STRING_VALUE",
88+
* // },
89+
* // ],
90+
* // },
91+
* // ],
92+
* // },
93+
* // ],
7394
* // },
7495
* // ],
7596
* // statusReason: "STRING_VALUE",
@@ -153,13 +174,7 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad
153174
* // taskArn: "STRING_VALUE",
154175
* // logStreamName: "STRING_VALUE",
155176
* // instanceType: "STRING_VALUE",
156-
* // networkInterfaces: [
157-
* // {
158-
* // attachmentId: "STRING_VALUE",
159-
* // ipv6Address: "STRING_VALUE",
160-
* // privateIpv4Address: "STRING_VALUE",
161-
* // },
162-
* // ],
177+
* // networkInterfaces: "<NetworkInterfaceList>",
163178
* // resourceRequirements: [ // ResourceRequirements
164179
* // { // ResourceRequirement
165180
* // value: "STRING_VALUE", // required
@@ -520,12 +535,14 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad
520535
* // { // EksAttemptDetail
521536
* // containers: [ // EksAttemptContainerDetails
522537
* // { // EksAttemptContainerDetail
538+
* // name: "STRING_VALUE",
523539
* // exitCode: Number("int"),
524540
* // reason: "STRING_VALUE",
525541
* // },
526542
* // ],
527543
* // initContainers: [
528544
* // {
545+
* // name: "STRING_VALUE",
529546
* // exitCode: Number("int"),
530547
* // reason: "STRING_VALUE",
531548
* // },

clients/client-batch/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of
77
* the batch computing to remove the undifferentiated heavy lifting of configuring and managing required infrastructure.
88
* At the same time, it also adopts a familiar batch computing software approach. You can use Batch to efficiently
9-
* provision resources d, and work toward eliminating capacity constraints, reducing your overall compute costs, and
9+
* provision resources, and work toward eliminating capacity constraints, reducing your overall compute costs, and
1010
* delivering results more quickly.</p>
1111
* <p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically
1212
* provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific

0 commit comments

Comments
 (0)