@aws-sdk/client-imagebuilder 3.470.0 → 3.472.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/README.md +56 -0
- package/dist-cjs/Imagebuilder.js +14 -0
- package/dist-cjs/commands/CreateWorkflowCommand.js +51 -0
- package/dist-cjs/commands/DeleteWorkflowCommand.js +51 -0
- package/dist-cjs/commands/GetWorkflowCommand.js +51 -0
- package/dist-cjs/commands/ListWaitingWorkflowStepsCommand.js +51 -0
- package/dist-cjs/commands/ListWorkflowBuildVersionsCommand.js +51 -0
- package/dist-cjs/commands/ListWorkflowsCommand.js +51 -0
- package/dist-cjs/commands/SendWorkflowStepActionCommand.js +51 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/models/models_0.js +19 -6
- package/dist-cjs/pagination/ListWaitingWorkflowStepsPaginator.js +29 -0
- package/dist-cjs/pagination/ListWorkflowBuildVersionsPaginator.js +29 -0
- package/dist-cjs/pagination/ListWorkflowsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +565 -3
- package/dist-es/Imagebuilder.js +14 -0
- package/dist-es/commands/CreateWorkflowCommand.js +47 -0
- package/dist-es/commands/DeleteWorkflowCommand.js +47 -0
- package/dist-es/commands/GetWorkflowCommand.js +47 -0
- package/dist-es/commands/ListWaitingWorkflowStepsCommand.js +47 -0
- package/dist-es/commands/ListWorkflowBuildVersionsCommand.js +47 -0
- package/dist-es/commands/ListWorkflowsCommand.js +47 -0
- package/dist-es/commands/SendWorkflowStepActionCommand.js +47 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +18 -5
- package/dist-es/pagination/ListWaitingWorkflowStepsPaginator.js +25 -0
- package/dist-es/pagination/ListWorkflowBuildVersionsPaginator.js +25 -0
- package/dist-es/pagination/ListWorkflowsPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +548 -0
- package/dist-types/Imagebuilder.d.ts +49 -0
- package/dist-types/ImagebuilderClient.d.ts +9 -2
- package/dist-types/commands/CreateImageCommand.d.ts +16 -0
- package/dist-types/commands/CreateImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +126 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +98 -0
- package/dist-types/commands/GetImageCommand.d.ts +16 -0
- package/dist-types/commands/GetImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +122 -0
- package/dist-types/commands/GetWorkflowExecutionCommand.d.ts +2 -1
- package/dist-types/commands/GetWorkflowStepExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListImagePipelinesCommand.d.ts +16 -0
- package/dist-types/commands/ListWaitingWorkflowStepsCommand.d.ts +110 -0
- package/dist-types/commands/ListWorkflowBuildVersionsCommand.d.ts +118 -0
- package/dist-types/commands/ListWorkflowExecutionsCommand.d.ts +2 -1
- package/dist-types/commands/ListWorkflowStepExecutionsCommand.d.ts +2 -2
- package/dist-types/commands/ListWorkflowsCommand.d.ts +119 -0
- package/dist-types/commands/SendWorkflowStepActionCommand.d.ts +115 -0
- package/dist-types/commands/UpdateImagePipelineCommand.d.ts +18 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +786 -61
- package/dist-types/pagination/ListWaitingWorkflowStepsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkflowBuildVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkflowsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/Imagebuilder.d.ts +119 -0
- package/dist-types/ts3.4/ImagebuilderClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateWorkflowCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteWorkflowCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListWaitingWorkflowStepsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListWorkflowBuildVersionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/SendWorkflowStepActionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +170 -6
- package/dist-types/ts3.4/pagination/ListWaitingWorkflowStepsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkflowBuildVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkflowsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +1 -1
|
@@ -146,11 +146,13 @@ export const se_CreateImageCommand = async (input, context) => {
|
|
|
146
146
|
containerRecipeArn: [],
|
|
147
147
|
distributionConfigurationArn: [],
|
|
148
148
|
enhancedImageMetadataEnabled: [],
|
|
149
|
+
executionRole: [],
|
|
149
150
|
imageRecipeArn: [],
|
|
150
151
|
imageScanningConfiguration: (_) => _json(_),
|
|
151
152
|
imageTestsConfiguration: (_) => _json(_),
|
|
152
153
|
infrastructureConfigurationArn: [],
|
|
153
154
|
tags: (_) => _json(_),
|
|
155
|
+
workflows: (_) => _json(_),
|
|
154
156
|
}));
|
|
155
157
|
return new __HttpRequest({
|
|
156
158
|
protocol,
|
|
@@ -175,6 +177,7 @@ export const se_CreateImagePipelineCommand = async (input, context) => {
|
|
|
175
177
|
description: [],
|
|
176
178
|
distributionConfigurationArn: [],
|
|
177
179
|
enhancedImageMetadataEnabled: [],
|
|
180
|
+
executionRole: [],
|
|
178
181
|
imageRecipeArn: [],
|
|
179
182
|
imageScanningConfiguration: (_) => _json(_),
|
|
180
183
|
imageTestsConfiguration: (_) => _json(_),
|
|
@@ -183,6 +186,7 @@ export const se_CreateImagePipelineCommand = async (input, context) => {
|
|
|
183
186
|
schedule: (_) => _json(_),
|
|
184
187
|
status: [],
|
|
185
188
|
tags: (_) => _json(_),
|
|
189
|
+
workflows: (_) => _json(_),
|
|
186
190
|
}));
|
|
187
191
|
return new __HttpRequest({
|
|
188
192
|
protocol,
|
|
@@ -284,6 +288,35 @@ export const se_CreateLifecyclePolicyCommand = async (input, context) => {
|
|
|
284
288
|
body,
|
|
285
289
|
});
|
|
286
290
|
};
|
|
291
|
+
export const se_CreateWorkflowCommand = async (input, context) => {
|
|
292
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
293
|
+
const headers = {
|
|
294
|
+
"content-type": "application/json",
|
|
295
|
+
};
|
|
296
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/CreateWorkflow";
|
|
297
|
+
let body;
|
|
298
|
+
body = JSON.stringify(take(input, {
|
|
299
|
+
changeDescription: [],
|
|
300
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
301
|
+
data: [],
|
|
302
|
+
description: [],
|
|
303
|
+
kmsKeyId: [],
|
|
304
|
+
name: [],
|
|
305
|
+
semanticVersion: [],
|
|
306
|
+
tags: (_) => _json(_),
|
|
307
|
+
type: [],
|
|
308
|
+
uri: [],
|
|
309
|
+
}));
|
|
310
|
+
return new __HttpRequest({
|
|
311
|
+
protocol,
|
|
312
|
+
hostname,
|
|
313
|
+
port,
|
|
314
|
+
method: "PUT",
|
|
315
|
+
headers,
|
|
316
|
+
path: resolvedPath,
|
|
317
|
+
body,
|
|
318
|
+
});
|
|
319
|
+
};
|
|
287
320
|
export const se_DeleteComponentCommand = async (input, context) => {
|
|
288
321
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
289
322
|
const headers = {};
|
|
@@ -442,6 +475,25 @@ export const se_DeleteLifecyclePolicyCommand = async (input, context) => {
|
|
|
442
475
|
body,
|
|
443
476
|
});
|
|
444
477
|
};
|
|
478
|
+
export const se_DeleteWorkflowCommand = async (input, context) => {
|
|
479
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
480
|
+
const headers = {};
|
|
481
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/DeleteWorkflow";
|
|
482
|
+
const query = map({
|
|
483
|
+
workflowBuildVersionArn: [, __expectNonNull(input.workflowBuildVersionArn, `workflowBuildVersionArn`)],
|
|
484
|
+
});
|
|
485
|
+
let body;
|
|
486
|
+
return new __HttpRequest({
|
|
487
|
+
protocol,
|
|
488
|
+
hostname,
|
|
489
|
+
port,
|
|
490
|
+
method: "DELETE",
|
|
491
|
+
headers,
|
|
492
|
+
path: resolvedPath,
|
|
493
|
+
query,
|
|
494
|
+
body,
|
|
495
|
+
});
|
|
496
|
+
};
|
|
445
497
|
export const se_GetComponentCommand = async (input, context) => {
|
|
446
498
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
447
499
|
const headers = {};
|
|
@@ -695,6 +747,25 @@ export const se_GetLifecyclePolicyCommand = async (input, context) => {
|
|
|
695
747
|
body,
|
|
696
748
|
});
|
|
697
749
|
};
|
|
750
|
+
export const se_GetWorkflowCommand = async (input, context) => {
|
|
751
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
752
|
+
const headers = {};
|
|
753
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetWorkflow";
|
|
754
|
+
const query = map({
|
|
755
|
+
workflowBuildVersionArn: [, __expectNonNull(input.workflowBuildVersionArn, `workflowBuildVersionArn`)],
|
|
756
|
+
});
|
|
757
|
+
let body;
|
|
758
|
+
return new __HttpRequest({
|
|
759
|
+
protocol,
|
|
760
|
+
hostname,
|
|
761
|
+
port,
|
|
762
|
+
method: "GET",
|
|
763
|
+
headers,
|
|
764
|
+
path: resolvedPath,
|
|
765
|
+
query,
|
|
766
|
+
body,
|
|
767
|
+
});
|
|
768
|
+
};
|
|
698
769
|
export const se_GetWorkflowExecutionCommand = async (input, context) => {
|
|
699
770
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
700
771
|
const headers = {};
|
|
@@ -1168,6 +1239,49 @@ export const se_ListTagsForResourceCommand = async (input, context) => {
|
|
|
1168
1239
|
body,
|
|
1169
1240
|
});
|
|
1170
1241
|
};
|
|
1242
|
+
export const se_ListWaitingWorkflowStepsCommand = async (input, context) => {
|
|
1243
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1244
|
+
const headers = {
|
|
1245
|
+
"content-type": "application/json",
|
|
1246
|
+
};
|
|
1247
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ListWaitingWorkflowSteps";
|
|
1248
|
+
let body;
|
|
1249
|
+
body = JSON.stringify(take(input, {
|
|
1250
|
+
maxResults: [],
|
|
1251
|
+
nextToken: [],
|
|
1252
|
+
}));
|
|
1253
|
+
return new __HttpRequest({
|
|
1254
|
+
protocol,
|
|
1255
|
+
hostname,
|
|
1256
|
+
port,
|
|
1257
|
+
method: "POST",
|
|
1258
|
+
headers,
|
|
1259
|
+
path: resolvedPath,
|
|
1260
|
+
body,
|
|
1261
|
+
});
|
|
1262
|
+
};
|
|
1263
|
+
export const se_ListWorkflowBuildVersionsCommand = async (input, context) => {
|
|
1264
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1265
|
+
const headers = {
|
|
1266
|
+
"content-type": "application/json",
|
|
1267
|
+
};
|
|
1268
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ListWorkflowBuildVersions";
|
|
1269
|
+
let body;
|
|
1270
|
+
body = JSON.stringify(take(input, {
|
|
1271
|
+
maxResults: [],
|
|
1272
|
+
nextToken: [],
|
|
1273
|
+
workflowVersionArn: [],
|
|
1274
|
+
}));
|
|
1275
|
+
return new __HttpRequest({
|
|
1276
|
+
protocol,
|
|
1277
|
+
hostname,
|
|
1278
|
+
port,
|
|
1279
|
+
method: "POST",
|
|
1280
|
+
headers,
|
|
1281
|
+
path: resolvedPath,
|
|
1282
|
+
body,
|
|
1283
|
+
});
|
|
1284
|
+
};
|
|
1171
1285
|
export const se_ListWorkflowExecutionsCommand = async (input, context) => {
|
|
1172
1286
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1173
1287
|
const headers = {
|
|
@@ -1190,6 +1304,30 @@ export const se_ListWorkflowExecutionsCommand = async (input, context) => {
|
|
|
1190
1304
|
body,
|
|
1191
1305
|
});
|
|
1192
1306
|
};
|
|
1307
|
+
export const se_ListWorkflowsCommand = async (input, context) => {
|
|
1308
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1309
|
+
const headers = {
|
|
1310
|
+
"content-type": "application/json",
|
|
1311
|
+
};
|
|
1312
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ListWorkflows";
|
|
1313
|
+
let body;
|
|
1314
|
+
body = JSON.stringify(take(input, {
|
|
1315
|
+
byName: [],
|
|
1316
|
+
filters: (_) => _json(_),
|
|
1317
|
+
maxResults: [],
|
|
1318
|
+
nextToken: [],
|
|
1319
|
+
owner: [],
|
|
1320
|
+
}));
|
|
1321
|
+
return new __HttpRequest({
|
|
1322
|
+
protocol,
|
|
1323
|
+
hostname,
|
|
1324
|
+
port,
|
|
1325
|
+
method: "POST",
|
|
1326
|
+
headers,
|
|
1327
|
+
path: resolvedPath,
|
|
1328
|
+
body,
|
|
1329
|
+
});
|
|
1330
|
+
};
|
|
1193
1331
|
export const se_ListWorkflowStepExecutionsCommand = async (input, context) => {
|
|
1194
1332
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1195
1333
|
const headers = {
|
|
@@ -1296,6 +1434,30 @@ export const se_PutImageRecipePolicyCommand = async (input, context) => {
|
|
|
1296
1434
|
body,
|
|
1297
1435
|
});
|
|
1298
1436
|
};
|
|
1437
|
+
export const se_SendWorkflowStepActionCommand = async (input, context) => {
|
|
1438
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1439
|
+
const headers = {
|
|
1440
|
+
"content-type": "application/json",
|
|
1441
|
+
};
|
|
1442
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/SendWorkflowStepAction";
|
|
1443
|
+
let body;
|
|
1444
|
+
body = JSON.stringify(take(input, {
|
|
1445
|
+
action: [],
|
|
1446
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
1447
|
+
imageBuildVersionArn: [],
|
|
1448
|
+
reason: [],
|
|
1449
|
+
stepExecutionId: [],
|
|
1450
|
+
}));
|
|
1451
|
+
return new __HttpRequest({
|
|
1452
|
+
protocol,
|
|
1453
|
+
hostname,
|
|
1454
|
+
port,
|
|
1455
|
+
method: "PUT",
|
|
1456
|
+
headers,
|
|
1457
|
+
path: resolvedPath,
|
|
1458
|
+
body,
|
|
1459
|
+
});
|
|
1460
|
+
};
|
|
1299
1461
|
export const se_StartImagePipelineExecutionCommand = async (input, context) => {
|
|
1300
1462
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1301
1463
|
const headers = {
|
|
@@ -1423,6 +1585,7 @@ export const se_UpdateImagePipelineCommand = async (input, context) => {
|
|
|
1423
1585
|
description: [],
|
|
1424
1586
|
distributionConfigurationArn: [],
|
|
1425
1587
|
enhancedImageMetadataEnabled: [],
|
|
1588
|
+
executionRole: [],
|
|
1426
1589
|
imagePipelineArn: [],
|
|
1427
1590
|
imageRecipeArn: [],
|
|
1428
1591
|
imageScanningConfiguration: (_) => _json(_),
|
|
@@ -1430,6 +1593,7 @@ export const se_UpdateImagePipelineCommand = async (input, context) => {
|
|
|
1430
1593
|
infrastructureConfigurationArn: [],
|
|
1431
1594
|
schedule: (_) => _json(_),
|
|
1432
1595
|
status: [],
|
|
1596
|
+
workflows: (_) => _json(_),
|
|
1433
1597
|
}));
|
|
1434
1598
|
return new __HttpRequest({
|
|
1435
1599
|
protocol,
|
|
@@ -2114,6 +2278,70 @@ const de_CreateLifecyclePolicyCommandError = async (output, context) => {
|
|
|
2114
2278
|
});
|
|
2115
2279
|
}
|
|
2116
2280
|
};
|
|
2281
|
+
export const de_CreateWorkflowCommand = async (output, context) => {
|
|
2282
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2283
|
+
return de_CreateWorkflowCommandError(output, context);
|
|
2284
|
+
}
|
|
2285
|
+
const contents = map({
|
|
2286
|
+
$metadata: deserializeMetadata(output),
|
|
2287
|
+
});
|
|
2288
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2289
|
+
const doc = take(data, {
|
|
2290
|
+
clientToken: __expectString,
|
|
2291
|
+
workflowBuildVersionArn: __expectString,
|
|
2292
|
+
});
|
|
2293
|
+
Object.assign(contents, doc);
|
|
2294
|
+
return contents;
|
|
2295
|
+
};
|
|
2296
|
+
const de_CreateWorkflowCommandError = async (output, context) => {
|
|
2297
|
+
const parsedOutput = {
|
|
2298
|
+
...output,
|
|
2299
|
+
body: await parseErrorBody(output.body, context),
|
|
2300
|
+
};
|
|
2301
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2302
|
+
switch (errorCode) {
|
|
2303
|
+
case "CallRateLimitExceededException":
|
|
2304
|
+
case "com.amazonaws.imagebuilder#CallRateLimitExceededException":
|
|
2305
|
+
throw await de_CallRateLimitExceededExceptionRes(parsedOutput, context);
|
|
2306
|
+
case "ClientException":
|
|
2307
|
+
case "com.amazonaws.imagebuilder#ClientException":
|
|
2308
|
+
throw await de_ClientExceptionRes(parsedOutput, context);
|
|
2309
|
+
case "ForbiddenException":
|
|
2310
|
+
case "com.amazonaws.imagebuilder#ForbiddenException":
|
|
2311
|
+
throw await de_ForbiddenExceptionRes(parsedOutput, context);
|
|
2312
|
+
case "IdempotentParameterMismatchException":
|
|
2313
|
+
case "com.amazonaws.imagebuilder#IdempotentParameterMismatchException":
|
|
2314
|
+
throw await de_IdempotentParameterMismatchExceptionRes(parsedOutput, context);
|
|
2315
|
+
case "InvalidParameterCombinationException":
|
|
2316
|
+
case "com.amazonaws.imagebuilder#InvalidParameterCombinationException":
|
|
2317
|
+
throw await de_InvalidParameterCombinationExceptionRes(parsedOutput, context);
|
|
2318
|
+
case "InvalidRequestException":
|
|
2319
|
+
case "com.amazonaws.imagebuilder#InvalidRequestException":
|
|
2320
|
+
throw await de_InvalidRequestExceptionRes(parsedOutput, context);
|
|
2321
|
+
case "InvalidVersionNumberException":
|
|
2322
|
+
case "com.amazonaws.imagebuilder#InvalidVersionNumberException":
|
|
2323
|
+
throw await de_InvalidVersionNumberExceptionRes(parsedOutput, context);
|
|
2324
|
+
case "ResourceInUseException":
|
|
2325
|
+
case "com.amazonaws.imagebuilder#ResourceInUseException":
|
|
2326
|
+
throw await de_ResourceInUseExceptionRes(parsedOutput, context);
|
|
2327
|
+
case "ServiceException":
|
|
2328
|
+
case "com.amazonaws.imagebuilder#ServiceException":
|
|
2329
|
+
throw await de_ServiceExceptionRes(parsedOutput, context);
|
|
2330
|
+
case "ServiceQuotaExceededException":
|
|
2331
|
+
case "com.amazonaws.imagebuilder#ServiceQuotaExceededException":
|
|
2332
|
+
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
|
|
2333
|
+
case "ServiceUnavailableException":
|
|
2334
|
+
case "com.amazonaws.imagebuilder#ServiceUnavailableException":
|
|
2335
|
+
throw await de_ServiceUnavailableExceptionRes(parsedOutput, context);
|
|
2336
|
+
default:
|
|
2337
|
+
const parsedBody = parsedOutput.body;
|
|
2338
|
+
return throwDefaultError({
|
|
2339
|
+
output,
|
|
2340
|
+
parsedBody,
|
|
2341
|
+
errorCode,
|
|
2342
|
+
});
|
|
2343
|
+
}
|
|
2344
|
+
};
|
|
2117
2345
|
export const de_DeleteComponentCommand = async (output, context) => {
|
|
2118
2346
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2119
2347
|
return de_DeleteComponentCommandError(output, context);
|
|
@@ -2529,6 +2757,57 @@ const de_DeleteLifecyclePolicyCommandError = async (output, context) => {
|
|
|
2529
2757
|
});
|
|
2530
2758
|
}
|
|
2531
2759
|
};
|
|
2760
|
+
export const de_DeleteWorkflowCommand = async (output, context) => {
|
|
2761
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2762
|
+
return de_DeleteWorkflowCommandError(output, context);
|
|
2763
|
+
}
|
|
2764
|
+
const contents = map({
|
|
2765
|
+
$metadata: deserializeMetadata(output),
|
|
2766
|
+
});
|
|
2767
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2768
|
+
const doc = take(data, {
|
|
2769
|
+
workflowBuildVersionArn: __expectString,
|
|
2770
|
+
});
|
|
2771
|
+
Object.assign(contents, doc);
|
|
2772
|
+
return contents;
|
|
2773
|
+
};
|
|
2774
|
+
const de_DeleteWorkflowCommandError = async (output, context) => {
|
|
2775
|
+
const parsedOutput = {
|
|
2776
|
+
...output,
|
|
2777
|
+
body: await parseErrorBody(output.body, context),
|
|
2778
|
+
};
|
|
2779
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2780
|
+
switch (errorCode) {
|
|
2781
|
+
case "CallRateLimitExceededException":
|
|
2782
|
+
case "com.amazonaws.imagebuilder#CallRateLimitExceededException":
|
|
2783
|
+
throw await de_CallRateLimitExceededExceptionRes(parsedOutput, context);
|
|
2784
|
+
case "ClientException":
|
|
2785
|
+
case "com.amazonaws.imagebuilder#ClientException":
|
|
2786
|
+
throw await de_ClientExceptionRes(parsedOutput, context);
|
|
2787
|
+
case "ForbiddenException":
|
|
2788
|
+
case "com.amazonaws.imagebuilder#ForbiddenException":
|
|
2789
|
+
throw await de_ForbiddenExceptionRes(parsedOutput, context);
|
|
2790
|
+
case "InvalidRequestException":
|
|
2791
|
+
case "com.amazonaws.imagebuilder#InvalidRequestException":
|
|
2792
|
+
throw await de_InvalidRequestExceptionRes(parsedOutput, context);
|
|
2793
|
+
case "ResourceDependencyException":
|
|
2794
|
+
case "com.amazonaws.imagebuilder#ResourceDependencyException":
|
|
2795
|
+
throw await de_ResourceDependencyExceptionRes(parsedOutput, context);
|
|
2796
|
+
case "ServiceException":
|
|
2797
|
+
case "com.amazonaws.imagebuilder#ServiceException":
|
|
2798
|
+
throw await de_ServiceExceptionRes(parsedOutput, context);
|
|
2799
|
+
case "ServiceUnavailableException":
|
|
2800
|
+
case "com.amazonaws.imagebuilder#ServiceUnavailableException":
|
|
2801
|
+
throw await de_ServiceUnavailableExceptionRes(parsedOutput, context);
|
|
2802
|
+
default:
|
|
2803
|
+
const parsedBody = parsedOutput.body;
|
|
2804
|
+
return throwDefaultError({
|
|
2805
|
+
output,
|
|
2806
|
+
parsedBody,
|
|
2807
|
+
errorCode,
|
|
2808
|
+
});
|
|
2809
|
+
}
|
|
2810
|
+
};
|
|
2532
2811
|
export const de_GetComponentCommand = async (output, context) => {
|
|
2533
2812
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2534
2813
|
return de_GetComponentCommandError(output, context);
|
|
@@ -3164,6 +3443,54 @@ const de_GetLifecyclePolicyCommandError = async (output, context) => {
|
|
|
3164
3443
|
});
|
|
3165
3444
|
}
|
|
3166
3445
|
};
|
|
3446
|
+
export const de_GetWorkflowCommand = async (output, context) => {
|
|
3447
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3448
|
+
return de_GetWorkflowCommandError(output, context);
|
|
3449
|
+
}
|
|
3450
|
+
const contents = map({
|
|
3451
|
+
$metadata: deserializeMetadata(output),
|
|
3452
|
+
});
|
|
3453
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
3454
|
+
const doc = take(data, {
|
|
3455
|
+
workflow: _json,
|
|
3456
|
+
});
|
|
3457
|
+
Object.assign(contents, doc);
|
|
3458
|
+
return contents;
|
|
3459
|
+
};
|
|
3460
|
+
const de_GetWorkflowCommandError = async (output, context) => {
|
|
3461
|
+
const parsedOutput = {
|
|
3462
|
+
...output,
|
|
3463
|
+
body: await parseErrorBody(output.body, context),
|
|
3464
|
+
};
|
|
3465
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
3466
|
+
switch (errorCode) {
|
|
3467
|
+
case "CallRateLimitExceededException":
|
|
3468
|
+
case "com.amazonaws.imagebuilder#CallRateLimitExceededException":
|
|
3469
|
+
throw await de_CallRateLimitExceededExceptionRes(parsedOutput, context);
|
|
3470
|
+
case "ClientException":
|
|
3471
|
+
case "com.amazonaws.imagebuilder#ClientException":
|
|
3472
|
+
throw await de_ClientExceptionRes(parsedOutput, context);
|
|
3473
|
+
case "ForbiddenException":
|
|
3474
|
+
case "com.amazonaws.imagebuilder#ForbiddenException":
|
|
3475
|
+
throw await de_ForbiddenExceptionRes(parsedOutput, context);
|
|
3476
|
+
case "InvalidRequestException":
|
|
3477
|
+
case "com.amazonaws.imagebuilder#InvalidRequestException":
|
|
3478
|
+
throw await de_InvalidRequestExceptionRes(parsedOutput, context);
|
|
3479
|
+
case "ServiceException":
|
|
3480
|
+
case "com.amazonaws.imagebuilder#ServiceException":
|
|
3481
|
+
throw await de_ServiceExceptionRes(parsedOutput, context);
|
|
3482
|
+
case "ServiceUnavailableException":
|
|
3483
|
+
case "com.amazonaws.imagebuilder#ServiceUnavailableException":
|
|
3484
|
+
throw await de_ServiceUnavailableExceptionRes(parsedOutput, context);
|
|
3485
|
+
default:
|
|
3486
|
+
const parsedBody = parsedOutput.body;
|
|
3487
|
+
return throwDefaultError({
|
|
3488
|
+
output,
|
|
3489
|
+
parsedBody,
|
|
3490
|
+
errorCode,
|
|
3491
|
+
});
|
|
3492
|
+
}
|
|
3493
|
+
};
|
|
3167
3494
|
export const de_GetWorkflowExecutionCommand = async (output, context) => {
|
|
3168
3495
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3169
3496
|
return de_GetWorkflowExecutionCommandError(output, context);
|
|
@@ -3176,6 +3503,7 @@ export const de_GetWorkflowExecutionCommand = async (output, context) => {
|
|
|
3176
3503
|
endTime: __expectString,
|
|
3177
3504
|
imageBuildVersionArn: __expectString,
|
|
3178
3505
|
message: __expectString,
|
|
3506
|
+
parallelGroup: __expectString,
|
|
3179
3507
|
requestId: __expectString,
|
|
3180
3508
|
startTime: __expectString,
|
|
3181
3509
|
status: __expectString,
|
|
@@ -4284,6 +4612,110 @@ const de_ListTagsForResourceCommandError = async (output, context) => {
|
|
|
4284
4612
|
});
|
|
4285
4613
|
}
|
|
4286
4614
|
};
|
|
4615
|
+
export const de_ListWaitingWorkflowStepsCommand = async (output, context) => {
|
|
4616
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4617
|
+
return de_ListWaitingWorkflowStepsCommandError(output, context);
|
|
4618
|
+
}
|
|
4619
|
+
const contents = map({
|
|
4620
|
+
$metadata: deserializeMetadata(output),
|
|
4621
|
+
});
|
|
4622
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
4623
|
+
const doc = take(data, {
|
|
4624
|
+
nextToken: __expectString,
|
|
4625
|
+
steps: _json,
|
|
4626
|
+
});
|
|
4627
|
+
Object.assign(contents, doc);
|
|
4628
|
+
return contents;
|
|
4629
|
+
};
|
|
4630
|
+
const de_ListWaitingWorkflowStepsCommandError = async (output, context) => {
|
|
4631
|
+
const parsedOutput = {
|
|
4632
|
+
...output,
|
|
4633
|
+
body: await parseErrorBody(output.body, context),
|
|
4634
|
+
};
|
|
4635
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4636
|
+
switch (errorCode) {
|
|
4637
|
+
case "CallRateLimitExceededException":
|
|
4638
|
+
case "com.amazonaws.imagebuilder#CallRateLimitExceededException":
|
|
4639
|
+
throw await de_CallRateLimitExceededExceptionRes(parsedOutput, context);
|
|
4640
|
+
case "ClientException":
|
|
4641
|
+
case "com.amazonaws.imagebuilder#ClientException":
|
|
4642
|
+
throw await de_ClientExceptionRes(parsedOutput, context);
|
|
4643
|
+
case "ForbiddenException":
|
|
4644
|
+
case "com.amazonaws.imagebuilder#ForbiddenException":
|
|
4645
|
+
throw await de_ForbiddenExceptionRes(parsedOutput, context);
|
|
4646
|
+
case "InvalidPaginationTokenException":
|
|
4647
|
+
case "com.amazonaws.imagebuilder#InvalidPaginationTokenException":
|
|
4648
|
+
throw await de_InvalidPaginationTokenExceptionRes(parsedOutput, context);
|
|
4649
|
+
case "InvalidRequestException":
|
|
4650
|
+
case "com.amazonaws.imagebuilder#InvalidRequestException":
|
|
4651
|
+
throw await de_InvalidRequestExceptionRes(parsedOutput, context);
|
|
4652
|
+
case "ServiceException":
|
|
4653
|
+
case "com.amazonaws.imagebuilder#ServiceException":
|
|
4654
|
+
throw await de_ServiceExceptionRes(parsedOutput, context);
|
|
4655
|
+
case "ServiceUnavailableException":
|
|
4656
|
+
case "com.amazonaws.imagebuilder#ServiceUnavailableException":
|
|
4657
|
+
throw await de_ServiceUnavailableExceptionRes(parsedOutput, context);
|
|
4658
|
+
default:
|
|
4659
|
+
const parsedBody = parsedOutput.body;
|
|
4660
|
+
return throwDefaultError({
|
|
4661
|
+
output,
|
|
4662
|
+
parsedBody,
|
|
4663
|
+
errorCode,
|
|
4664
|
+
});
|
|
4665
|
+
}
|
|
4666
|
+
};
|
|
4667
|
+
export const de_ListWorkflowBuildVersionsCommand = async (output, context) => {
|
|
4668
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4669
|
+
return de_ListWorkflowBuildVersionsCommandError(output, context);
|
|
4670
|
+
}
|
|
4671
|
+
const contents = map({
|
|
4672
|
+
$metadata: deserializeMetadata(output),
|
|
4673
|
+
});
|
|
4674
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
4675
|
+
const doc = take(data, {
|
|
4676
|
+
nextToken: __expectString,
|
|
4677
|
+
workflowSummaryList: _json,
|
|
4678
|
+
});
|
|
4679
|
+
Object.assign(contents, doc);
|
|
4680
|
+
return contents;
|
|
4681
|
+
};
|
|
4682
|
+
const de_ListWorkflowBuildVersionsCommandError = async (output, context) => {
|
|
4683
|
+
const parsedOutput = {
|
|
4684
|
+
...output,
|
|
4685
|
+
body: await parseErrorBody(output.body, context),
|
|
4686
|
+
};
|
|
4687
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4688
|
+
switch (errorCode) {
|
|
4689
|
+
case "CallRateLimitExceededException":
|
|
4690
|
+
case "com.amazonaws.imagebuilder#CallRateLimitExceededException":
|
|
4691
|
+
throw await de_CallRateLimitExceededExceptionRes(parsedOutput, context);
|
|
4692
|
+
case "ClientException":
|
|
4693
|
+
case "com.amazonaws.imagebuilder#ClientException":
|
|
4694
|
+
throw await de_ClientExceptionRes(parsedOutput, context);
|
|
4695
|
+
case "ForbiddenException":
|
|
4696
|
+
case "com.amazonaws.imagebuilder#ForbiddenException":
|
|
4697
|
+
throw await de_ForbiddenExceptionRes(parsedOutput, context);
|
|
4698
|
+
case "InvalidPaginationTokenException":
|
|
4699
|
+
case "com.amazonaws.imagebuilder#InvalidPaginationTokenException":
|
|
4700
|
+
throw await de_InvalidPaginationTokenExceptionRes(parsedOutput, context);
|
|
4701
|
+
case "InvalidRequestException":
|
|
4702
|
+
case "com.amazonaws.imagebuilder#InvalidRequestException":
|
|
4703
|
+
throw await de_InvalidRequestExceptionRes(parsedOutput, context);
|
|
4704
|
+
case "ServiceException":
|
|
4705
|
+
case "com.amazonaws.imagebuilder#ServiceException":
|
|
4706
|
+
throw await de_ServiceExceptionRes(parsedOutput, context);
|
|
4707
|
+
case "ServiceUnavailableException":
|
|
4708
|
+
case "com.amazonaws.imagebuilder#ServiceUnavailableException":
|
|
4709
|
+
throw await de_ServiceUnavailableExceptionRes(parsedOutput, context);
|
|
4710
|
+
default:
|
|
4711
|
+
const parsedBody = parsedOutput.body;
|
|
4712
|
+
return throwDefaultError({
|
|
4713
|
+
output,
|
|
4714
|
+
parsedBody,
|
|
4715
|
+
errorCode,
|
|
4716
|
+
});
|
|
4717
|
+
}
|
|
4718
|
+
};
|
|
4287
4719
|
export const de_ListWorkflowExecutionsCommand = async (output, context) => {
|
|
4288
4720
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4289
4721
|
return de_ListWorkflowExecutionsCommandError(output, context);
|
|
@@ -4339,6 +4771,58 @@ const de_ListWorkflowExecutionsCommandError = async (output, context) => {
|
|
|
4339
4771
|
});
|
|
4340
4772
|
}
|
|
4341
4773
|
};
|
|
4774
|
+
export const de_ListWorkflowsCommand = async (output, context) => {
|
|
4775
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4776
|
+
return de_ListWorkflowsCommandError(output, context);
|
|
4777
|
+
}
|
|
4778
|
+
const contents = map({
|
|
4779
|
+
$metadata: deserializeMetadata(output),
|
|
4780
|
+
});
|
|
4781
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
4782
|
+
const doc = take(data, {
|
|
4783
|
+
nextToken: __expectString,
|
|
4784
|
+
workflowVersionList: _json,
|
|
4785
|
+
});
|
|
4786
|
+
Object.assign(contents, doc);
|
|
4787
|
+
return contents;
|
|
4788
|
+
};
|
|
4789
|
+
const de_ListWorkflowsCommandError = async (output, context) => {
|
|
4790
|
+
const parsedOutput = {
|
|
4791
|
+
...output,
|
|
4792
|
+
body: await parseErrorBody(output.body, context),
|
|
4793
|
+
};
|
|
4794
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
4795
|
+
switch (errorCode) {
|
|
4796
|
+
case "CallRateLimitExceededException":
|
|
4797
|
+
case "com.amazonaws.imagebuilder#CallRateLimitExceededException":
|
|
4798
|
+
throw await de_CallRateLimitExceededExceptionRes(parsedOutput, context);
|
|
4799
|
+
case "ClientException":
|
|
4800
|
+
case "com.amazonaws.imagebuilder#ClientException":
|
|
4801
|
+
throw await de_ClientExceptionRes(parsedOutput, context);
|
|
4802
|
+
case "ForbiddenException":
|
|
4803
|
+
case "com.amazonaws.imagebuilder#ForbiddenException":
|
|
4804
|
+
throw await de_ForbiddenExceptionRes(parsedOutput, context);
|
|
4805
|
+
case "InvalidPaginationTokenException":
|
|
4806
|
+
case "com.amazonaws.imagebuilder#InvalidPaginationTokenException":
|
|
4807
|
+
throw await de_InvalidPaginationTokenExceptionRes(parsedOutput, context);
|
|
4808
|
+
case "InvalidRequestException":
|
|
4809
|
+
case "com.amazonaws.imagebuilder#InvalidRequestException":
|
|
4810
|
+
throw await de_InvalidRequestExceptionRes(parsedOutput, context);
|
|
4811
|
+
case "ServiceException":
|
|
4812
|
+
case "com.amazonaws.imagebuilder#ServiceException":
|
|
4813
|
+
throw await de_ServiceExceptionRes(parsedOutput, context);
|
|
4814
|
+
case "ServiceUnavailableException":
|
|
4815
|
+
case "com.amazonaws.imagebuilder#ServiceUnavailableException":
|
|
4816
|
+
throw await de_ServiceUnavailableExceptionRes(parsedOutput, context);
|
|
4817
|
+
default:
|
|
4818
|
+
const parsedBody = parsedOutput.body;
|
|
4819
|
+
return throwDefaultError({
|
|
4820
|
+
output,
|
|
4821
|
+
parsedBody,
|
|
4822
|
+
errorCode,
|
|
4823
|
+
});
|
|
4824
|
+
}
|
|
4825
|
+
};
|
|
4342
4826
|
export const de_ListWorkflowStepExecutionsCommand = async (output, context) => {
|
|
4343
4827
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4344
4828
|
return de_ListWorkflowStepExecutionsCommandError(output, context);
|
|
@@ -4616,6 +5100,68 @@ const de_PutImageRecipePolicyCommandError = async (output, context) => {
|
|
|
4616
5100
|
});
|
|
4617
5101
|
}
|
|
4618
5102
|
};
|
|
5103
|
+
export const de_SendWorkflowStepActionCommand = async (output, context) => {
|
|
5104
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5105
|
+
return de_SendWorkflowStepActionCommandError(output, context);
|
|
5106
|
+
}
|
|
5107
|
+
const contents = map({
|
|
5108
|
+
$metadata: deserializeMetadata(output),
|
|
5109
|
+
});
|
|
5110
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
5111
|
+
const doc = take(data, {
|
|
5112
|
+
clientToken: __expectString,
|
|
5113
|
+
imageBuildVersionArn: __expectString,
|
|
5114
|
+
stepExecutionId: __expectString,
|
|
5115
|
+
});
|
|
5116
|
+
Object.assign(contents, doc);
|
|
5117
|
+
return contents;
|
|
5118
|
+
};
|
|
5119
|
+
const de_SendWorkflowStepActionCommandError = async (output, context) => {
|
|
5120
|
+
const parsedOutput = {
|
|
5121
|
+
...output,
|
|
5122
|
+
body: await parseErrorBody(output.body, context),
|
|
5123
|
+
};
|
|
5124
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
5125
|
+
switch (errorCode) {
|
|
5126
|
+
case "CallRateLimitExceededException":
|
|
5127
|
+
case "com.amazonaws.imagebuilder#CallRateLimitExceededException":
|
|
5128
|
+
throw await de_CallRateLimitExceededExceptionRes(parsedOutput, context);
|
|
5129
|
+
case "ClientException":
|
|
5130
|
+
case "com.amazonaws.imagebuilder#ClientException":
|
|
5131
|
+
throw await de_ClientExceptionRes(parsedOutput, context);
|
|
5132
|
+
case "ForbiddenException":
|
|
5133
|
+
case "com.amazonaws.imagebuilder#ForbiddenException":
|
|
5134
|
+
throw await de_ForbiddenExceptionRes(parsedOutput, context);
|
|
5135
|
+
case "IdempotentParameterMismatchException":
|
|
5136
|
+
case "com.amazonaws.imagebuilder#IdempotentParameterMismatchException":
|
|
5137
|
+
throw await de_IdempotentParameterMismatchExceptionRes(parsedOutput, context);
|
|
5138
|
+
case "InvalidParameterValueException":
|
|
5139
|
+
case "com.amazonaws.imagebuilder#InvalidParameterValueException":
|
|
5140
|
+
throw await de_InvalidParameterValueExceptionRes(parsedOutput, context);
|
|
5141
|
+
case "InvalidRequestException":
|
|
5142
|
+
case "com.amazonaws.imagebuilder#InvalidRequestException":
|
|
5143
|
+
throw await de_InvalidRequestExceptionRes(parsedOutput, context);
|
|
5144
|
+
case "ResourceInUseException":
|
|
5145
|
+
case "com.amazonaws.imagebuilder#ResourceInUseException":
|
|
5146
|
+
throw await de_ResourceInUseExceptionRes(parsedOutput, context);
|
|
5147
|
+
case "ResourceNotFoundException":
|
|
5148
|
+
case "com.amazonaws.imagebuilder#ResourceNotFoundException":
|
|
5149
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
5150
|
+
case "ServiceException":
|
|
5151
|
+
case "com.amazonaws.imagebuilder#ServiceException":
|
|
5152
|
+
throw await de_ServiceExceptionRes(parsedOutput, context);
|
|
5153
|
+
case "ServiceUnavailableException":
|
|
5154
|
+
case "com.amazonaws.imagebuilder#ServiceUnavailableException":
|
|
5155
|
+
throw await de_ServiceUnavailableExceptionRes(parsedOutput, context);
|
|
5156
|
+
default:
|
|
5157
|
+
const parsedBody = parsedOutput.body;
|
|
5158
|
+
return throwDefaultError({
|
|
5159
|
+
output,
|
|
5160
|
+
parsedBody,
|
|
5161
|
+
errorCode,
|
|
5162
|
+
});
|
|
5163
|
+
}
|
|
5164
|
+
};
|
|
4619
5165
|
export const de_StartImagePipelineExecutionCommand = async (output, context) => {
|
|
4620
5166
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4621
5167
|
return de_StartImagePipelineExecutionCommandError(output, context);
|
|
@@ -5288,6 +5834,7 @@ const de_Image = (output, context) => {
|
|
|
5288
5834
|
deprecationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
5289
5835
|
distributionConfiguration: _json,
|
|
5290
5836
|
enhancedImageMetadataEnabled: __expectBoolean,
|
|
5837
|
+
executionRole: __expectString,
|
|
5291
5838
|
imageRecipe: _json,
|
|
5292
5839
|
imageScanningConfiguration: _json,
|
|
5293
5840
|
imageSource: __expectString,
|
|
@@ -5305,6 +5852,7 @@ const de_Image = (output, context) => {
|
|
|
5305
5852
|
tags: _json,
|
|
5306
5853
|
type: __expectString,
|
|
5307
5854
|
version: __expectString,
|
|
5855
|
+
workflows: _json,
|
|
5308
5856
|
});
|
|
5309
5857
|
};
|
|
5310
5858
|
const de_ImageScanFinding = (output, context) => {
|