@aws-sdk/client-codecatalyst 3.451.0 → 3.453.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 +64 -1
- package/dist-cjs/CodeCatalyst.js +10 -0
- package/dist-cjs/commands/GetWorkflowCommand.js +50 -0
- package/dist-cjs/commands/GetWorkflowRunCommand.js +50 -0
- package/dist-cjs/commands/ListWorkflowRunsCommand.js +50 -0
- package/dist-cjs/commands/ListWorkflowsCommand.js +50 -0
- package/dist-cjs/commands/StartWorkflowRunCommand.js +50 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +25 -1
- package/dist-cjs/pagination/ListWorkflowRunsPaginator.js +29 -0
- package/dist-cjs/pagination/ListWorkflowsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +445 -5
- package/dist-es/CodeCatalyst.js +10 -0
- package/dist-es/commands/GetWorkflowCommand.js +46 -0
- package/dist-es/commands/GetWorkflowRunCommand.js +46 -0
- package/dist-es/commands/ListWorkflowRunsCommand.js +46 -0
- package/dist-es/commands/ListWorkflowsCommand.js +46 -0
- package/dist-es/commands/StartWorkflowRunCommand.js +46 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +24 -0
- package/dist-es/pagination/ListWorkflowRunsPaginator.js +25 -0
- package/dist-es/pagination/ListWorkflowsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +433 -3
- package/dist-types/CodeCatalyst.d.ts +59 -1
- package/dist-types/CodeCatalystClient.d.ts +31 -3
- package/dist-types/commands/CreateDevEnvironmentCommand.d.ts +2 -0
- package/dist-types/commands/GetDevEnvironmentCommand.d.ts +1 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +107 -0
- package/dist-types/commands/GetWorkflowRunCommand.d.ts +105 -0
- package/dist-types/commands/ListDevEnvironmentsCommand.d.ts +2 -1
- package/dist-types/commands/ListEventLogsCommand.d.ts +10 -1
- package/dist-types/commands/ListWorkflowRunsCommand.d.ts +114 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +114 -0
- package/dist-types/commands/StartWorkflowRunCommand.d.ts +99 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +24 -1
- package/dist-types/models/models_0.d.ts +728 -218
- package/dist-types/pagination/ListWorkflowRunsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkflowsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/CodeCatalyst.d.ts +85 -0
- package/dist-types/ts3.4/CodeCatalystClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartWorkflowRunCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +194 -61
- package/dist-types/ts3.4/pagination/ListWorkflowRunsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkflowsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +4 -2
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
2
2
|
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, map, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, resolvedPath as __resolvedPath, take, withBaseException, } from "@smithy/smithy-client";
|
|
3
|
+
import { v4 as generateIdempotencyToken } from "uuid";
|
|
3
4
|
import { CodeCatalystServiceException as __BaseException } from "../models/CodeCatalystServiceException";
|
|
4
5
|
import { AccessDeniedException, ConflictException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
5
6
|
export const se_CreateAccessTokenCommand = async (input, context) => {
|
|
@@ -41,6 +42,7 @@ export const se_CreateDevEnvironmentCommand = async (input, context) => {
|
|
|
41
42
|
instanceType: [],
|
|
42
43
|
persistentStorage: (_) => _json(_),
|
|
43
44
|
repositories: (_) => _json(_),
|
|
45
|
+
vpcConnectionName: [],
|
|
44
46
|
}));
|
|
45
47
|
return new __HttpRequest({
|
|
46
48
|
protocol,
|
|
@@ -336,6 +338,44 @@ export const se_GetUserDetailsCommand = async (input, context) => {
|
|
|
336
338
|
body,
|
|
337
339
|
});
|
|
338
340
|
};
|
|
341
|
+
export const se_GetWorkflowCommand = async (input, context) => {
|
|
342
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
343
|
+
const headers = {};
|
|
344
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
345
|
+
"/v1/spaces/{spaceName}/projects/{projectName}/workflows/{id}";
|
|
346
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "spaceName", () => input.spaceName, "{spaceName}", false);
|
|
347
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "id", () => input.id, "{id}", false);
|
|
348
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "projectName", () => input.projectName, "{projectName}", false);
|
|
349
|
+
let body;
|
|
350
|
+
return new __HttpRequest({
|
|
351
|
+
protocol,
|
|
352
|
+
hostname,
|
|
353
|
+
port,
|
|
354
|
+
method: "GET",
|
|
355
|
+
headers,
|
|
356
|
+
path: resolvedPath,
|
|
357
|
+
body,
|
|
358
|
+
});
|
|
359
|
+
};
|
|
360
|
+
export const se_GetWorkflowRunCommand = async (input, context) => {
|
|
361
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
362
|
+
const headers = {};
|
|
363
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
364
|
+
"/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns/{id}";
|
|
365
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "spaceName", () => input.spaceName, "{spaceName}", false);
|
|
366
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "id", () => input.id, "{id}", false);
|
|
367
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "projectName", () => input.projectName, "{projectName}", false);
|
|
368
|
+
let body;
|
|
369
|
+
return new __HttpRequest({
|
|
370
|
+
protocol,
|
|
371
|
+
hostname,
|
|
372
|
+
port,
|
|
373
|
+
method: "GET",
|
|
374
|
+
headers,
|
|
375
|
+
path: resolvedPath,
|
|
376
|
+
body,
|
|
377
|
+
});
|
|
378
|
+
};
|
|
339
379
|
export const se_ListAccessTokensCommand = async (input, context) => {
|
|
340
380
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
341
381
|
const headers = {
|
|
@@ -362,15 +402,14 @@ export const se_ListDevEnvironmentsCommand = async (input, context) => {
|
|
|
362
402
|
const headers = {
|
|
363
403
|
"content-type": "application/json",
|
|
364
404
|
};
|
|
365
|
-
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
366
|
-
"/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments";
|
|
405
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/v1/spaces/{spaceName}/devEnvironments";
|
|
367
406
|
resolvedPath = __resolvedPath(resolvedPath, input, "spaceName", () => input.spaceName, "{spaceName}", false);
|
|
368
|
-
resolvedPath = __resolvedPath(resolvedPath, input, "projectName", () => input.projectName, "{projectName}", false);
|
|
369
407
|
let body;
|
|
370
408
|
body = JSON.stringify(take(input, {
|
|
371
409
|
filters: (_) => _json(_),
|
|
372
410
|
maxResults: [],
|
|
373
411
|
nextToken: [],
|
|
412
|
+
projectName: [],
|
|
374
413
|
}));
|
|
375
414
|
return new __HttpRequest({
|
|
376
415
|
protocol,
|
|
@@ -524,6 +563,63 @@ export const se_ListSpacesCommand = async (input, context) => {
|
|
|
524
563
|
body,
|
|
525
564
|
});
|
|
526
565
|
};
|
|
566
|
+
export const se_ListWorkflowRunsCommand = async (input, context) => {
|
|
567
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
568
|
+
const headers = {
|
|
569
|
+
"content-type": "application/json",
|
|
570
|
+
};
|
|
571
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
572
|
+
"/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns";
|
|
573
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "spaceName", () => input.spaceName, "{spaceName}", false);
|
|
574
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "projectName", () => input.projectName, "{projectName}", false);
|
|
575
|
+
const query = map({
|
|
576
|
+
workflowId: [, input.workflowId],
|
|
577
|
+
nextToken: [, input.nextToken],
|
|
578
|
+
maxResults: [() => input.maxResults !== void 0, () => input.maxResults.toString()],
|
|
579
|
+
});
|
|
580
|
+
let body;
|
|
581
|
+
body = JSON.stringify(take(input, {
|
|
582
|
+
sortBy: (_) => _json(_),
|
|
583
|
+
}));
|
|
584
|
+
return new __HttpRequest({
|
|
585
|
+
protocol,
|
|
586
|
+
hostname,
|
|
587
|
+
port,
|
|
588
|
+
method: "POST",
|
|
589
|
+
headers,
|
|
590
|
+
path: resolvedPath,
|
|
591
|
+
query,
|
|
592
|
+
body,
|
|
593
|
+
});
|
|
594
|
+
};
|
|
595
|
+
export const se_ListWorkflowsCommand = async (input, context) => {
|
|
596
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
597
|
+
const headers = {
|
|
598
|
+
"content-type": "application/json",
|
|
599
|
+
};
|
|
600
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
601
|
+
"/v1/spaces/{spaceName}/projects/{projectName}/workflows";
|
|
602
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "spaceName", () => input.spaceName, "{spaceName}", false);
|
|
603
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "projectName", () => input.projectName, "{projectName}", false);
|
|
604
|
+
const query = map({
|
|
605
|
+
nextToken: [, input.nextToken],
|
|
606
|
+
maxResults: [() => input.maxResults !== void 0, () => input.maxResults.toString()],
|
|
607
|
+
});
|
|
608
|
+
let body;
|
|
609
|
+
body = JSON.stringify(take(input, {
|
|
610
|
+
sortBy: (_) => _json(_),
|
|
611
|
+
}));
|
|
612
|
+
return new __HttpRequest({
|
|
613
|
+
protocol,
|
|
614
|
+
hostname,
|
|
615
|
+
port,
|
|
616
|
+
method: "POST",
|
|
617
|
+
headers,
|
|
618
|
+
path: resolvedPath,
|
|
619
|
+
query,
|
|
620
|
+
body,
|
|
621
|
+
});
|
|
622
|
+
};
|
|
527
623
|
export const se_StartDevEnvironmentCommand = async (input, context) => {
|
|
528
624
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
529
625
|
const headers = {
|
|
@@ -574,6 +670,33 @@ export const se_StartDevEnvironmentSessionCommand = async (input, context) => {
|
|
|
574
670
|
body,
|
|
575
671
|
});
|
|
576
672
|
};
|
|
673
|
+
export const se_StartWorkflowRunCommand = async (input, context) => {
|
|
674
|
+
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
675
|
+
const headers = {
|
|
676
|
+
"content-type": "application/json",
|
|
677
|
+
};
|
|
678
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
679
|
+
"/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns";
|
|
680
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "spaceName", () => input.spaceName, "{spaceName}", false);
|
|
681
|
+
resolvedPath = __resolvedPath(resolvedPath, input, "projectName", () => input.projectName, "{projectName}", false);
|
|
682
|
+
const query = map({
|
|
683
|
+
workflowId: [, __expectNonNull(input.workflowId, `workflowId`)],
|
|
684
|
+
});
|
|
685
|
+
let body;
|
|
686
|
+
body = JSON.stringify(take(input, {
|
|
687
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
688
|
+
}));
|
|
689
|
+
return new __HttpRequest({
|
|
690
|
+
protocol,
|
|
691
|
+
hostname,
|
|
692
|
+
port,
|
|
693
|
+
method: "PUT",
|
|
694
|
+
headers,
|
|
695
|
+
path: resolvedPath,
|
|
696
|
+
query,
|
|
697
|
+
body,
|
|
698
|
+
});
|
|
699
|
+
};
|
|
577
700
|
export const se_StopDevEnvironmentCommand = async (input, context) => {
|
|
578
701
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
579
702
|
const headers = {};
|
|
@@ -765,6 +888,7 @@ export const de_CreateDevEnvironmentCommand = async (output, context) => {
|
|
|
765
888
|
id: __expectString,
|
|
766
889
|
projectName: __expectString,
|
|
767
890
|
spaceName: __expectString,
|
|
891
|
+
vpcConnectionName: __expectString,
|
|
768
892
|
});
|
|
769
893
|
Object.assign(contents, doc);
|
|
770
894
|
return contents;
|
|
@@ -1221,6 +1345,7 @@ export const de_GetDevEnvironmentCommand = async (output, context) => {
|
|
|
1221
1345
|
spaceName: __expectString,
|
|
1222
1346
|
status: __expectString,
|
|
1223
1347
|
statusReason: __expectString,
|
|
1348
|
+
vpcConnectionName: __expectString,
|
|
1224
1349
|
});
|
|
1225
1350
|
Object.assign(contents, doc);
|
|
1226
1351
|
return contents;
|
|
@@ -1563,6 +1688,120 @@ const de_GetUserDetailsCommandError = async (output, context) => {
|
|
|
1563
1688
|
});
|
|
1564
1689
|
}
|
|
1565
1690
|
};
|
|
1691
|
+
export const de_GetWorkflowCommand = async (output, context) => {
|
|
1692
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1693
|
+
return de_GetWorkflowCommandError(output, context);
|
|
1694
|
+
}
|
|
1695
|
+
const contents = map({
|
|
1696
|
+
$metadata: deserializeMetadata(output),
|
|
1697
|
+
});
|
|
1698
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1699
|
+
const doc = take(data, {
|
|
1700
|
+
createdTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
1701
|
+
definition: _json,
|
|
1702
|
+
id: __expectString,
|
|
1703
|
+
lastUpdatedTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
1704
|
+
name: __expectString,
|
|
1705
|
+
projectName: __expectString,
|
|
1706
|
+
runMode: __expectString,
|
|
1707
|
+
sourceBranchName: __expectString,
|
|
1708
|
+
sourceRepositoryName: __expectString,
|
|
1709
|
+
spaceName: __expectString,
|
|
1710
|
+
status: __expectString,
|
|
1711
|
+
});
|
|
1712
|
+
Object.assign(contents, doc);
|
|
1713
|
+
return contents;
|
|
1714
|
+
};
|
|
1715
|
+
const de_GetWorkflowCommandError = async (output, context) => {
|
|
1716
|
+
const parsedOutput = {
|
|
1717
|
+
...output,
|
|
1718
|
+
body: await parseErrorBody(output.body, context),
|
|
1719
|
+
};
|
|
1720
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1721
|
+
switch (errorCode) {
|
|
1722
|
+
case "AccessDeniedException":
|
|
1723
|
+
case "com.amazonaws.codecatalyst#AccessDeniedException":
|
|
1724
|
+
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
1725
|
+
case "ConflictException":
|
|
1726
|
+
case "com.amazonaws.codecatalyst#ConflictException":
|
|
1727
|
+
throw await de_ConflictExceptionRes(parsedOutput, context);
|
|
1728
|
+
case "ResourceNotFoundException":
|
|
1729
|
+
case "com.amazonaws.codecatalyst#ResourceNotFoundException":
|
|
1730
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
1731
|
+
case "ServiceQuotaExceededException":
|
|
1732
|
+
case "com.amazonaws.codecatalyst#ServiceQuotaExceededException":
|
|
1733
|
+
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
|
|
1734
|
+
case "ThrottlingException":
|
|
1735
|
+
case "com.amazonaws.codecatalyst#ThrottlingException":
|
|
1736
|
+
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
1737
|
+
case "ValidationException":
|
|
1738
|
+
case "com.amazonaws.codecatalyst#ValidationException":
|
|
1739
|
+
throw await de_ValidationExceptionRes(parsedOutput, context);
|
|
1740
|
+
default:
|
|
1741
|
+
const parsedBody = parsedOutput.body;
|
|
1742
|
+
return throwDefaultError({
|
|
1743
|
+
output,
|
|
1744
|
+
parsedBody,
|
|
1745
|
+
errorCode,
|
|
1746
|
+
});
|
|
1747
|
+
}
|
|
1748
|
+
};
|
|
1749
|
+
export const de_GetWorkflowRunCommand = async (output, context) => {
|
|
1750
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1751
|
+
return de_GetWorkflowRunCommandError(output, context);
|
|
1752
|
+
}
|
|
1753
|
+
const contents = map({
|
|
1754
|
+
$metadata: deserializeMetadata(output),
|
|
1755
|
+
});
|
|
1756
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
1757
|
+
const doc = take(data, {
|
|
1758
|
+
endTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
1759
|
+
id: __expectString,
|
|
1760
|
+
lastUpdatedTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
1761
|
+
projectName: __expectString,
|
|
1762
|
+
spaceName: __expectString,
|
|
1763
|
+
startTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
1764
|
+
status: __expectString,
|
|
1765
|
+
statusReasons: _json,
|
|
1766
|
+
workflowId: __expectString,
|
|
1767
|
+
});
|
|
1768
|
+
Object.assign(contents, doc);
|
|
1769
|
+
return contents;
|
|
1770
|
+
};
|
|
1771
|
+
const de_GetWorkflowRunCommandError = async (output, context) => {
|
|
1772
|
+
const parsedOutput = {
|
|
1773
|
+
...output,
|
|
1774
|
+
body: await parseErrorBody(output.body, context),
|
|
1775
|
+
};
|
|
1776
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1777
|
+
switch (errorCode) {
|
|
1778
|
+
case "AccessDeniedException":
|
|
1779
|
+
case "com.amazonaws.codecatalyst#AccessDeniedException":
|
|
1780
|
+
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
1781
|
+
case "ConflictException":
|
|
1782
|
+
case "com.amazonaws.codecatalyst#ConflictException":
|
|
1783
|
+
throw await de_ConflictExceptionRes(parsedOutput, context);
|
|
1784
|
+
case "ResourceNotFoundException":
|
|
1785
|
+
case "com.amazonaws.codecatalyst#ResourceNotFoundException":
|
|
1786
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
1787
|
+
case "ServiceQuotaExceededException":
|
|
1788
|
+
case "com.amazonaws.codecatalyst#ServiceQuotaExceededException":
|
|
1789
|
+
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
|
|
1790
|
+
case "ThrottlingException":
|
|
1791
|
+
case "com.amazonaws.codecatalyst#ThrottlingException":
|
|
1792
|
+
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
1793
|
+
case "ValidationException":
|
|
1794
|
+
case "com.amazonaws.codecatalyst#ValidationException":
|
|
1795
|
+
throw await de_ValidationExceptionRes(parsedOutput, context);
|
|
1796
|
+
default:
|
|
1797
|
+
const parsedBody = parsedOutput.body;
|
|
1798
|
+
return throwDefaultError({
|
|
1799
|
+
output,
|
|
1800
|
+
parsedBody,
|
|
1801
|
+
errorCode,
|
|
1802
|
+
});
|
|
1803
|
+
}
|
|
1804
|
+
};
|
|
1566
1805
|
export const de_ListAccessTokensCommand = async (output, context) => {
|
|
1567
1806
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1568
1807
|
return de_ListAccessTokensCommandError(output, context);
|
|
@@ -1955,6 +2194,104 @@ const de_ListSpacesCommandError = async (output, context) => {
|
|
|
1955
2194
|
});
|
|
1956
2195
|
}
|
|
1957
2196
|
};
|
|
2197
|
+
export const de_ListWorkflowRunsCommand = async (output, context) => {
|
|
2198
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2199
|
+
return de_ListWorkflowRunsCommandError(output, context);
|
|
2200
|
+
}
|
|
2201
|
+
const contents = map({
|
|
2202
|
+
$metadata: deserializeMetadata(output),
|
|
2203
|
+
});
|
|
2204
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2205
|
+
const doc = take(data, {
|
|
2206
|
+
items: (_) => de_WorkflowRunSummaries(_, context),
|
|
2207
|
+
nextToken: __expectString,
|
|
2208
|
+
});
|
|
2209
|
+
Object.assign(contents, doc);
|
|
2210
|
+
return contents;
|
|
2211
|
+
};
|
|
2212
|
+
const de_ListWorkflowRunsCommandError = async (output, context) => {
|
|
2213
|
+
const parsedOutput = {
|
|
2214
|
+
...output,
|
|
2215
|
+
body: await parseErrorBody(output.body, context),
|
|
2216
|
+
};
|
|
2217
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2218
|
+
switch (errorCode) {
|
|
2219
|
+
case "AccessDeniedException":
|
|
2220
|
+
case "com.amazonaws.codecatalyst#AccessDeniedException":
|
|
2221
|
+
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
2222
|
+
case "ConflictException":
|
|
2223
|
+
case "com.amazonaws.codecatalyst#ConflictException":
|
|
2224
|
+
throw await de_ConflictExceptionRes(parsedOutput, context);
|
|
2225
|
+
case "ResourceNotFoundException":
|
|
2226
|
+
case "com.amazonaws.codecatalyst#ResourceNotFoundException":
|
|
2227
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
2228
|
+
case "ServiceQuotaExceededException":
|
|
2229
|
+
case "com.amazonaws.codecatalyst#ServiceQuotaExceededException":
|
|
2230
|
+
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
|
|
2231
|
+
case "ThrottlingException":
|
|
2232
|
+
case "com.amazonaws.codecatalyst#ThrottlingException":
|
|
2233
|
+
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
2234
|
+
case "ValidationException":
|
|
2235
|
+
case "com.amazonaws.codecatalyst#ValidationException":
|
|
2236
|
+
throw await de_ValidationExceptionRes(parsedOutput, context);
|
|
2237
|
+
default:
|
|
2238
|
+
const parsedBody = parsedOutput.body;
|
|
2239
|
+
return throwDefaultError({
|
|
2240
|
+
output,
|
|
2241
|
+
parsedBody,
|
|
2242
|
+
errorCode,
|
|
2243
|
+
});
|
|
2244
|
+
}
|
|
2245
|
+
};
|
|
2246
|
+
export const de_ListWorkflowsCommand = async (output, context) => {
|
|
2247
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2248
|
+
return de_ListWorkflowsCommandError(output, context);
|
|
2249
|
+
}
|
|
2250
|
+
const contents = map({
|
|
2251
|
+
$metadata: deserializeMetadata(output),
|
|
2252
|
+
});
|
|
2253
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2254
|
+
const doc = take(data, {
|
|
2255
|
+
items: (_) => de_WorkflowSummaries(_, context),
|
|
2256
|
+
nextToken: __expectString,
|
|
2257
|
+
});
|
|
2258
|
+
Object.assign(contents, doc);
|
|
2259
|
+
return contents;
|
|
2260
|
+
};
|
|
2261
|
+
const de_ListWorkflowsCommandError = async (output, context) => {
|
|
2262
|
+
const parsedOutput = {
|
|
2263
|
+
...output,
|
|
2264
|
+
body: await parseErrorBody(output.body, context),
|
|
2265
|
+
};
|
|
2266
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2267
|
+
switch (errorCode) {
|
|
2268
|
+
case "AccessDeniedException":
|
|
2269
|
+
case "com.amazonaws.codecatalyst#AccessDeniedException":
|
|
2270
|
+
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
2271
|
+
case "ConflictException":
|
|
2272
|
+
case "com.amazonaws.codecatalyst#ConflictException":
|
|
2273
|
+
throw await de_ConflictExceptionRes(parsedOutput, context);
|
|
2274
|
+
case "ResourceNotFoundException":
|
|
2275
|
+
case "com.amazonaws.codecatalyst#ResourceNotFoundException":
|
|
2276
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
2277
|
+
case "ServiceQuotaExceededException":
|
|
2278
|
+
case "com.amazonaws.codecatalyst#ServiceQuotaExceededException":
|
|
2279
|
+
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
|
|
2280
|
+
case "ThrottlingException":
|
|
2281
|
+
case "com.amazonaws.codecatalyst#ThrottlingException":
|
|
2282
|
+
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
2283
|
+
case "ValidationException":
|
|
2284
|
+
case "com.amazonaws.codecatalyst#ValidationException":
|
|
2285
|
+
throw await de_ValidationExceptionRes(parsedOutput, context);
|
|
2286
|
+
default:
|
|
2287
|
+
const parsedBody = parsedOutput.body;
|
|
2288
|
+
return throwDefaultError({
|
|
2289
|
+
output,
|
|
2290
|
+
parsedBody,
|
|
2291
|
+
errorCode,
|
|
2292
|
+
});
|
|
2293
|
+
}
|
|
2294
|
+
};
|
|
1958
2295
|
export const de_StartDevEnvironmentCommand = async (output, context) => {
|
|
1959
2296
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1960
2297
|
return de_StartDevEnvironmentCommandError(output, context);
|
|
@@ -2058,6 +2395,57 @@ const de_StartDevEnvironmentSessionCommandError = async (output, context) => {
|
|
|
2058
2395
|
});
|
|
2059
2396
|
}
|
|
2060
2397
|
};
|
|
2398
|
+
export const de_StartWorkflowRunCommand = async (output, context) => {
|
|
2399
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2400
|
+
return de_StartWorkflowRunCommandError(output, context);
|
|
2401
|
+
}
|
|
2402
|
+
const contents = map({
|
|
2403
|
+
$metadata: deserializeMetadata(output),
|
|
2404
|
+
});
|
|
2405
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2406
|
+
const doc = take(data, {
|
|
2407
|
+
id: __expectString,
|
|
2408
|
+
projectName: __expectString,
|
|
2409
|
+
spaceName: __expectString,
|
|
2410
|
+
workflowId: __expectString,
|
|
2411
|
+
});
|
|
2412
|
+
Object.assign(contents, doc);
|
|
2413
|
+
return contents;
|
|
2414
|
+
};
|
|
2415
|
+
const de_StartWorkflowRunCommandError = async (output, context) => {
|
|
2416
|
+
const parsedOutput = {
|
|
2417
|
+
...output,
|
|
2418
|
+
body: await parseErrorBody(output.body, context),
|
|
2419
|
+
};
|
|
2420
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2421
|
+
switch (errorCode) {
|
|
2422
|
+
case "AccessDeniedException":
|
|
2423
|
+
case "com.amazonaws.codecatalyst#AccessDeniedException":
|
|
2424
|
+
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
2425
|
+
case "ConflictException":
|
|
2426
|
+
case "com.amazonaws.codecatalyst#ConflictException":
|
|
2427
|
+
throw await de_ConflictExceptionRes(parsedOutput, context);
|
|
2428
|
+
case "ResourceNotFoundException":
|
|
2429
|
+
case "com.amazonaws.codecatalyst#ResourceNotFoundException":
|
|
2430
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
2431
|
+
case "ServiceQuotaExceededException":
|
|
2432
|
+
case "com.amazonaws.codecatalyst#ServiceQuotaExceededException":
|
|
2433
|
+
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
|
|
2434
|
+
case "ThrottlingException":
|
|
2435
|
+
case "com.amazonaws.codecatalyst#ThrottlingException":
|
|
2436
|
+
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
2437
|
+
case "ValidationException":
|
|
2438
|
+
case "com.amazonaws.codecatalyst#ValidationException":
|
|
2439
|
+
throw await de_ValidationExceptionRes(parsedOutput, context);
|
|
2440
|
+
default:
|
|
2441
|
+
const parsedBody = parsedOutput.body;
|
|
2442
|
+
return throwDefaultError({
|
|
2443
|
+
output,
|
|
2444
|
+
parsedBody,
|
|
2445
|
+
errorCode,
|
|
2446
|
+
});
|
|
2447
|
+
}
|
|
2448
|
+
};
|
|
2061
2449
|
export const de_StopDevEnvironmentCommand = async (output, context) => {
|
|
2062
2450
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2063
2451
|
return de_StopDevEnvironmentCommandError(output, context);
|
|
@@ -2490,6 +2878,7 @@ const de_DevEnvironmentSummary = (output, context) => {
|
|
|
2490
2878
|
spaceName: __expectString,
|
|
2491
2879
|
status: __expectString,
|
|
2492
2880
|
statusReason: __expectString,
|
|
2881
|
+
vpcConnectionName: __expectString,
|
|
2493
2882
|
});
|
|
2494
2883
|
};
|
|
2495
2884
|
const de_DevEnvironmentSummaryList = (output, context) => {
|
|
@@ -2560,6 +2949,47 @@ const de_ListSourceRepositoryBranchesItems = (output, context) => {
|
|
|
2560
2949
|
});
|
|
2561
2950
|
return retVal;
|
|
2562
2951
|
};
|
|
2952
|
+
const de_WorkflowRunSummaries = (output, context) => {
|
|
2953
|
+
const retVal = (output || [])
|
|
2954
|
+
.filter((e) => e != null)
|
|
2955
|
+
.map((entry) => {
|
|
2956
|
+
return de_WorkflowRunSummary(entry, context);
|
|
2957
|
+
});
|
|
2958
|
+
return retVal;
|
|
2959
|
+
};
|
|
2960
|
+
const de_WorkflowRunSummary = (output, context) => {
|
|
2961
|
+
return take(output, {
|
|
2962
|
+
endTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
2963
|
+
id: __expectString,
|
|
2964
|
+
lastUpdatedTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
2965
|
+
startTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
2966
|
+
status: __expectString,
|
|
2967
|
+
statusReasons: _json,
|
|
2968
|
+
workflowId: __expectString,
|
|
2969
|
+
workflowName: __expectString,
|
|
2970
|
+
});
|
|
2971
|
+
};
|
|
2972
|
+
const de_WorkflowSummaries = (output, context) => {
|
|
2973
|
+
const retVal = (output || [])
|
|
2974
|
+
.filter((e) => e != null)
|
|
2975
|
+
.map((entry) => {
|
|
2976
|
+
return de_WorkflowSummary(entry, context);
|
|
2977
|
+
});
|
|
2978
|
+
return retVal;
|
|
2979
|
+
};
|
|
2980
|
+
const de_WorkflowSummary = (output, context) => {
|
|
2981
|
+
return take(output, {
|
|
2982
|
+
createdTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
2983
|
+
definition: _json,
|
|
2984
|
+
id: __expectString,
|
|
2985
|
+
lastUpdatedTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
2986
|
+
name: __expectString,
|
|
2987
|
+
runMode: __expectString,
|
|
2988
|
+
sourceBranchName: __expectString,
|
|
2989
|
+
sourceRepositoryName: __expectString,
|
|
2990
|
+
status: __expectString,
|
|
2991
|
+
});
|
|
2992
|
+
};
|
|
2563
2993
|
const deserializeMetadata = (output) => ({
|
|
2564
2994
|
httpStatusCode: output.statusCode,
|
|
2565
2995
|
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
@@ -17,6 +17,8 @@ import { GetSourceRepositoryCommandInput, GetSourceRepositoryCommandOutput } fro
|
|
|
17
17
|
import { GetSpaceCommandInput, GetSpaceCommandOutput } from "./commands/GetSpaceCommand";
|
|
18
18
|
import { GetSubscriptionCommandInput, GetSubscriptionCommandOutput } from "./commands/GetSubscriptionCommand";
|
|
19
19
|
import { GetUserDetailsCommandInput, GetUserDetailsCommandOutput } from "./commands/GetUserDetailsCommand";
|
|
20
|
+
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
|
|
21
|
+
import { GetWorkflowRunCommandInput, GetWorkflowRunCommandOutput } from "./commands/GetWorkflowRunCommand";
|
|
20
22
|
import { ListAccessTokensCommandInput, ListAccessTokensCommandOutput } from "./commands/ListAccessTokensCommand";
|
|
21
23
|
import { ListDevEnvironmentsCommandInput, ListDevEnvironmentsCommandOutput } from "./commands/ListDevEnvironmentsCommand";
|
|
22
24
|
import { ListDevEnvironmentSessionsCommandInput, ListDevEnvironmentSessionsCommandOutput } from "./commands/ListDevEnvironmentSessionsCommand";
|
|
@@ -25,8 +27,11 @@ import { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/
|
|
|
25
27
|
import { ListSourceRepositoriesCommandInput, ListSourceRepositoriesCommandOutput } from "./commands/ListSourceRepositoriesCommand";
|
|
26
28
|
import { ListSourceRepositoryBranchesCommandInput, ListSourceRepositoryBranchesCommandOutput } from "./commands/ListSourceRepositoryBranchesCommand";
|
|
27
29
|
import { ListSpacesCommandInput, ListSpacesCommandOutput } from "./commands/ListSpacesCommand";
|
|
30
|
+
import { ListWorkflowRunsCommandInput, ListWorkflowRunsCommandOutput } from "./commands/ListWorkflowRunsCommand";
|
|
31
|
+
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
28
32
|
import { StartDevEnvironmentCommandInput, StartDevEnvironmentCommandOutput } from "./commands/StartDevEnvironmentCommand";
|
|
29
33
|
import { StartDevEnvironmentSessionCommandInput, StartDevEnvironmentSessionCommandOutput } from "./commands/StartDevEnvironmentSessionCommand";
|
|
34
|
+
import { StartWorkflowRunCommandInput, StartWorkflowRunCommandOutput } from "./commands/StartWorkflowRunCommand";
|
|
30
35
|
import { StopDevEnvironmentCommandInput, StopDevEnvironmentCommandOutput } from "./commands/StopDevEnvironmentCommand";
|
|
31
36
|
import { StopDevEnvironmentSessionCommandInput, StopDevEnvironmentSessionCommandOutput } from "./commands/StopDevEnvironmentSessionCommand";
|
|
32
37
|
import { UpdateDevEnvironmentCommandInput, UpdateDevEnvironmentCommandOutput } from "./commands/UpdateDevEnvironmentCommand";
|
|
@@ -136,6 +141,18 @@ export interface CodeCatalyst {
|
|
|
136
141
|
getUserDetails(args: GetUserDetailsCommandInput, options?: __HttpHandlerOptions): Promise<GetUserDetailsCommandOutput>;
|
|
137
142
|
getUserDetails(args: GetUserDetailsCommandInput, cb: (err: any, data?: GetUserDetailsCommandOutput) => void): void;
|
|
138
143
|
getUserDetails(args: GetUserDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserDetailsCommandOutput) => void): void;
|
|
144
|
+
/**
|
|
145
|
+
* @see {@link GetWorkflowCommand}
|
|
146
|
+
*/
|
|
147
|
+
getWorkflow(args: GetWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkflowCommandOutput>;
|
|
148
|
+
getWorkflow(args: GetWorkflowCommandInput, cb: (err: any, data?: GetWorkflowCommandOutput) => void): void;
|
|
149
|
+
getWorkflow(args: GetWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkflowCommandOutput) => void): void;
|
|
150
|
+
/**
|
|
151
|
+
* @see {@link GetWorkflowRunCommand}
|
|
152
|
+
*/
|
|
153
|
+
getWorkflowRun(args: GetWorkflowRunCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkflowRunCommandOutput>;
|
|
154
|
+
getWorkflowRun(args: GetWorkflowRunCommandInput, cb: (err: any, data?: GetWorkflowRunCommandOutput) => void): void;
|
|
155
|
+
getWorkflowRun(args: GetWorkflowRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkflowRunCommandOutput) => void): void;
|
|
139
156
|
/**
|
|
140
157
|
* @see {@link ListAccessTokensCommand}
|
|
141
158
|
*/
|
|
@@ -184,6 +201,18 @@ export interface CodeCatalyst {
|
|
|
184
201
|
listSpaces(args: ListSpacesCommandInput, options?: __HttpHandlerOptions): Promise<ListSpacesCommandOutput>;
|
|
185
202
|
listSpaces(args: ListSpacesCommandInput, cb: (err: any, data?: ListSpacesCommandOutput) => void): void;
|
|
186
203
|
listSpaces(args: ListSpacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSpacesCommandOutput) => void): void;
|
|
204
|
+
/**
|
|
205
|
+
* @see {@link ListWorkflowRunsCommand}
|
|
206
|
+
*/
|
|
207
|
+
listWorkflowRuns(args: ListWorkflowRunsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkflowRunsCommandOutput>;
|
|
208
|
+
listWorkflowRuns(args: ListWorkflowRunsCommandInput, cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void): void;
|
|
209
|
+
listWorkflowRuns(args: ListWorkflowRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void): void;
|
|
210
|
+
/**
|
|
211
|
+
* @see {@link ListWorkflowsCommand}
|
|
212
|
+
*/
|
|
213
|
+
listWorkflows(args: ListWorkflowsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkflowsCommandOutput>;
|
|
214
|
+
listWorkflows(args: ListWorkflowsCommandInput, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
|
|
215
|
+
listWorkflows(args: ListWorkflowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
|
|
187
216
|
/**
|
|
188
217
|
* @see {@link StartDevEnvironmentCommand}
|
|
189
218
|
*/
|
|
@@ -196,6 +225,12 @@ export interface CodeCatalyst {
|
|
|
196
225
|
startDevEnvironmentSession(args: StartDevEnvironmentSessionCommandInput, options?: __HttpHandlerOptions): Promise<StartDevEnvironmentSessionCommandOutput>;
|
|
197
226
|
startDevEnvironmentSession(args: StartDevEnvironmentSessionCommandInput, cb: (err: any, data?: StartDevEnvironmentSessionCommandOutput) => void): void;
|
|
198
227
|
startDevEnvironmentSession(args: StartDevEnvironmentSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDevEnvironmentSessionCommandOutput) => void): void;
|
|
228
|
+
/**
|
|
229
|
+
* @see {@link StartWorkflowRunCommand}
|
|
230
|
+
*/
|
|
231
|
+
startWorkflowRun(args: StartWorkflowRunCommandInput, options?: __HttpHandlerOptions): Promise<StartWorkflowRunCommandOutput>;
|
|
232
|
+
startWorkflowRun(args: StartWorkflowRunCommandInput, cb: (err: any, data?: StartWorkflowRunCommandOutput) => void): void;
|
|
233
|
+
startWorkflowRun(args: StartWorkflowRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartWorkflowRunCommandOutput) => void): void;
|
|
199
234
|
/**
|
|
200
235
|
* @see {@link StopDevEnvironmentCommand}
|
|
201
236
|
*/
|
|
@@ -258,7 +293,7 @@ export interface CodeCatalyst {
|
|
|
258
293
|
* </li>
|
|
259
294
|
* <li>
|
|
260
295
|
* <p>
|
|
261
|
-
* <a>UpdateSpace</a>, which
|
|
296
|
+
* <a>UpdateSpace</a>, which changes one or more values for a space.</p>
|
|
262
297
|
* </li>
|
|
263
298
|
* </ul>
|
|
264
299
|
* <p>Projects, by calling the following:</p>
|
|
@@ -359,6 +394,29 @@ export interface CodeCatalyst {
|
|
|
359
394
|
* <a>UpdateDevEnvironment</a>, which changes one or more values for a Dev Environment.</p>
|
|
360
395
|
* </li>
|
|
361
396
|
* </ul>
|
|
397
|
+
* <p>Workflows, by calling the following:</p>
|
|
398
|
+
* <ul>
|
|
399
|
+
* <li>
|
|
400
|
+
* <p>
|
|
401
|
+
* <a>GetWorkflow</a>, which returns information about a workflow.</p>
|
|
402
|
+
* </li>
|
|
403
|
+
* <li>
|
|
404
|
+
* <p>
|
|
405
|
+
* <a>GetWorkflowRun</a>, which returns information about a specified run of a workflow.</p>
|
|
406
|
+
* </li>
|
|
407
|
+
* <li>
|
|
408
|
+
* <p>
|
|
409
|
+
* <a>ListWorkflowRuns</a>, which retrieves a list of runs of a specified workflow.</p>
|
|
410
|
+
* </li>
|
|
411
|
+
* <li>
|
|
412
|
+
* <p>
|
|
413
|
+
* <a>ListWorkflows</a>, which retrieves a list of workflows in a specified project.</p>
|
|
414
|
+
* </li>
|
|
415
|
+
* <li>
|
|
416
|
+
* <p>
|
|
417
|
+
* <a>StartWorkflowRun</a>, which starts a run of a specified workflow.</p>
|
|
418
|
+
* </li>
|
|
419
|
+
* </ul>
|
|
362
420
|
* <p>Security, activity, and resource management in Amazon CodeCatalyst, by calling the following:</p>
|
|
363
421
|
* <ul>
|
|
364
422
|
* <li>
|