@aws-sdk/client-codebuild 3.781.0 → 3.784.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 +72 -0
- package/dist-cjs/index.js +558 -1
- package/dist-es/CodeBuild.js +18 -0
- package/dist-es/commands/BatchGetCommandExecutionsCommand.js +23 -0
- package/dist-es/commands/BatchGetSandboxesCommand.js +22 -0
- package/dist-es/commands/ListCommandExecutionsForSandboxCommand.js +23 -0
- package/dist-es/commands/ListSandboxesCommand.js +22 -0
- package/dist-es/commands/ListSandboxesForProjectCommand.js +23 -0
- package/dist-es/commands/StartCommandExecutionCommand.js +23 -0
- package/dist-es/commands/StartSandboxCommand.js +23 -0
- package/dist-es/commands/StartSandboxConnectionCommand.js +22 -0
- package/dist-es/commands/StopSandboxCommand.js +22 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +53 -0
- package/dist-es/pagination/ListCommandExecutionsForSandboxPaginator.js +4 -0
- package/dist-es/pagination/ListSandboxesForProjectPaginator.js +4 -0
- package/dist-es/pagination/ListSandboxesPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_1.js +305 -1
- package/dist-types/CodeBuild.d.ts +65 -0
- package/dist-types/CodeBuildClient.d.ts +11 -2
- package/dist-types/commands/BatchGetCommandExecutionsCommand.d.ts +115 -0
- package/dist-types/commands/BatchGetSandboxesCommand.d.ts +248 -0
- package/dist-types/commands/ListCommandExecutionsForSandboxCommand.d.ts +116 -0
- package/dist-types/commands/ListSandboxesCommand.d.ts +80 -0
- package/dist-types/commands/ListSandboxesForProjectCommand.d.ts +84 -0
- package/dist-types/commands/StartCommandExecutionCommand.d.ts +112 -0
- package/dist-types/commands/StartSandboxCommand.d.ts +248 -0
- package/dist-types/commands/StartSandboxConnectionCommand.d.ts +82 -0
- package/dist-types/commands/StopSandboxCommand.d.ts +244 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +639 -0
- package/dist-types/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSandboxesForProjectPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSandboxesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +81 -0
- package/dist-types/ts3.4/CodeBuild.d.ts +155 -0
- package/dist-types/ts3.4/CodeBuildClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/BatchGetCommandExecutionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetSandboxesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListCommandExecutionsForSandboxCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSandboxesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListSandboxesForProjectCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartCommandExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartSandboxCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StartSandboxConnectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopSandboxCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +167 -0
- package/dist-types/ts3.4/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSandboxesForProjectPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSandboxesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +108 -0
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -22,6 +22,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
22
22
|
var index_exports = {};
|
|
23
23
|
__export(index_exports, {
|
|
24
24
|
AccountLimitExceededException: () => AccountLimitExceededException,
|
|
25
|
+
AccountSuspendedException: () => AccountSuspendedException,
|
|
25
26
|
ArtifactNamespace: () => ArtifactNamespace,
|
|
26
27
|
ArtifactPackaging: () => ArtifactPackaging,
|
|
27
28
|
ArtifactsType: () => ArtifactsType,
|
|
@@ -29,10 +30,13 @@ __export(index_exports, {
|
|
|
29
30
|
BatchDeleteBuildsCommand: () => BatchDeleteBuildsCommand,
|
|
30
31
|
BatchGetBuildBatchesCommand: () => BatchGetBuildBatchesCommand,
|
|
31
32
|
BatchGetBuildsCommand: () => BatchGetBuildsCommand,
|
|
33
|
+
BatchGetCommandExecutionsCommand: () => BatchGetCommandExecutionsCommand,
|
|
34
|
+
BatchGetCommandExecutionsOutputFilterSensitiveLog: () => BatchGetCommandExecutionsOutputFilterSensitiveLog,
|
|
32
35
|
BatchGetFleetsCommand: () => BatchGetFleetsCommand,
|
|
33
36
|
BatchGetProjectsCommand: () => BatchGetProjectsCommand,
|
|
34
37
|
BatchGetReportGroupsCommand: () => BatchGetReportGroupsCommand,
|
|
35
38
|
BatchGetReportsCommand: () => BatchGetReportsCommand,
|
|
39
|
+
BatchGetSandboxesCommand: () => BatchGetSandboxesCommand,
|
|
36
40
|
BatchReportModeType: () => BatchReportModeType,
|
|
37
41
|
BucketOwnerAccess: () => BucketOwnerAccess,
|
|
38
42
|
BuildBatchPhaseType: () => BuildBatchPhaseType,
|
|
@@ -42,6 +46,8 @@ __export(index_exports, {
|
|
|
42
46
|
CodeBuild: () => CodeBuild,
|
|
43
47
|
CodeBuildClient: () => CodeBuildClient,
|
|
44
48
|
CodeBuildServiceException: () => CodeBuildServiceException,
|
|
49
|
+
CommandExecutionFilterSensitiveLog: () => CommandExecutionFilterSensitiveLog,
|
|
50
|
+
CommandType: () => CommandType,
|
|
45
51
|
ComputeType: () => ComputeType,
|
|
46
52
|
CreateFleetCommand: () => CreateFleetCommand,
|
|
47
53
|
CreateProjectCommand: () => CreateProjectCommand,
|
|
@@ -82,6 +88,9 @@ __export(index_exports, {
|
|
|
82
88
|
ListBuildBatchesForProjectCommand: () => ListBuildBatchesForProjectCommand,
|
|
83
89
|
ListBuildsCommand: () => ListBuildsCommand,
|
|
84
90
|
ListBuildsForProjectCommand: () => ListBuildsForProjectCommand,
|
|
91
|
+
ListCommandExecutionsForSandboxCommand: () => ListCommandExecutionsForSandboxCommand,
|
|
92
|
+
ListCommandExecutionsForSandboxInputFilterSensitiveLog: () => ListCommandExecutionsForSandboxInputFilterSensitiveLog,
|
|
93
|
+
ListCommandExecutionsForSandboxOutputFilterSensitiveLog: () => ListCommandExecutionsForSandboxOutputFilterSensitiveLog,
|
|
85
94
|
ListCuratedEnvironmentImagesCommand: () => ListCuratedEnvironmentImagesCommand,
|
|
86
95
|
ListFleetsCommand: () => ListFleetsCommand,
|
|
87
96
|
ListFleetsInputFilterSensitiveLog: () => ListFleetsInputFilterSensitiveLog,
|
|
@@ -89,6 +98,9 @@ __export(index_exports, {
|
|
|
89
98
|
ListReportGroupsCommand: () => ListReportGroupsCommand,
|
|
90
99
|
ListReportsCommand: () => ListReportsCommand,
|
|
91
100
|
ListReportsForReportGroupCommand: () => ListReportsForReportGroupCommand,
|
|
101
|
+
ListSandboxesCommand: () => ListSandboxesCommand,
|
|
102
|
+
ListSandboxesForProjectCommand: () => ListSandboxesForProjectCommand,
|
|
103
|
+
ListSandboxesForProjectInputFilterSensitiveLog: () => ListSandboxesForProjectInputFilterSensitiveLog,
|
|
92
104
|
ListSharedProjectsCommand: () => ListSharedProjectsCommand,
|
|
93
105
|
ListSharedReportGroupsCommand: () => ListSharedReportGroupsCommand,
|
|
94
106
|
ListSourceCredentialsCommand: () => ListSourceCredentialsCommand,
|
|
@@ -119,9 +131,16 @@ __export(index_exports, {
|
|
|
119
131
|
SourceType: () => SourceType,
|
|
120
132
|
StartBuildBatchCommand: () => StartBuildBatchCommand,
|
|
121
133
|
StartBuildCommand: () => StartBuildCommand,
|
|
134
|
+
StartCommandExecutionCommand: () => StartCommandExecutionCommand,
|
|
135
|
+
StartCommandExecutionInputFilterSensitiveLog: () => StartCommandExecutionInputFilterSensitiveLog,
|
|
136
|
+
StartCommandExecutionOutputFilterSensitiveLog: () => StartCommandExecutionOutputFilterSensitiveLog,
|
|
137
|
+
StartSandboxCommand: () => StartSandboxCommand,
|
|
138
|
+
StartSandboxConnectionCommand: () => StartSandboxConnectionCommand,
|
|
139
|
+
StartSandboxInputFilterSensitiveLog: () => StartSandboxInputFilterSensitiveLog,
|
|
122
140
|
StatusType: () => StatusType,
|
|
123
141
|
StopBuildBatchCommand: () => StopBuildBatchCommand,
|
|
124
142
|
StopBuildCommand: () => StopBuildCommand,
|
|
143
|
+
StopSandboxCommand: () => StopSandboxCommand,
|
|
125
144
|
UpdateFleetCommand: () => UpdateFleetCommand,
|
|
126
145
|
UpdateProjectCommand: () => UpdateProjectCommand,
|
|
127
146
|
UpdateProjectVisibilityCommand: () => UpdateProjectVisibilityCommand,
|
|
@@ -138,11 +157,14 @@ __export(index_exports, {
|
|
|
138
157
|
paginateListBuildBatchesForProject: () => paginateListBuildBatchesForProject,
|
|
139
158
|
paginateListBuilds: () => paginateListBuilds,
|
|
140
159
|
paginateListBuildsForProject: () => paginateListBuildsForProject,
|
|
160
|
+
paginateListCommandExecutionsForSandbox: () => paginateListCommandExecutionsForSandbox,
|
|
141
161
|
paginateListFleets: () => paginateListFleets,
|
|
142
162
|
paginateListProjects: () => paginateListProjects,
|
|
143
163
|
paginateListReportGroups: () => paginateListReportGroups,
|
|
144
164
|
paginateListReports: () => paginateListReports,
|
|
145
165
|
paginateListReportsForReportGroup: () => paginateListReportsForReportGroup,
|
|
166
|
+
paginateListSandboxes: () => paginateListSandboxes,
|
|
167
|
+
paginateListSandboxesForProject: () => paginateListSandboxesForProject,
|
|
146
168
|
paginateListSharedProjects: () => paginateListSharedProjects,
|
|
147
169
|
paginateListSharedReportGroups: () => paginateListSharedReportGroups
|
|
148
170
|
});
|
|
@@ -337,6 +359,24 @@ var AccountLimitExceededException = class _AccountLimitExceededException extends
|
|
|
337
359
|
Object.setPrototypeOf(this, _AccountLimitExceededException.prototype);
|
|
338
360
|
}
|
|
339
361
|
};
|
|
362
|
+
var AccountSuspendedException = class _AccountSuspendedException extends CodeBuildServiceException {
|
|
363
|
+
static {
|
|
364
|
+
__name(this, "AccountSuspendedException");
|
|
365
|
+
}
|
|
366
|
+
name = "AccountSuspendedException";
|
|
367
|
+
$fault = "client";
|
|
368
|
+
/**
|
|
369
|
+
* @internal
|
|
370
|
+
*/
|
|
371
|
+
constructor(opts) {
|
|
372
|
+
super({
|
|
373
|
+
name: "AccountSuspendedException",
|
|
374
|
+
$fault: "client",
|
|
375
|
+
...opts
|
|
376
|
+
});
|
|
377
|
+
Object.setPrototypeOf(this, _AccountSuspendedException.prototype);
|
|
378
|
+
}
|
|
379
|
+
};
|
|
340
380
|
var ArtifactNamespace = {
|
|
341
381
|
BUILD_ID: "BUILD_ID",
|
|
342
382
|
NONE: "NONE"
|
|
@@ -490,6 +530,9 @@ var BuildPhaseType = {
|
|
|
490
530
|
SUBMITTED: "SUBMITTED",
|
|
491
531
|
UPLOAD_ARTIFACTS: "UPLOAD_ARTIFACTS"
|
|
492
532
|
};
|
|
533
|
+
var CommandType = {
|
|
534
|
+
SHELL: "SHELL"
|
|
535
|
+
};
|
|
493
536
|
var FleetOverflowBehavior = {
|
|
494
537
|
ON_DEMAND: "ON_DEMAND",
|
|
495
538
|
QUEUE: "QUEUE"
|
|
@@ -706,14 +749,52 @@ var RetryBuildBatchType = {
|
|
|
706
749
|
RETRY_ALL_BUILDS: "RETRY_ALL_BUILDS",
|
|
707
750
|
RETRY_FAILED_BUILDS: "RETRY_FAILED_BUILDS"
|
|
708
751
|
};
|
|
752
|
+
var CommandExecutionFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
753
|
+
...obj,
|
|
754
|
+
...obj.command && { command: import_smithy_client.SENSITIVE_STRING },
|
|
755
|
+
...obj.standardOutputContent && { standardOutputContent: import_smithy_client.SENSITIVE_STRING },
|
|
756
|
+
...obj.standardErrContent && { standardErrContent: import_smithy_client.SENSITIVE_STRING }
|
|
757
|
+
}), "CommandExecutionFilterSensitiveLog");
|
|
758
|
+
var BatchGetCommandExecutionsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
759
|
+
...obj,
|
|
760
|
+
...obj.commandExecutions && {
|
|
761
|
+
commandExecutions: obj.commandExecutions.map((item) => CommandExecutionFilterSensitiveLog(item))
|
|
762
|
+
}
|
|
763
|
+
}), "BatchGetCommandExecutionsOutputFilterSensitiveLog");
|
|
709
764
|
var ImportSourceCredentialsInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
710
765
|
...obj,
|
|
711
766
|
...obj.token && { token: import_smithy_client.SENSITIVE_STRING }
|
|
712
767
|
}), "ImportSourceCredentialsInputFilterSensitiveLog");
|
|
768
|
+
var ListCommandExecutionsForSandboxInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
769
|
+
...obj,
|
|
770
|
+
...obj.nextToken && { nextToken: import_smithy_client.SENSITIVE_STRING }
|
|
771
|
+
}), "ListCommandExecutionsForSandboxInputFilterSensitiveLog");
|
|
772
|
+
var ListCommandExecutionsForSandboxOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
773
|
+
...obj,
|
|
774
|
+
...obj.commandExecutions && {
|
|
775
|
+
commandExecutions: obj.commandExecutions.map((item) => CommandExecutionFilterSensitiveLog(item))
|
|
776
|
+
}
|
|
777
|
+
}), "ListCommandExecutionsForSandboxOutputFilterSensitiveLog");
|
|
713
778
|
var ListFleetsInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
714
779
|
...obj,
|
|
715
780
|
...obj.nextToken && { nextToken: import_smithy_client.SENSITIVE_STRING }
|
|
716
781
|
}), "ListFleetsInputFilterSensitiveLog");
|
|
782
|
+
var ListSandboxesForProjectInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
783
|
+
...obj,
|
|
784
|
+
...obj.nextToken && { nextToken: import_smithy_client.SENSITIVE_STRING }
|
|
785
|
+
}), "ListSandboxesForProjectInputFilterSensitiveLog");
|
|
786
|
+
var StartCommandExecutionInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
787
|
+
...obj,
|
|
788
|
+
...obj.command && { command: import_smithy_client.SENSITIVE_STRING }
|
|
789
|
+
}), "StartCommandExecutionInputFilterSensitiveLog");
|
|
790
|
+
var StartCommandExecutionOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
791
|
+
...obj,
|
|
792
|
+
...obj.commandExecution && { commandExecution: CommandExecutionFilterSensitiveLog(obj.commandExecution) }
|
|
793
|
+
}), "StartCommandExecutionOutputFilterSensitiveLog");
|
|
794
|
+
var StartSandboxInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
795
|
+
...obj,
|
|
796
|
+
...obj.idempotencyToken && { idempotencyToken: import_smithy_client.SENSITIVE_STRING }
|
|
797
|
+
}), "StartSandboxInputFilterSensitiveLog");
|
|
717
798
|
|
|
718
799
|
// src/protocols/Aws_json1_1.ts
|
|
719
800
|
var se_BatchDeleteBuildsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -734,6 +815,12 @@ var se_BatchGetBuildsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
734
815
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
735
816
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
736
817
|
}, "se_BatchGetBuildsCommand");
|
|
818
|
+
var se_BatchGetCommandExecutionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
819
|
+
const headers = sharedHeaders("BatchGetCommandExecutions");
|
|
820
|
+
let body;
|
|
821
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
822
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
823
|
+
}, "se_BatchGetCommandExecutionsCommand");
|
|
737
824
|
var se_BatchGetFleetsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
738
825
|
const headers = sharedHeaders("BatchGetFleets");
|
|
739
826
|
let body;
|
|
@@ -758,6 +845,12 @@ var se_BatchGetReportsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
758
845
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
759
846
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
760
847
|
}, "se_BatchGetReportsCommand");
|
|
848
|
+
var se_BatchGetSandboxesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
849
|
+
const headers = sharedHeaders("BatchGetSandboxes");
|
|
850
|
+
let body;
|
|
851
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
852
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
853
|
+
}, "se_BatchGetSandboxesCommand");
|
|
761
854
|
var se_CreateFleetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
762
855
|
const headers = sharedHeaders("CreateFleet");
|
|
763
856
|
let body;
|
|
@@ -890,6 +983,12 @@ var se_ListBuildsForProjectCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
890
983
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
891
984
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
892
985
|
}, "se_ListBuildsForProjectCommand");
|
|
986
|
+
var se_ListCommandExecutionsForSandboxCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
987
|
+
const headers = sharedHeaders("ListCommandExecutionsForSandbox");
|
|
988
|
+
let body;
|
|
989
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
990
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
991
|
+
}, "se_ListCommandExecutionsForSandboxCommand");
|
|
893
992
|
var se_ListCuratedEnvironmentImagesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
894
993
|
const headers = sharedHeaders("ListCuratedEnvironmentImages");
|
|
895
994
|
let body;
|
|
@@ -926,6 +1025,18 @@ var se_ListReportsForReportGroupCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
926
1025
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
927
1026
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
928
1027
|
}, "se_ListReportsForReportGroupCommand");
|
|
1028
|
+
var se_ListSandboxesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1029
|
+
const headers = sharedHeaders("ListSandboxes");
|
|
1030
|
+
let body;
|
|
1031
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
1032
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1033
|
+
}, "se_ListSandboxesCommand");
|
|
1034
|
+
var se_ListSandboxesForProjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1035
|
+
const headers = sharedHeaders("ListSandboxesForProject");
|
|
1036
|
+
let body;
|
|
1037
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
1038
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1039
|
+
}, "se_ListSandboxesForProjectCommand");
|
|
929
1040
|
var se_ListSharedProjectsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
930
1041
|
const headers = sharedHeaders("ListSharedProjects");
|
|
931
1042
|
let body;
|
|
@@ -974,6 +1085,24 @@ var se_StartBuildBatchCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
974
1085
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
975
1086
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
976
1087
|
}, "se_StartBuildBatchCommand");
|
|
1088
|
+
var se_StartCommandExecutionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1089
|
+
const headers = sharedHeaders("StartCommandExecution");
|
|
1090
|
+
let body;
|
|
1091
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
1092
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1093
|
+
}, "se_StartCommandExecutionCommand");
|
|
1094
|
+
var se_StartSandboxCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1095
|
+
const headers = sharedHeaders("StartSandbox");
|
|
1096
|
+
let body;
|
|
1097
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
1098
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1099
|
+
}, "se_StartSandboxCommand");
|
|
1100
|
+
var se_StartSandboxConnectionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1101
|
+
const headers = sharedHeaders("StartSandboxConnection");
|
|
1102
|
+
let body;
|
|
1103
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
1104
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1105
|
+
}, "se_StartSandboxConnectionCommand");
|
|
977
1106
|
var se_StopBuildCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
978
1107
|
const headers = sharedHeaders("StopBuild");
|
|
979
1108
|
let body;
|
|
@@ -986,6 +1115,12 @@ var se_StopBuildBatchCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
986
1115
|
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
987
1116
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
988
1117
|
}, "se_StopBuildBatchCommand");
|
|
1118
|
+
var se_StopSandboxCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1119
|
+
const headers = sharedHeaders("StopSandbox");
|
|
1120
|
+
let body;
|
|
1121
|
+
body = JSON.stringify((0, import_smithy_client._json)(input));
|
|
1122
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
1123
|
+
}, "se_StopSandboxCommand");
|
|
989
1124
|
var se_UpdateFleetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
990
1125
|
const headers = sharedHeaders("UpdateFleet");
|
|
991
1126
|
let body;
|
|
@@ -1055,6 +1190,19 @@ var de_BatchGetBuildsCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
1055
1190
|
};
|
|
1056
1191
|
return response;
|
|
1057
1192
|
}, "de_BatchGetBuildsCommand");
|
|
1193
|
+
var de_BatchGetCommandExecutionsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1194
|
+
if (output.statusCode >= 300) {
|
|
1195
|
+
return de_CommandError(output, context);
|
|
1196
|
+
}
|
|
1197
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1198
|
+
let contents = {};
|
|
1199
|
+
contents = de_BatchGetCommandExecutionsOutput(data, context);
|
|
1200
|
+
const response = {
|
|
1201
|
+
$metadata: deserializeMetadata(output),
|
|
1202
|
+
...contents
|
|
1203
|
+
};
|
|
1204
|
+
return response;
|
|
1205
|
+
}, "de_BatchGetCommandExecutionsCommand");
|
|
1058
1206
|
var de_BatchGetFleetsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1059
1207
|
if (output.statusCode >= 300) {
|
|
1060
1208
|
return de_CommandError(output, context);
|
|
@@ -1107,6 +1255,19 @@ var de_BatchGetReportsCommand = /* @__PURE__ */ __name(async (output, context) =
|
|
|
1107
1255
|
};
|
|
1108
1256
|
return response;
|
|
1109
1257
|
}, "de_BatchGetReportsCommand");
|
|
1258
|
+
var de_BatchGetSandboxesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1259
|
+
if (output.statusCode >= 300) {
|
|
1260
|
+
return de_CommandError(output, context);
|
|
1261
|
+
}
|
|
1262
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1263
|
+
let contents = {};
|
|
1264
|
+
contents = de_BatchGetSandboxesOutput(data, context);
|
|
1265
|
+
const response = {
|
|
1266
|
+
$metadata: deserializeMetadata(output),
|
|
1267
|
+
...contents
|
|
1268
|
+
};
|
|
1269
|
+
return response;
|
|
1270
|
+
}, "de_BatchGetSandboxesCommand");
|
|
1110
1271
|
var de_CreateFleetCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1111
1272
|
if (output.statusCode >= 300) {
|
|
1112
1273
|
return de_CommandError(output, context);
|
|
@@ -1393,6 +1554,19 @@ var de_ListBuildsForProjectCommand = /* @__PURE__ */ __name(async (output, conte
|
|
|
1393
1554
|
};
|
|
1394
1555
|
return response;
|
|
1395
1556
|
}, "de_ListBuildsForProjectCommand");
|
|
1557
|
+
var de_ListCommandExecutionsForSandboxCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1558
|
+
if (output.statusCode >= 300) {
|
|
1559
|
+
return de_CommandError(output, context);
|
|
1560
|
+
}
|
|
1561
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1562
|
+
let contents = {};
|
|
1563
|
+
contents = de_ListCommandExecutionsForSandboxOutput(data, context);
|
|
1564
|
+
const response = {
|
|
1565
|
+
$metadata: deserializeMetadata(output),
|
|
1566
|
+
...contents
|
|
1567
|
+
};
|
|
1568
|
+
return response;
|
|
1569
|
+
}, "de_ListCommandExecutionsForSandboxCommand");
|
|
1396
1570
|
var de_ListCuratedEnvironmentImagesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1397
1571
|
if (output.statusCode >= 300) {
|
|
1398
1572
|
return de_CommandError(output, context);
|
|
@@ -1471,6 +1645,32 @@ var de_ListReportsForReportGroupCommand = /* @__PURE__ */ __name(async (output,
|
|
|
1471
1645
|
};
|
|
1472
1646
|
return response;
|
|
1473
1647
|
}, "de_ListReportsForReportGroupCommand");
|
|
1648
|
+
var de_ListSandboxesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1649
|
+
if (output.statusCode >= 300) {
|
|
1650
|
+
return de_CommandError(output, context);
|
|
1651
|
+
}
|
|
1652
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1653
|
+
let contents = {};
|
|
1654
|
+
contents = (0, import_smithy_client._json)(data);
|
|
1655
|
+
const response = {
|
|
1656
|
+
$metadata: deserializeMetadata(output),
|
|
1657
|
+
...contents
|
|
1658
|
+
};
|
|
1659
|
+
return response;
|
|
1660
|
+
}, "de_ListSandboxesCommand");
|
|
1661
|
+
var de_ListSandboxesForProjectCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1662
|
+
if (output.statusCode >= 300) {
|
|
1663
|
+
return de_CommandError(output, context);
|
|
1664
|
+
}
|
|
1665
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1666
|
+
let contents = {};
|
|
1667
|
+
contents = (0, import_smithy_client._json)(data);
|
|
1668
|
+
const response = {
|
|
1669
|
+
$metadata: deserializeMetadata(output),
|
|
1670
|
+
...contents
|
|
1671
|
+
};
|
|
1672
|
+
return response;
|
|
1673
|
+
}, "de_ListSandboxesForProjectCommand");
|
|
1474
1674
|
var de_ListSharedProjectsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1475
1675
|
if (output.statusCode >= 300) {
|
|
1476
1676
|
return de_CommandError(output, context);
|
|
@@ -1575,6 +1775,45 @@ var de_StartBuildBatchCommand = /* @__PURE__ */ __name(async (output, context) =
|
|
|
1575
1775
|
};
|
|
1576
1776
|
return response;
|
|
1577
1777
|
}, "de_StartBuildBatchCommand");
|
|
1778
|
+
var de_StartCommandExecutionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1779
|
+
if (output.statusCode >= 300) {
|
|
1780
|
+
return de_CommandError(output, context);
|
|
1781
|
+
}
|
|
1782
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1783
|
+
let contents = {};
|
|
1784
|
+
contents = de_StartCommandExecutionOutput(data, context);
|
|
1785
|
+
const response = {
|
|
1786
|
+
$metadata: deserializeMetadata(output),
|
|
1787
|
+
...contents
|
|
1788
|
+
};
|
|
1789
|
+
return response;
|
|
1790
|
+
}, "de_StartCommandExecutionCommand");
|
|
1791
|
+
var de_StartSandboxCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1792
|
+
if (output.statusCode >= 300) {
|
|
1793
|
+
return de_CommandError(output, context);
|
|
1794
|
+
}
|
|
1795
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1796
|
+
let contents = {};
|
|
1797
|
+
contents = de_StartSandboxOutput(data, context);
|
|
1798
|
+
const response = {
|
|
1799
|
+
$metadata: deserializeMetadata(output),
|
|
1800
|
+
...contents
|
|
1801
|
+
};
|
|
1802
|
+
return response;
|
|
1803
|
+
}, "de_StartSandboxCommand");
|
|
1804
|
+
var de_StartSandboxConnectionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1805
|
+
if (output.statusCode >= 300) {
|
|
1806
|
+
return de_CommandError(output, context);
|
|
1807
|
+
}
|
|
1808
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1809
|
+
let contents = {};
|
|
1810
|
+
contents = (0, import_smithy_client._json)(data);
|
|
1811
|
+
const response = {
|
|
1812
|
+
$metadata: deserializeMetadata(output),
|
|
1813
|
+
...contents
|
|
1814
|
+
};
|
|
1815
|
+
return response;
|
|
1816
|
+
}, "de_StartSandboxConnectionCommand");
|
|
1578
1817
|
var de_StopBuildCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1579
1818
|
if (output.statusCode >= 300) {
|
|
1580
1819
|
return de_CommandError(output, context);
|
|
@@ -1601,6 +1840,19 @@ var de_StopBuildBatchCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
1601
1840
|
};
|
|
1602
1841
|
return response;
|
|
1603
1842
|
}, "de_StopBuildBatchCommand");
|
|
1843
|
+
var de_StopSandboxCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1844
|
+
if (output.statusCode >= 300) {
|
|
1845
|
+
return de_CommandError(output, context);
|
|
1846
|
+
}
|
|
1847
|
+
const data = await (0, import_core2.parseJsonBody)(output.body, context);
|
|
1848
|
+
let contents = {};
|
|
1849
|
+
contents = de_StopSandboxOutput(data, context);
|
|
1850
|
+
const response = {
|
|
1851
|
+
$metadata: deserializeMetadata(output),
|
|
1852
|
+
...contents
|
|
1853
|
+
};
|
|
1854
|
+
return response;
|
|
1855
|
+
}, "de_StopSandboxCommand");
|
|
1604
1856
|
var de_UpdateFleetCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
1605
1857
|
if (output.statusCode >= 300) {
|
|
1606
1858
|
return de_CommandError(output, context);
|
|
@@ -1688,6 +1940,9 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1688
1940
|
case "ResourceNotFoundException":
|
|
1689
1941
|
case "com.amazonaws.codebuild#ResourceNotFoundException":
|
|
1690
1942
|
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
1943
|
+
case "AccountSuspendedException":
|
|
1944
|
+
case "com.amazonaws.codebuild#AccountSuspendedException":
|
|
1945
|
+
throw await de_AccountSuspendedExceptionRes(parsedOutput, context);
|
|
1691
1946
|
default:
|
|
1692
1947
|
const parsedBody = parsedOutput.body;
|
|
1693
1948
|
return throwDefaultError({
|
|
@@ -1706,6 +1961,15 @@ var de_AccountLimitExceededExceptionRes = /* @__PURE__ */ __name(async (parsedOu
|
|
|
1706
1961
|
});
|
|
1707
1962
|
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1708
1963
|
}, "de_AccountLimitExceededExceptionRes");
|
|
1964
|
+
var de_AccountSuspendedExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1965
|
+
const body = parsedOutput.body;
|
|
1966
|
+
const deserialized = (0, import_smithy_client._json)(body);
|
|
1967
|
+
const exception = new AccountSuspendedException({
|
|
1968
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
1969
|
+
...deserialized
|
|
1970
|
+
});
|
|
1971
|
+
return (0, import_smithy_client.decorateServiceException)(exception, body);
|
|
1972
|
+
}, "de_AccountSuspendedExceptionRes");
|
|
1709
1973
|
var de_InvalidInputExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1710
1974
|
const body = parsedOutput.body;
|
|
1711
1975
|
const deserialized = (0, import_smithy_client._json)(body);
|
|
@@ -1815,6 +2079,12 @@ var de_BatchGetBuildsOutput = /* @__PURE__ */ __name((output, context) => {
|
|
|
1815
2079
|
buildsNotFound: import_smithy_client._json
|
|
1816
2080
|
});
|
|
1817
2081
|
}, "de_BatchGetBuildsOutput");
|
|
2082
|
+
var de_BatchGetCommandExecutionsOutput = /* @__PURE__ */ __name((output, context) => {
|
|
2083
|
+
return (0, import_smithy_client.take)(output, {
|
|
2084
|
+
commandExecutions: /* @__PURE__ */ __name((_) => de_CommandExecutions(_, context), "commandExecutions"),
|
|
2085
|
+
commandExecutionsNotFound: import_smithy_client._json
|
|
2086
|
+
});
|
|
2087
|
+
}, "de_BatchGetCommandExecutionsOutput");
|
|
1818
2088
|
var de_BatchGetFleetsOutput = /* @__PURE__ */ __name((output, context) => {
|
|
1819
2089
|
return (0, import_smithy_client.take)(output, {
|
|
1820
2090
|
fleets: /* @__PURE__ */ __name((_) => de_Fleets(_, context), "fleets"),
|
|
@@ -1839,6 +2109,12 @@ var de_BatchGetReportsOutput = /* @__PURE__ */ __name((output, context) => {
|
|
|
1839
2109
|
reportsNotFound: import_smithy_client._json
|
|
1840
2110
|
});
|
|
1841
2111
|
}, "de_BatchGetReportsOutput");
|
|
2112
|
+
var de_BatchGetSandboxesOutput = /* @__PURE__ */ __name((output, context) => {
|
|
2113
|
+
return (0, import_smithy_client.take)(output, {
|
|
2114
|
+
sandboxes: /* @__PURE__ */ __name((_) => de_Sandboxes(_, context), "sandboxes"),
|
|
2115
|
+
sandboxesNotFound: import_smithy_client._json
|
|
2116
|
+
});
|
|
2117
|
+
}, "de_BatchGetSandboxesOutput");
|
|
1842
2118
|
var de_Build = /* @__PURE__ */ __name((output, context) => {
|
|
1843
2119
|
return (0, import_smithy_client.take)(output, {
|
|
1844
2120
|
arn: import_smithy_client.expectString,
|
|
@@ -2015,6 +2291,29 @@ var de_CodeCoverages = /* @__PURE__ */ __name((output, context) => {
|
|
|
2015
2291
|
});
|
|
2016
2292
|
return retVal;
|
|
2017
2293
|
}, "de_CodeCoverages");
|
|
2294
|
+
var de_CommandExecution = /* @__PURE__ */ __name((output, context) => {
|
|
2295
|
+
return (0, import_smithy_client.take)(output, {
|
|
2296
|
+
command: import_smithy_client.expectString,
|
|
2297
|
+
endTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "endTime"),
|
|
2298
|
+
exitCode: import_smithy_client.expectString,
|
|
2299
|
+
id: import_smithy_client.expectString,
|
|
2300
|
+
logs: import_smithy_client._json,
|
|
2301
|
+
sandboxArn: import_smithy_client.expectString,
|
|
2302
|
+
sandboxId: import_smithy_client.expectString,
|
|
2303
|
+
standardErrContent: import_smithy_client.expectString,
|
|
2304
|
+
standardOutputContent: import_smithy_client.expectString,
|
|
2305
|
+
startTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "startTime"),
|
|
2306
|
+
status: import_smithy_client.expectString,
|
|
2307
|
+
submitTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "submitTime"),
|
|
2308
|
+
type: import_smithy_client.expectString
|
|
2309
|
+
});
|
|
2310
|
+
}, "de_CommandExecution");
|
|
2311
|
+
var de_CommandExecutions = /* @__PURE__ */ __name((output, context) => {
|
|
2312
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
2313
|
+
return de_CommandExecution(entry, context);
|
|
2314
|
+
});
|
|
2315
|
+
return retVal;
|
|
2316
|
+
}, "de_CommandExecutions");
|
|
2018
2317
|
var de_CreateFleetOutput = /* @__PURE__ */ __name((output, context) => {
|
|
2019
2318
|
return (0, import_smithy_client.take)(output, {
|
|
2020
2319
|
fleet: /* @__PURE__ */ __name((_) => de_Fleet(_, context), "fleet")
|
|
@@ -2074,6 +2373,12 @@ var de_Fleets = /* @__PURE__ */ __name((output, context) => {
|
|
|
2074
2373
|
});
|
|
2075
2374
|
return retVal;
|
|
2076
2375
|
}, "de_Fleets");
|
|
2376
|
+
var de_ListCommandExecutionsForSandboxOutput = /* @__PURE__ */ __name((output, context) => {
|
|
2377
|
+
return (0, import_smithy_client.take)(output, {
|
|
2378
|
+
commandExecutions: /* @__PURE__ */ __name((_) => de_CommandExecutions(_, context), "commandExecutions"),
|
|
2379
|
+
nextToken: import_smithy_client.expectString
|
|
2380
|
+
});
|
|
2381
|
+
}, "de_ListCommandExecutionsForSandboxOutput");
|
|
2077
2382
|
var de_Project = /* @__PURE__ */ __name((output, context) => {
|
|
2078
2383
|
return (0, import_smithy_client.take)(output, {
|
|
2079
2384
|
arn: import_smithy_client.expectString,
|
|
@@ -2163,6 +2468,65 @@ var de_RetryBuildOutput = /* @__PURE__ */ __name((output, context) => {
|
|
|
2163
2468
|
build: /* @__PURE__ */ __name((_) => de_Build(_, context), "build")
|
|
2164
2469
|
});
|
|
2165
2470
|
}, "de_RetryBuildOutput");
|
|
2471
|
+
var de_Sandbox = /* @__PURE__ */ __name((output, context) => {
|
|
2472
|
+
return (0, import_smithy_client.take)(output, {
|
|
2473
|
+
arn: import_smithy_client.expectString,
|
|
2474
|
+
currentSession: /* @__PURE__ */ __name((_) => de_SandboxSession(_, context), "currentSession"),
|
|
2475
|
+
encryptionKey: import_smithy_client.expectString,
|
|
2476
|
+
endTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "endTime"),
|
|
2477
|
+
environment: import_smithy_client._json,
|
|
2478
|
+
fileSystemLocations: import_smithy_client._json,
|
|
2479
|
+
id: import_smithy_client.expectString,
|
|
2480
|
+
logConfig: import_smithy_client._json,
|
|
2481
|
+
projectName: import_smithy_client.expectString,
|
|
2482
|
+
queuedTimeoutInMinutes: import_smithy_client.expectInt32,
|
|
2483
|
+
requestTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "requestTime"),
|
|
2484
|
+
secondarySourceVersions: import_smithy_client._json,
|
|
2485
|
+
secondarySources: import_smithy_client._json,
|
|
2486
|
+
serviceRole: import_smithy_client.expectString,
|
|
2487
|
+
source: import_smithy_client._json,
|
|
2488
|
+
sourceVersion: import_smithy_client.expectString,
|
|
2489
|
+
startTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "startTime"),
|
|
2490
|
+
status: import_smithy_client.expectString,
|
|
2491
|
+
timeoutInMinutes: import_smithy_client.expectInt32,
|
|
2492
|
+
vpcConfig: import_smithy_client._json
|
|
2493
|
+
});
|
|
2494
|
+
}, "de_Sandbox");
|
|
2495
|
+
var de_Sandboxes = /* @__PURE__ */ __name((output, context) => {
|
|
2496
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
2497
|
+
return de_Sandbox(entry, context);
|
|
2498
|
+
});
|
|
2499
|
+
return retVal;
|
|
2500
|
+
}, "de_Sandboxes");
|
|
2501
|
+
var de_SandboxSession = /* @__PURE__ */ __name((output, context) => {
|
|
2502
|
+
return (0, import_smithy_client.take)(output, {
|
|
2503
|
+
currentPhase: import_smithy_client.expectString,
|
|
2504
|
+
endTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "endTime"),
|
|
2505
|
+
id: import_smithy_client.expectString,
|
|
2506
|
+
logs: import_smithy_client._json,
|
|
2507
|
+
networkInterface: import_smithy_client._json,
|
|
2508
|
+
phases: /* @__PURE__ */ __name((_) => de_SandboxSessionPhases(_, context), "phases"),
|
|
2509
|
+
resolvedSourceVersion: import_smithy_client.expectString,
|
|
2510
|
+
startTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "startTime"),
|
|
2511
|
+
status: import_smithy_client.expectString
|
|
2512
|
+
});
|
|
2513
|
+
}, "de_SandboxSession");
|
|
2514
|
+
var de_SandboxSessionPhase = /* @__PURE__ */ __name((output, context) => {
|
|
2515
|
+
return (0, import_smithy_client.take)(output, {
|
|
2516
|
+
contexts: import_smithy_client._json,
|
|
2517
|
+
durationInSeconds: import_smithy_client.expectLong,
|
|
2518
|
+
endTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "endTime"),
|
|
2519
|
+
phaseStatus: import_smithy_client.expectString,
|
|
2520
|
+
phaseType: import_smithy_client.expectString,
|
|
2521
|
+
startTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "startTime")
|
|
2522
|
+
});
|
|
2523
|
+
}, "de_SandboxSessionPhase");
|
|
2524
|
+
var de_SandboxSessionPhases = /* @__PURE__ */ __name((output, context) => {
|
|
2525
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
2526
|
+
return de_SandboxSessionPhase(entry, context);
|
|
2527
|
+
});
|
|
2528
|
+
return retVal;
|
|
2529
|
+
}, "de_SandboxSessionPhases");
|
|
2166
2530
|
var de_ScalingConfigurationOutput = /* @__PURE__ */ __name((output, context) => {
|
|
2167
2531
|
return (0, import_smithy_client.take)(output, {
|
|
2168
2532
|
desiredCapacity: import_smithy_client.expectInt32,
|
|
@@ -2181,6 +2545,16 @@ var de_StartBuildOutput = /* @__PURE__ */ __name((output, context) => {
|
|
|
2181
2545
|
build: /* @__PURE__ */ __name((_) => de_Build(_, context), "build")
|
|
2182
2546
|
});
|
|
2183
2547
|
}, "de_StartBuildOutput");
|
|
2548
|
+
var de_StartCommandExecutionOutput = /* @__PURE__ */ __name((output, context) => {
|
|
2549
|
+
return (0, import_smithy_client.take)(output, {
|
|
2550
|
+
commandExecution: /* @__PURE__ */ __name((_) => de_CommandExecution(_, context), "commandExecution")
|
|
2551
|
+
});
|
|
2552
|
+
}, "de_StartCommandExecutionOutput");
|
|
2553
|
+
var de_StartSandboxOutput = /* @__PURE__ */ __name((output, context) => {
|
|
2554
|
+
return (0, import_smithy_client.take)(output, {
|
|
2555
|
+
sandbox: /* @__PURE__ */ __name((_) => de_Sandbox(_, context), "sandbox")
|
|
2556
|
+
});
|
|
2557
|
+
}, "de_StartSandboxOutput");
|
|
2184
2558
|
var de_StopBuildBatchOutput = /* @__PURE__ */ __name((output, context) => {
|
|
2185
2559
|
return (0, import_smithy_client.take)(output, {
|
|
2186
2560
|
buildBatch: /* @__PURE__ */ __name((_) => de_BuildBatch(_, context), "buildBatch")
|
|
@@ -2191,6 +2565,11 @@ var de_StopBuildOutput = /* @__PURE__ */ __name((output, context) => {
|
|
|
2191
2565
|
build: /* @__PURE__ */ __name((_) => de_Build(_, context), "build")
|
|
2192
2566
|
});
|
|
2193
2567
|
}, "de_StopBuildOutput");
|
|
2568
|
+
var de_StopSandboxOutput = /* @__PURE__ */ __name((output, context) => {
|
|
2569
|
+
return (0, import_smithy_client.take)(output, {
|
|
2570
|
+
sandbox: /* @__PURE__ */ __name((_) => de_Sandbox(_, context), "sandbox")
|
|
2571
|
+
});
|
|
2572
|
+
}, "de_StopSandboxOutput");
|
|
2194
2573
|
var de_TargetTrackingScalingConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
2195
2574
|
return (0, import_smithy_client.take)(output, {
|
|
2196
2575
|
metricType: import_smithy_client.expectString,
|
|
@@ -2332,6 +2711,21 @@ var BatchGetBuildsCommand = class extends import_smithy_client.Command.classBuil
|
|
|
2332
2711
|
}
|
|
2333
2712
|
};
|
|
2334
2713
|
|
|
2714
|
+
// src/commands/BatchGetCommandExecutionsCommand.ts
|
|
2715
|
+
|
|
2716
|
+
|
|
2717
|
+
|
|
2718
|
+
var BatchGetCommandExecutionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2719
|
+
return [
|
|
2720
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2721
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2722
|
+
];
|
|
2723
|
+
}).s("CodeBuild_20161006", "BatchGetCommandExecutions", {}).n("CodeBuildClient", "BatchGetCommandExecutionsCommand").f(void 0, BatchGetCommandExecutionsOutputFilterSensitiveLog).ser(se_BatchGetCommandExecutionsCommand).de(de_BatchGetCommandExecutionsCommand).build() {
|
|
2724
|
+
static {
|
|
2725
|
+
__name(this, "BatchGetCommandExecutionsCommand");
|
|
2726
|
+
}
|
|
2727
|
+
};
|
|
2728
|
+
|
|
2335
2729
|
// src/commands/BatchGetFleetsCommand.ts
|
|
2336
2730
|
|
|
2337
2731
|
|
|
@@ -2392,6 +2786,21 @@ var BatchGetReportsCommand = class extends import_smithy_client.Command.classBui
|
|
|
2392
2786
|
}
|
|
2393
2787
|
};
|
|
2394
2788
|
|
|
2789
|
+
// src/commands/BatchGetSandboxesCommand.ts
|
|
2790
|
+
|
|
2791
|
+
|
|
2792
|
+
|
|
2793
|
+
var BatchGetSandboxesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2794
|
+
return [
|
|
2795
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2796
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2797
|
+
];
|
|
2798
|
+
}).s("CodeBuild_20161006", "BatchGetSandboxes", {}).n("CodeBuildClient", "BatchGetSandboxesCommand").f(void 0, void 0).ser(se_BatchGetSandboxesCommand).de(de_BatchGetSandboxesCommand).build() {
|
|
2799
|
+
static {
|
|
2800
|
+
__name(this, "BatchGetSandboxesCommand");
|
|
2801
|
+
}
|
|
2802
|
+
};
|
|
2803
|
+
|
|
2395
2804
|
// src/commands/CreateFleetCommand.ts
|
|
2396
2805
|
|
|
2397
2806
|
|
|
@@ -2722,6 +3131,21 @@ var ListBuildsForProjectCommand = class extends import_smithy_client.Command.cla
|
|
|
2722
3131
|
}
|
|
2723
3132
|
};
|
|
2724
3133
|
|
|
3134
|
+
// src/commands/ListCommandExecutionsForSandboxCommand.ts
|
|
3135
|
+
|
|
3136
|
+
|
|
3137
|
+
|
|
3138
|
+
var ListCommandExecutionsForSandboxCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3139
|
+
return [
|
|
3140
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3141
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3142
|
+
];
|
|
3143
|
+
}).s("CodeBuild_20161006", "ListCommandExecutionsForSandbox", {}).n("CodeBuildClient", "ListCommandExecutionsForSandboxCommand").f(ListCommandExecutionsForSandboxInputFilterSensitiveLog, ListCommandExecutionsForSandboxOutputFilterSensitiveLog).ser(se_ListCommandExecutionsForSandboxCommand).de(de_ListCommandExecutionsForSandboxCommand).build() {
|
|
3144
|
+
static {
|
|
3145
|
+
__name(this, "ListCommandExecutionsForSandboxCommand");
|
|
3146
|
+
}
|
|
3147
|
+
};
|
|
3148
|
+
|
|
2725
3149
|
// src/commands/ListCuratedEnvironmentImagesCommand.ts
|
|
2726
3150
|
|
|
2727
3151
|
|
|
@@ -2812,6 +3236,36 @@ var ListReportsForReportGroupCommand = class extends import_smithy_client.Comman
|
|
|
2812
3236
|
}
|
|
2813
3237
|
};
|
|
2814
3238
|
|
|
3239
|
+
// src/commands/ListSandboxesCommand.ts
|
|
3240
|
+
|
|
3241
|
+
|
|
3242
|
+
|
|
3243
|
+
var ListSandboxesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3244
|
+
return [
|
|
3245
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3246
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3247
|
+
];
|
|
3248
|
+
}).s("CodeBuild_20161006", "ListSandboxes", {}).n("CodeBuildClient", "ListSandboxesCommand").f(void 0, void 0).ser(se_ListSandboxesCommand).de(de_ListSandboxesCommand).build() {
|
|
3249
|
+
static {
|
|
3250
|
+
__name(this, "ListSandboxesCommand");
|
|
3251
|
+
}
|
|
3252
|
+
};
|
|
3253
|
+
|
|
3254
|
+
// src/commands/ListSandboxesForProjectCommand.ts
|
|
3255
|
+
|
|
3256
|
+
|
|
3257
|
+
|
|
3258
|
+
var ListSandboxesForProjectCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3259
|
+
return [
|
|
3260
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3261
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3262
|
+
];
|
|
3263
|
+
}).s("CodeBuild_20161006", "ListSandboxesForProject", {}).n("CodeBuildClient", "ListSandboxesForProjectCommand").f(ListSandboxesForProjectInputFilterSensitiveLog, void 0).ser(se_ListSandboxesForProjectCommand).de(de_ListSandboxesForProjectCommand).build() {
|
|
3264
|
+
static {
|
|
3265
|
+
__name(this, "ListSandboxesForProjectCommand");
|
|
3266
|
+
}
|
|
3267
|
+
};
|
|
3268
|
+
|
|
2815
3269
|
// src/commands/ListSharedProjectsCommand.ts
|
|
2816
3270
|
|
|
2817
3271
|
|
|
@@ -2932,6 +3386,51 @@ var StartBuildCommand = class extends import_smithy_client.Command.classBuilder(
|
|
|
2932
3386
|
}
|
|
2933
3387
|
};
|
|
2934
3388
|
|
|
3389
|
+
// src/commands/StartCommandExecutionCommand.ts
|
|
3390
|
+
|
|
3391
|
+
|
|
3392
|
+
|
|
3393
|
+
var StartCommandExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3394
|
+
return [
|
|
3395
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3396
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3397
|
+
];
|
|
3398
|
+
}).s("CodeBuild_20161006", "StartCommandExecution", {}).n("CodeBuildClient", "StartCommandExecutionCommand").f(StartCommandExecutionInputFilterSensitiveLog, StartCommandExecutionOutputFilterSensitiveLog).ser(se_StartCommandExecutionCommand).de(de_StartCommandExecutionCommand).build() {
|
|
3399
|
+
static {
|
|
3400
|
+
__name(this, "StartCommandExecutionCommand");
|
|
3401
|
+
}
|
|
3402
|
+
};
|
|
3403
|
+
|
|
3404
|
+
// src/commands/StartSandboxCommand.ts
|
|
3405
|
+
|
|
3406
|
+
|
|
3407
|
+
|
|
3408
|
+
var StartSandboxCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3409
|
+
return [
|
|
3410
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3411
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3412
|
+
];
|
|
3413
|
+
}).s("CodeBuild_20161006", "StartSandbox", {}).n("CodeBuildClient", "StartSandboxCommand").f(StartSandboxInputFilterSensitiveLog, void 0).ser(se_StartSandboxCommand).de(de_StartSandboxCommand).build() {
|
|
3414
|
+
static {
|
|
3415
|
+
__name(this, "StartSandboxCommand");
|
|
3416
|
+
}
|
|
3417
|
+
};
|
|
3418
|
+
|
|
3419
|
+
// src/commands/StartSandboxConnectionCommand.ts
|
|
3420
|
+
|
|
3421
|
+
|
|
3422
|
+
|
|
3423
|
+
var StartSandboxConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3424
|
+
return [
|
|
3425
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3426
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3427
|
+
];
|
|
3428
|
+
}).s("CodeBuild_20161006", "StartSandboxConnection", {}).n("CodeBuildClient", "StartSandboxConnectionCommand").f(void 0, void 0).ser(se_StartSandboxConnectionCommand).de(de_StartSandboxConnectionCommand).build() {
|
|
3429
|
+
static {
|
|
3430
|
+
__name(this, "StartSandboxConnectionCommand");
|
|
3431
|
+
}
|
|
3432
|
+
};
|
|
3433
|
+
|
|
2935
3434
|
// src/commands/StopBuildBatchCommand.ts
|
|
2936
3435
|
|
|
2937
3436
|
|
|
@@ -2962,6 +3461,21 @@ var StopBuildCommand = class extends import_smithy_client.Command.classBuilder()
|
|
|
2962
3461
|
}
|
|
2963
3462
|
};
|
|
2964
3463
|
|
|
3464
|
+
// src/commands/StopSandboxCommand.ts
|
|
3465
|
+
|
|
3466
|
+
|
|
3467
|
+
|
|
3468
|
+
var StopSandboxCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3469
|
+
return [
|
|
3470
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3471
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3472
|
+
];
|
|
3473
|
+
}).s("CodeBuild_20161006", "StopSandbox", {}).n("CodeBuildClient", "StopSandboxCommand").f(void 0, void 0).ser(se_StopSandboxCommand).de(de_StopSandboxCommand).build() {
|
|
3474
|
+
static {
|
|
3475
|
+
__name(this, "StopSandboxCommand");
|
|
3476
|
+
}
|
|
3477
|
+
};
|
|
3478
|
+
|
|
2965
3479
|
// src/commands/UpdateFleetCommand.ts
|
|
2966
3480
|
|
|
2967
3481
|
|
|
@@ -3042,10 +3556,12 @@ var commands = {
|
|
|
3042
3556
|
BatchDeleteBuildsCommand,
|
|
3043
3557
|
BatchGetBuildBatchesCommand,
|
|
3044
3558
|
BatchGetBuildsCommand,
|
|
3559
|
+
BatchGetCommandExecutionsCommand,
|
|
3045
3560
|
BatchGetFleetsCommand,
|
|
3046
3561
|
BatchGetProjectsCommand,
|
|
3047
3562
|
BatchGetReportGroupsCommand,
|
|
3048
3563
|
BatchGetReportsCommand,
|
|
3564
|
+
BatchGetSandboxesCommand,
|
|
3049
3565
|
CreateFleetCommand,
|
|
3050
3566
|
CreateProjectCommand,
|
|
3051
3567
|
CreateReportGroupCommand,
|
|
@@ -3068,12 +3584,15 @@ var commands = {
|
|
|
3068
3584
|
ListBuildBatchesForProjectCommand,
|
|
3069
3585
|
ListBuildsCommand,
|
|
3070
3586
|
ListBuildsForProjectCommand,
|
|
3587
|
+
ListCommandExecutionsForSandboxCommand,
|
|
3071
3588
|
ListCuratedEnvironmentImagesCommand,
|
|
3072
3589
|
ListFleetsCommand,
|
|
3073
3590
|
ListProjectsCommand,
|
|
3074
3591
|
ListReportGroupsCommand,
|
|
3075
3592
|
ListReportsCommand,
|
|
3076
3593
|
ListReportsForReportGroupCommand,
|
|
3594
|
+
ListSandboxesCommand,
|
|
3595
|
+
ListSandboxesForProjectCommand,
|
|
3077
3596
|
ListSharedProjectsCommand,
|
|
3078
3597
|
ListSharedReportGroupsCommand,
|
|
3079
3598
|
ListSourceCredentialsCommand,
|
|
@@ -3082,8 +3601,12 @@ var commands = {
|
|
|
3082
3601
|
RetryBuildBatchCommand,
|
|
3083
3602
|
StartBuildCommand,
|
|
3084
3603
|
StartBuildBatchCommand,
|
|
3604
|
+
StartCommandExecutionCommand,
|
|
3605
|
+
StartSandboxCommand,
|
|
3606
|
+
StartSandboxConnectionCommand,
|
|
3085
3607
|
StopBuildCommand,
|
|
3086
3608
|
StopBuildBatchCommand,
|
|
3609
|
+
StopSandboxCommand,
|
|
3087
3610
|
UpdateFleetCommand,
|
|
3088
3611
|
UpdateProjectCommand,
|
|
3089
3612
|
UpdateProjectVisibilityCommand,
|
|
@@ -3121,6 +3644,10 @@ var paginateListBuildsForProject = (0, import_core.createPaginator)(CodeBuildCli
|
|
|
3121
3644
|
|
|
3122
3645
|
var paginateListBuilds = (0, import_core.createPaginator)(CodeBuildClient, ListBuildsCommand, "nextToken", "nextToken", "");
|
|
3123
3646
|
|
|
3647
|
+
// src/pagination/ListCommandExecutionsForSandboxPaginator.ts
|
|
3648
|
+
|
|
3649
|
+
var paginateListCommandExecutionsForSandbox = (0, import_core.createPaginator)(CodeBuildClient, ListCommandExecutionsForSandboxCommand, "nextToken", "nextToken", "maxResults");
|
|
3650
|
+
|
|
3124
3651
|
// src/pagination/ListFleetsPaginator.ts
|
|
3125
3652
|
|
|
3126
3653
|
var paginateListFleets = (0, import_core.createPaginator)(CodeBuildClient, ListFleetsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -3141,6 +3668,14 @@ var paginateListReportsForReportGroup = (0, import_core.createPaginator)(CodeBui
|
|
|
3141
3668
|
|
|
3142
3669
|
var paginateListReports = (0, import_core.createPaginator)(CodeBuildClient, ListReportsCommand, "nextToken", "nextToken", "maxResults");
|
|
3143
3670
|
|
|
3671
|
+
// src/pagination/ListSandboxesForProjectPaginator.ts
|
|
3672
|
+
|
|
3673
|
+
var paginateListSandboxesForProject = (0, import_core.createPaginator)(CodeBuildClient, ListSandboxesForProjectCommand, "nextToken", "nextToken", "maxResults");
|
|
3674
|
+
|
|
3675
|
+
// src/pagination/ListSandboxesPaginator.ts
|
|
3676
|
+
|
|
3677
|
+
var paginateListSandboxes = (0, import_core.createPaginator)(CodeBuildClient, ListSandboxesCommand, "nextToken", "nextToken", "maxResults");
|
|
3678
|
+
|
|
3144
3679
|
// src/pagination/ListSharedProjectsPaginator.ts
|
|
3145
3680
|
|
|
3146
3681
|
var paginateListSharedProjects = (0, import_core.createPaginator)(CodeBuildClient, ListSharedProjectsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -3159,10 +3694,12 @@ var paginateListSharedReportGroups = (0, import_core.createPaginator)(CodeBuildC
|
|
|
3159
3694
|
BatchDeleteBuildsCommand,
|
|
3160
3695
|
BatchGetBuildBatchesCommand,
|
|
3161
3696
|
BatchGetBuildsCommand,
|
|
3697
|
+
BatchGetCommandExecutionsCommand,
|
|
3162
3698
|
BatchGetFleetsCommand,
|
|
3163
3699
|
BatchGetProjectsCommand,
|
|
3164
3700
|
BatchGetReportGroupsCommand,
|
|
3165
3701
|
BatchGetReportsCommand,
|
|
3702
|
+
BatchGetSandboxesCommand,
|
|
3166
3703
|
CreateFleetCommand,
|
|
3167
3704
|
CreateProjectCommand,
|
|
3168
3705
|
CreateReportGroupCommand,
|
|
@@ -3185,12 +3722,15 @@ var paginateListSharedReportGroups = (0, import_core.createPaginator)(CodeBuildC
|
|
|
3185
3722
|
ListBuildBatchesForProjectCommand,
|
|
3186
3723
|
ListBuildsCommand,
|
|
3187
3724
|
ListBuildsForProjectCommand,
|
|
3725
|
+
ListCommandExecutionsForSandboxCommand,
|
|
3188
3726
|
ListCuratedEnvironmentImagesCommand,
|
|
3189
3727
|
ListFleetsCommand,
|
|
3190
3728
|
ListProjectsCommand,
|
|
3191
3729
|
ListReportGroupsCommand,
|
|
3192
3730
|
ListReportsCommand,
|
|
3193
3731
|
ListReportsForReportGroupCommand,
|
|
3732
|
+
ListSandboxesCommand,
|
|
3733
|
+
ListSandboxesForProjectCommand,
|
|
3194
3734
|
ListSharedProjectsCommand,
|
|
3195
3735
|
ListSharedReportGroupsCommand,
|
|
3196
3736
|
ListSourceCredentialsCommand,
|
|
@@ -3199,8 +3739,12 @@ var paginateListSharedReportGroups = (0, import_core.createPaginator)(CodeBuildC
|
|
|
3199
3739
|
RetryBuildCommand,
|
|
3200
3740
|
StartBuildBatchCommand,
|
|
3201
3741
|
StartBuildCommand,
|
|
3742
|
+
StartCommandExecutionCommand,
|
|
3743
|
+
StartSandboxCommand,
|
|
3744
|
+
StartSandboxConnectionCommand,
|
|
3202
3745
|
StopBuildBatchCommand,
|
|
3203
3746
|
StopBuildCommand,
|
|
3747
|
+
StopSandboxCommand,
|
|
3204
3748
|
UpdateFleetCommand,
|
|
3205
3749
|
UpdateProjectCommand,
|
|
3206
3750
|
UpdateProjectVisibilityCommand,
|
|
@@ -3212,14 +3756,18 @@ var paginateListSharedReportGroups = (0, import_core.createPaginator)(CodeBuildC
|
|
|
3212
3756
|
paginateListBuildBatches,
|
|
3213
3757
|
paginateListBuildsForProject,
|
|
3214
3758
|
paginateListBuilds,
|
|
3759
|
+
paginateListCommandExecutionsForSandbox,
|
|
3215
3760
|
paginateListFleets,
|
|
3216
3761
|
paginateListProjects,
|
|
3217
3762
|
paginateListReportGroups,
|
|
3218
3763
|
paginateListReportsForReportGroup,
|
|
3219
3764
|
paginateListReports,
|
|
3765
|
+
paginateListSandboxesForProject,
|
|
3766
|
+
paginateListSandboxes,
|
|
3220
3767
|
paginateListSharedProjects,
|
|
3221
3768
|
paginateListSharedReportGroups,
|
|
3222
3769
|
AccountLimitExceededException,
|
|
3770
|
+
AccountSuspendedException,
|
|
3223
3771
|
ArtifactNamespace,
|
|
3224
3772
|
ArtifactPackaging,
|
|
3225
3773
|
ArtifactsType,
|
|
@@ -3242,6 +3790,7 @@ var paginateListSharedReportGroups = (0, import_core.createPaginator)(CodeBuildC
|
|
|
3242
3790
|
SourceAuthType,
|
|
3243
3791
|
SourceType,
|
|
3244
3792
|
BuildPhaseType,
|
|
3793
|
+
CommandType,
|
|
3245
3794
|
FleetOverflowBehavior,
|
|
3246
3795
|
FleetProxyRuleBehavior,
|
|
3247
3796
|
FleetProxyRuleEffectType,
|
|
@@ -3274,7 +3823,15 @@ var paginateListSharedReportGroups = (0, import_core.createPaginator)(CodeBuildC
|
|
|
3274
3823
|
ReportGroupSortByType,
|
|
3275
3824
|
SharedResourceSortByType,
|
|
3276
3825
|
RetryBuildBatchType,
|
|
3826
|
+
CommandExecutionFilterSensitiveLog,
|
|
3827
|
+
BatchGetCommandExecutionsOutputFilterSensitiveLog,
|
|
3277
3828
|
ImportSourceCredentialsInputFilterSensitiveLog,
|
|
3278
|
-
|
|
3829
|
+
ListCommandExecutionsForSandboxInputFilterSensitiveLog,
|
|
3830
|
+
ListCommandExecutionsForSandboxOutputFilterSensitiveLog,
|
|
3831
|
+
ListFleetsInputFilterSensitiveLog,
|
|
3832
|
+
ListSandboxesForProjectInputFilterSensitiveLog,
|
|
3833
|
+
StartCommandExecutionInputFilterSensitiveLog,
|
|
3834
|
+
StartCommandExecutionOutputFilterSensitiveLog,
|
|
3835
|
+
StartSandboxInputFilterSensitiveLog
|
|
3279
3836
|
});
|
|
3280
3837
|
|