Skip to content

Commit e5bcf91

Browse files
author
awstools
committed
feat(client-deadline): Added fields for output manifest reporting and task chunking parameters
1 parent 11e9774 commit e5bcf91

File tree

13 files changed

+339
-65
lines changed

13 files changed

+339
-65
lines changed

clients/client-deadline/src/commands/GetSessionActionCommand.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ export interface GetSessionActionCommandOutput extends GetSessionActionResponse,
7373
* // float: "STRING_VALUE",
7474
* // string: "STRING_VALUE",
7575
* // path: "STRING_VALUE",
76+
* // chunkInt: "STRING_VALUE",
7677
* // },
7778
* // },
7879
* // },
@@ -86,6 +87,12 @@ export interface GetSessionActionCommandOutput extends GetSessionActionResponse,
8687
* // count: Number("int"), // required
8788
* // },
8889
* // ],
90+
* // manifests: [ // TaskRunManifestPropertiesListResponse
91+
* // { // TaskRunManifestPropertiesResponse
92+
* // outputManifestPath: "STRING_VALUE",
93+
* // outputManifestHash: "STRING_VALUE",
94+
* // },
95+
* // ],
8996
* // };
9097
*
9198
* ```

clients/client-deadline/src/commands/GetStepCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export interface GetStepCommandOutput extends GetStepResponse, __MetadataBearer
9191
* // parameters: [ // StepParameterList // required
9292
* // { // StepParameter
9393
* // name: "STRING_VALUE", // required
94-
* // type: "INT" || "FLOAT" || "STRING" || "PATH", // required
94+
* // type: "INT" || "FLOAT" || "STRING" || "PATH" || "CHUNK_INT", // required
9595
* // },
9696
* // ],
9797
* // combination: "STRING_VALUE",

clients/client-deadline/src/commands/GetTaskCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ export interface GetTaskCommandOutput extends GetTaskResponse, __MetadataBearer
5757
* // float: "STRING_VALUE",
5858
* // string: "STRING_VALUE",
5959
* // path: "STRING_VALUE",
60+
* // chunkInt: "STRING_VALUE",
6061
* // },
6162
* // },
6263
* // startedAt: new Date("TIMESTAMP"),

clients/client-deadline/src/commands/ListSessionActionsCommand.ts

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { ListSessionActionsRequest, ListSessionActionsResponse } from "../models/models_0";
9+
import {
10+
ListSessionActionsRequest,
11+
ListSessionActionsResponse,
12+
ListSessionActionsResponseFilterSensitiveLog,
13+
} from "../models/models_0";
1014
import { de_ListSessionActionsCommand, se_ListSessionActionsCommand } from "../protocols/Aws_restJson1";
1115

1216
/**
@@ -65,11 +69,26 @@ export interface ListSessionActionsCommandOutput extends ListSessionActionsRespo
6569
* // taskRun: { // TaskRunSessionActionDefinitionSummary
6670
* // taskId: "STRING_VALUE",
6771
* // stepId: "STRING_VALUE", // required
72+
* // parameters: { // TaskParameters
73+
* // "<keys>": { // TaskParameterValue Union: only one key present
74+
* // int: "STRING_VALUE",
75+
* // float: "STRING_VALUE",
76+
* // string: "STRING_VALUE",
77+
* // path: "STRING_VALUE",
78+
* // chunkInt: "STRING_VALUE",
79+
* // },
80+
* // },
6881
* // },
6982
* // syncInputJobAttachments: { // SyncInputJobAttachmentsSessionActionDefinitionSummary
7083
* // stepId: "STRING_VALUE",
7184
* // },
7285
* // },
86+
* // manifests: [ // TaskRunManifestPropertiesListResponse
87+
* // { // TaskRunManifestPropertiesResponse
88+
* // outputManifestPath: "STRING_VALUE",
89+
* // outputManifestHash: "STRING_VALUE",
90+
* // },
91+
* // ],
7392
* // },
7493
* // ],
7594
* // nextToken: "STRING_VALUE",
@@ -121,7 +140,7 @@ export class ListSessionActionsCommand extends $Command
121140
})
122141
.s("Deadline", "ListSessionActions", {})
123142
.n("DeadlineClient", "ListSessionActionsCommand")
124-
.f(void 0, void 0)
143+
.f(void 0, ListSessionActionsResponseFilterSensitiveLog)
125144
.ser(se_ListSessionActionsCommand)
126145
.de(de_ListSessionActionsCommand)
127146
.build() {

clients/client-deadline/src/commands/ListStepsCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { ListStepsRequest, ListStepsResponse } from "../models/models_0";
9+
import { ListStepsRequest } from "../models/models_0";
10+
import { ListStepsResponse } from "../models/models_1";
1011
import { de_ListStepsCommand, se_ListStepsCommand } from "../protocols/Aws_restJson1";
1112

1213
/**

clients/client-deadline/src/commands/ListTasksCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
66

77
import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient";
88
import { commonParams } from "../endpoint/EndpointParameters";
9-
import { ListTasksRequest } from "../models/models_0";
10-
import { ListTasksResponse, ListTasksResponseFilterSensitiveLog } from "../models/models_1";
9+
import { ListTasksRequest, ListTasksResponse, ListTasksResponseFilterSensitiveLog } from "../models/models_1";
1110
import { de_ListTasksCommand, se_ListTasksCommand } from "../protocols/Aws_restJson1";
1211

1312
/**
@@ -61,6 +60,7 @@ export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBea
6160
* // float: "STRING_VALUE",
6261
* // string: "STRING_VALUE",
6362
* // path: "STRING_VALUE",
63+
* // chunkInt: "STRING_VALUE",
6464
* // },
6565
* // },
6666
* // startedAt: new Date("TIMESTAMP"),

clients/client-deadline/src/commands/SearchStepsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export interface SearchStepsCommandOutput extends SearchStepsResponse, __Metadat
136136
* // parameters: [ // StepParameterList // required
137137
* // { // StepParameter
138138
* // name: "STRING_VALUE", // required
139-
* // type: "INT" || "FLOAT" || "STRING" || "PATH", // required
139+
* // type: "INT" || "FLOAT" || "STRING" || "PATH" || "CHUNK_INT", // required
140140
* // },
141141
* // ],
142142
* // combination: "STRING_VALUE",

clients/client-deadline/src/commands/SearchTasksCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ export interface SearchTasksCommandOutput extends SearchTasksResponse, __Metadat
129129
* // float: "STRING_VALUE",
130130
* // string: "STRING_VALUE",
131131
* // path: "STRING_VALUE",
132+
* // chunkInt: "STRING_VALUE",
132133
* // },
133134
* // },
134135
* // failureRetryCount: Number("int"),

clients/client-deadline/src/commands/UpdateWorkerScheduleCommand.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ export interface UpdateWorkerScheduleCommandOutput extends UpdateWorkerScheduleR
5353
* endedAt: new Date("TIMESTAMP"),
5454
* updatedAt: new Date("TIMESTAMP"),
5555
* progressPercent: Number("float"),
56+
* manifests: [ // TaskRunManifestPropertiesListRequest
57+
* { // TaskRunManifestPropertiesRequest
58+
* outputManifestPath: "STRING_VALUE",
59+
* outputManifestHash: "STRING_VALUE",
60+
* },
61+
* ],
5662
* },
5763
* },
5864
* };
@@ -82,6 +88,7 @@ export interface UpdateWorkerScheduleCommandOutput extends UpdateWorkerScheduleR
8288
* // float: "STRING_VALUE",
8389
* // string: "STRING_VALUE",
8490
* // path: "STRING_VALUE",
91+
* // chunkInt: "STRING_VALUE",
8592
* // },
8693
* // },
8794
* // },

0 commit comments

Comments
 (0)