Skip to content

Commit

Permalink
feat(client-batch): This release adds the task properties field to at…
Browse files Browse the repository at this point in the history
…tempt details and the name field on EKS container detail.
  • Loading branch information
awstools committed Apr 11, 2024
1 parent c071cea commit 6771613
Show file tree
Hide file tree
Showing 8 changed files with 295 additions and 79 deletions.
2 changes: 1 addition & 1 deletion clients/client-batch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ AWS SDK for JavaScript Batch Client for Node.js, Browser and React Native.
developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of
the batch computing to remove the undifferentiated heavy lifting of configuring and managing required infrastructure.
At the same time, it also adopts a familiar batch computing software approach. You can use Batch to efficiently
provision resources d, and work toward eliminating capacity constraints, reducing your overall compute costs, and
provision resources, and work toward eliminating capacity constraints, reducing your overall compute costs, and
delivering results more quickly.</p>
<p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically
provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific
Expand Down
2 changes: 1 addition & 1 deletion clients/client-batch/src/Batch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ export interface Batch {
* developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of
* the batch computing to remove the undifferentiated heavy lifting of configuring and managing required infrastructure.
* At the same time, it also adopts a familiar batch computing software approach. You can use Batch to efficiently
* provision resources d, and work toward eliminating capacity constraints, reducing your overall compute costs, and
* provision resources, and work toward eliminating capacity constraints, reducing your overall compute costs, and
* delivering results more quickly.</p>
* <p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically
* provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific
Expand Down
2 changes: 1 addition & 1 deletion clients/client-batch/src/BatchClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ export interface BatchClientResolvedConfig extends BatchClientResolvedConfigType
* developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of
* the batch computing to remove the undifferentiated heavy lifting of configuring and managing required infrastructure.
* At the same time, it also adopts a familiar batch computing software approach. You can use Batch to efficiently
* provision resources d, and work toward eliminating capacity constraints, reducing your overall compute costs, and
* provision resources, and work toward eliminating capacity constraints, reducing your overall compute costs, and
* delivering results more quickly.</p>
* <p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically
* provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific
Expand Down
31 changes: 24 additions & 7 deletions clients/client-batch/src/commands/DescribeJobsCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,27 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad
* // startedAt: Number("long"),
* // stoppedAt: Number("long"),
* // statusReason: "STRING_VALUE",
* // taskProperties: [ // ListAttemptEcsTaskDetails
* // { // AttemptEcsTaskDetails
* // containerInstanceArn: "STRING_VALUE",
* // taskArn: "STRING_VALUE",
* // containers: [ // ListAttemptTaskContainerDetails
* // { // AttemptTaskContainerDetails
* // exitCode: Number("int"),
* // name: "STRING_VALUE",
* // reason: "STRING_VALUE",
* // logStreamName: "STRING_VALUE",
* // networkInterfaces: [
* // {
* // attachmentId: "STRING_VALUE",
* // ipv6Address: "STRING_VALUE",
* // privateIpv4Address: "STRING_VALUE",
* // },
* // ],
* // },
* // ],
* // },
* // ],
* // },
* // ],
* // statusReason: "STRING_VALUE",
Expand Down Expand Up @@ -153,13 +174,7 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad
* // taskArn: "STRING_VALUE",
* // logStreamName: "STRING_VALUE",
* // instanceType: "STRING_VALUE",
* // networkInterfaces: [
* // {
* // attachmentId: "STRING_VALUE",
* // ipv6Address: "STRING_VALUE",
* // privateIpv4Address: "STRING_VALUE",
* // },
* // ],
* // networkInterfaces: "<NetworkInterfaceList>",
* // resourceRequirements: [ // ResourceRequirements
* // { // ResourceRequirement
* // value: "STRING_VALUE", // required
Expand Down Expand Up @@ -520,12 +535,14 @@ export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __Metad
* // { // EksAttemptDetail
* // containers: [ // EksAttemptContainerDetails
* // { // EksAttemptContainerDetail
* // name: "STRING_VALUE",
* // exitCode: Number("int"),
* // reason: "STRING_VALUE",
* // },
* // ],
* // initContainers: [
* // {
* // name: "STRING_VALUE",
* // exitCode: Number("int"),
* // reason: "STRING_VALUE",
* // },
Expand Down
2 changes: 1 addition & 1 deletion clients/client-batch/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of
* the batch computing to remove the undifferentiated heavy lifting of configuring and managing required infrastructure.
* At the same time, it also adopts a familiar batch computing software approach. You can use Batch to efficiently
* provision resources d, and work toward eliminating capacity constraints, reducing your overall compute costs, and
* provision resources, and work toward eliminating capacity constraints, reducing your overall compute costs, and
* delivering results more quickly.</p>
* <p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically
* provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific
Expand Down
Loading

0 comments on commit 6771613

Please sign in to comment.