@aws-sdk/client-codebuild 3.782.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 +1 -1
|
@@ -2,7 +2,7 @@ import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody a
|
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
3
3
|
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectString as __expectString, limitedParseDouble as __limitedParseDouble, parseEpochTimestamp as __parseEpochTimestamp, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { CodeBuildServiceException as __BaseException } from "../models/CodeBuildServiceException";
|
|
5
|
-
import { AccountLimitExceededException, InvalidInputException, OAuthProviderException, ResourceAlreadyExistsException, ResourceNotFoundException, } from "../models/models_0";
|
|
5
|
+
import { AccountLimitExceededException, AccountSuspendedException, InvalidInputException, OAuthProviderException, ResourceAlreadyExistsException, ResourceNotFoundException, } from "../models/models_0";
|
|
6
6
|
export const se_BatchDeleteBuildsCommand = async (input, context) => {
|
|
7
7
|
const headers = sharedHeaders("BatchDeleteBuilds");
|
|
8
8
|
let body;
|
|
@@ -21,6 +21,12 @@ export const se_BatchGetBuildsCommand = async (input, context) => {
|
|
|
21
21
|
body = JSON.stringify(_json(input));
|
|
22
22
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
23
23
|
};
|
|
24
|
+
export const se_BatchGetCommandExecutionsCommand = async (input, context) => {
|
|
25
|
+
const headers = sharedHeaders("BatchGetCommandExecutions");
|
|
26
|
+
let body;
|
|
27
|
+
body = JSON.stringify(_json(input));
|
|
28
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
29
|
+
};
|
|
24
30
|
export const se_BatchGetFleetsCommand = async (input, context) => {
|
|
25
31
|
const headers = sharedHeaders("BatchGetFleets");
|
|
26
32
|
let body;
|
|
@@ -45,6 +51,12 @@ export const se_BatchGetReportsCommand = async (input, context) => {
|
|
|
45
51
|
body = JSON.stringify(_json(input));
|
|
46
52
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
47
53
|
};
|
|
54
|
+
export const se_BatchGetSandboxesCommand = async (input, context) => {
|
|
55
|
+
const headers = sharedHeaders("BatchGetSandboxes");
|
|
56
|
+
let body;
|
|
57
|
+
body = JSON.stringify(_json(input));
|
|
58
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
59
|
+
};
|
|
48
60
|
export const se_CreateFleetCommand = async (input, context) => {
|
|
49
61
|
const headers = sharedHeaders("CreateFleet");
|
|
50
62
|
let body;
|
|
@@ -177,6 +189,12 @@ export const se_ListBuildsForProjectCommand = async (input, context) => {
|
|
|
177
189
|
body = JSON.stringify(_json(input));
|
|
178
190
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
179
191
|
};
|
|
192
|
+
export const se_ListCommandExecutionsForSandboxCommand = async (input, context) => {
|
|
193
|
+
const headers = sharedHeaders("ListCommandExecutionsForSandbox");
|
|
194
|
+
let body;
|
|
195
|
+
body = JSON.stringify(_json(input));
|
|
196
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
197
|
+
};
|
|
180
198
|
export const se_ListCuratedEnvironmentImagesCommand = async (input, context) => {
|
|
181
199
|
const headers = sharedHeaders("ListCuratedEnvironmentImages");
|
|
182
200
|
let body;
|
|
@@ -213,6 +231,18 @@ export const se_ListReportsForReportGroupCommand = async (input, context) => {
|
|
|
213
231
|
body = JSON.stringify(_json(input));
|
|
214
232
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
215
233
|
};
|
|
234
|
+
export const se_ListSandboxesCommand = async (input, context) => {
|
|
235
|
+
const headers = sharedHeaders("ListSandboxes");
|
|
236
|
+
let body;
|
|
237
|
+
body = JSON.stringify(_json(input));
|
|
238
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
239
|
+
};
|
|
240
|
+
export const se_ListSandboxesForProjectCommand = async (input, context) => {
|
|
241
|
+
const headers = sharedHeaders("ListSandboxesForProject");
|
|
242
|
+
let body;
|
|
243
|
+
body = JSON.stringify(_json(input));
|
|
244
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
245
|
+
};
|
|
216
246
|
export const se_ListSharedProjectsCommand = async (input, context) => {
|
|
217
247
|
const headers = sharedHeaders("ListSharedProjects");
|
|
218
248
|
let body;
|
|
@@ -261,6 +291,24 @@ export const se_StartBuildBatchCommand = async (input, context) => {
|
|
|
261
291
|
body = JSON.stringify(_json(input));
|
|
262
292
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
263
293
|
};
|
|
294
|
+
export const se_StartCommandExecutionCommand = async (input, context) => {
|
|
295
|
+
const headers = sharedHeaders("StartCommandExecution");
|
|
296
|
+
let body;
|
|
297
|
+
body = JSON.stringify(_json(input));
|
|
298
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
299
|
+
};
|
|
300
|
+
export const se_StartSandboxCommand = async (input, context) => {
|
|
301
|
+
const headers = sharedHeaders("StartSandbox");
|
|
302
|
+
let body;
|
|
303
|
+
body = JSON.stringify(_json(input));
|
|
304
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
305
|
+
};
|
|
306
|
+
export const se_StartSandboxConnectionCommand = async (input, context) => {
|
|
307
|
+
const headers = sharedHeaders("StartSandboxConnection");
|
|
308
|
+
let body;
|
|
309
|
+
body = JSON.stringify(_json(input));
|
|
310
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
311
|
+
};
|
|
264
312
|
export const se_StopBuildCommand = async (input, context) => {
|
|
265
313
|
const headers = sharedHeaders("StopBuild");
|
|
266
314
|
let body;
|
|
@@ -273,6 +321,12 @@ export const se_StopBuildBatchCommand = async (input, context) => {
|
|
|
273
321
|
body = JSON.stringify(_json(input));
|
|
274
322
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
275
323
|
};
|
|
324
|
+
export const se_StopSandboxCommand = async (input, context) => {
|
|
325
|
+
const headers = sharedHeaders("StopSandbox");
|
|
326
|
+
let body;
|
|
327
|
+
body = JSON.stringify(_json(input));
|
|
328
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
329
|
+
};
|
|
276
330
|
export const se_UpdateFleetCommand = async (input, context) => {
|
|
277
331
|
const headers = sharedHeaders("UpdateFleet");
|
|
278
332
|
let body;
|
|
@@ -342,6 +396,19 @@ export const de_BatchGetBuildsCommand = async (output, context) => {
|
|
|
342
396
|
};
|
|
343
397
|
return response;
|
|
344
398
|
};
|
|
399
|
+
export const de_BatchGetCommandExecutionsCommand = async (output, context) => {
|
|
400
|
+
if (output.statusCode >= 300) {
|
|
401
|
+
return de_CommandError(output, context);
|
|
402
|
+
}
|
|
403
|
+
const data = await parseBody(output.body, context);
|
|
404
|
+
let contents = {};
|
|
405
|
+
contents = de_BatchGetCommandExecutionsOutput(data, context);
|
|
406
|
+
const response = {
|
|
407
|
+
$metadata: deserializeMetadata(output),
|
|
408
|
+
...contents,
|
|
409
|
+
};
|
|
410
|
+
return response;
|
|
411
|
+
};
|
|
345
412
|
export const de_BatchGetFleetsCommand = async (output, context) => {
|
|
346
413
|
if (output.statusCode >= 300) {
|
|
347
414
|
return de_CommandError(output, context);
|
|
@@ -394,6 +461,19 @@ export const de_BatchGetReportsCommand = async (output, context) => {
|
|
|
394
461
|
};
|
|
395
462
|
return response;
|
|
396
463
|
};
|
|
464
|
+
export const de_BatchGetSandboxesCommand = async (output, context) => {
|
|
465
|
+
if (output.statusCode >= 300) {
|
|
466
|
+
return de_CommandError(output, context);
|
|
467
|
+
}
|
|
468
|
+
const data = await parseBody(output.body, context);
|
|
469
|
+
let contents = {};
|
|
470
|
+
contents = de_BatchGetSandboxesOutput(data, context);
|
|
471
|
+
const response = {
|
|
472
|
+
$metadata: deserializeMetadata(output),
|
|
473
|
+
...contents,
|
|
474
|
+
};
|
|
475
|
+
return response;
|
|
476
|
+
};
|
|
397
477
|
export const de_CreateFleetCommand = async (output, context) => {
|
|
398
478
|
if (output.statusCode >= 300) {
|
|
399
479
|
return de_CommandError(output, context);
|
|
@@ -680,6 +760,19 @@ export const de_ListBuildsForProjectCommand = async (output, context) => {
|
|
|
680
760
|
};
|
|
681
761
|
return response;
|
|
682
762
|
};
|
|
763
|
+
export const de_ListCommandExecutionsForSandboxCommand = async (output, context) => {
|
|
764
|
+
if (output.statusCode >= 300) {
|
|
765
|
+
return de_CommandError(output, context);
|
|
766
|
+
}
|
|
767
|
+
const data = await parseBody(output.body, context);
|
|
768
|
+
let contents = {};
|
|
769
|
+
contents = de_ListCommandExecutionsForSandboxOutput(data, context);
|
|
770
|
+
const response = {
|
|
771
|
+
$metadata: deserializeMetadata(output),
|
|
772
|
+
...contents,
|
|
773
|
+
};
|
|
774
|
+
return response;
|
|
775
|
+
};
|
|
683
776
|
export const de_ListCuratedEnvironmentImagesCommand = async (output, context) => {
|
|
684
777
|
if (output.statusCode >= 300) {
|
|
685
778
|
return de_CommandError(output, context);
|
|
@@ -758,6 +851,32 @@ export const de_ListReportsForReportGroupCommand = async (output, context) => {
|
|
|
758
851
|
};
|
|
759
852
|
return response;
|
|
760
853
|
};
|
|
854
|
+
export const de_ListSandboxesCommand = async (output, context) => {
|
|
855
|
+
if (output.statusCode >= 300) {
|
|
856
|
+
return de_CommandError(output, context);
|
|
857
|
+
}
|
|
858
|
+
const data = await parseBody(output.body, context);
|
|
859
|
+
let contents = {};
|
|
860
|
+
contents = _json(data);
|
|
861
|
+
const response = {
|
|
862
|
+
$metadata: deserializeMetadata(output),
|
|
863
|
+
...contents,
|
|
864
|
+
};
|
|
865
|
+
return response;
|
|
866
|
+
};
|
|
867
|
+
export const de_ListSandboxesForProjectCommand = async (output, context) => {
|
|
868
|
+
if (output.statusCode >= 300) {
|
|
869
|
+
return de_CommandError(output, context);
|
|
870
|
+
}
|
|
871
|
+
const data = await parseBody(output.body, context);
|
|
872
|
+
let contents = {};
|
|
873
|
+
contents = _json(data);
|
|
874
|
+
const response = {
|
|
875
|
+
$metadata: deserializeMetadata(output),
|
|
876
|
+
...contents,
|
|
877
|
+
};
|
|
878
|
+
return response;
|
|
879
|
+
};
|
|
761
880
|
export const de_ListSharedProjectsCommand = async (output, context) => {
|
|
762
881
|
if (output.statusCode >= 300) {
|
|
763
882
|
return de_CommandError(output, context);
|
|
@@ -862,6 +981,45 @@ export const de_StartBuildBatchCommand = async (output, context) => {
|
|
|
862
981
|
};
|
|
863
982
|
return response;
|
|
864
983
|
};
|
|
984
|
+
export const de_StartCommandExecutionCommand = async (output, context) => {
|
|
985
|
+
if (output.statusCode >= 300) {
|
|
986
|
+
return de_CommandError(output, context);
|
|
987
|
+
}
|
|
988
|
+
const data = await parseBody(output.body, context);
|
|
989
|
+
let contents = {};
|
|
990
|
+
contents = de_StartCommandExecutionOutput(data, context);
|
|
991
|
+
const response = {
|
|
992
|
+
$metadata: deserializeMetadata(output),
|
|
993
|
+
...contents,
|
|
994
|
+
};
|
|
995
|
+
return response;
|
|
996
|
+
};
|
|
997
|
+
export const de_StartSandboxCommand = async (output, context) => {
|
|
998
|
+
if (output.statusCode >= 300) {
|
|
999
|
+
return de_CommandError(output, context);
|
|
1000
|
+
}
|
|
1001
|
+
const data = await parseBody(output.body, context);
|
|
1002
|
+
let contents = {};
|
|
1003
|
+
contents = de_StartSandboxOutput(data, context);
|
|
1004
|
+
const response = {
|
|
1005
|
+
$metadata: deserializeMetadata(output),
|
|
1006
|
+
...contents,
|
|
1007
|
+
};
|
|
1008
|
+
return response;
|
|
1009
|
+
};
|
|
1010
|
+
export const de_StartSandboxConnectionCommand = async (output, context) => {
|
|
1011
|
+
if (output.statusCode >= 300) {
|
|
1012
|
+
return de_CommandError(output, context);
|
|
1013
|
+
}
|
|
1014
|
+
const data = await parseBody(output.body, context);
|
|
1015
|
+
let contents = {};
|
|
1016
|
+
contents = _json(data);
|
|
1017
|
+
const response = {
|
|
1018
|
+
$metadata: deserializeMetadata(output),
|
|
1019
|
+
...contents,
|
|
1020
|
+
};
|
|
1021
|
+
return response;
|
|
1022
|
+
};
|
|
865
1023
|
export const de_StopBuildCommand = async (output, context) => {
|
|
866
1024
|
if (output.statusCode >= 300) {
|
|
867
1025
|
return de_CommandError(output, context);
|
|
@@ -888,6 +1046,19 @@ export const de_StopBuildBatchCommand = async (output, context) => {
|
|
|
888
1046
|
};
|
|
889
1047
|
return response;
|
|
890
1048
|
};
|
|
1049
|
+
export const de_StopSandboxCommand = async (output, context) => {
|
|
1050
|
+
if (output.statusCode >= 300) {
|
|
1051
|
+
return de_CommandError(output, context);
|
|
1052
|
+
}
|
|
1053
|
+
const data = await parseBody(output.body, context);
|
|
1054
|
+
let contents = {};
|
|
1055
|
+
contents = de_StopSandboxOutput(data, context);
|
|
1056
|
+
const response = {
|
|
1057
|
+
$metadata: deserializeMetadata(output),
|
|
1058
|
+
...contents,
|
|
1059
|
+
};
|
|
1060
|
+
return response;
|
|
1061
|
+
};
|
|
891
1062
|
export const de_UpdateFleetCommand = async (output, context) => {
|
|
892
1063
|
if (output.statusCode >= 300) {
|
|
893
1064
|
return de_CommandError(output, context);
|
|
@@ -975,6 +1146,9 @@ const de_CommandError = async (output, context) => {
|
|
|
975
1146
|
case "ResourceNotFoundException":
|
|
976
1147
|
case "com.amazonaws.codebuild#ResourceNotFoundException":
|
|
977
1148
|
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
1149
|
+
case "AccountSuspendedException":
|
|
1150
|
+
case "com.amazonaws.codebuild#AccountSuspendedException":
|
|
1151
|
+
throw await de_AccountSuspendedExceptionRes(parsedOutput, context);
|
|
978
1152
|
default:
|
|
979
1153
|
const parsedBody = parsedOutput.body;
|
|
980
1154
|
return throwDefaultError({
|
|
@@ -993,6 +1167,15 @@ const de_AccountLimitExceededExceptionRes = async (parsedOutput, context) => {
|
|
|
993
1167
|
});
|
|
994
1168
|
return __decorateServiceException(exception, body);
|
|
995
1169
|
};
|
|
1170
|
+
const de_AccountSuspendedExceptionRes = async (parsedOutput, context) => {
|
|
1171
|
+
const body = parsedOutput.body;
|
|
1172
|
+
const deserialized = _json(body);
|
|
1173
|
+
const exception = new AccountSuspendedException({
|
|
1174
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
1175
|
+
...deserialized,
|
|
1176
|
+
});
|
|
1177
|
+
return __decorateServiceException(exception, body);
|
|
1178
|
+
};
|
|
996
1179
|
const de_InvalidInputExceptionRes = async (parsedOutput, context) => {
|
|
997
1180
|
const body = parsedOutput.body;
|
|
998
1181
|
const deserialized = _json(body);
|
|
@@ -1104,6 +1287,12 @@ const de_BatchGetBuildsOutput = (output, context) => {
|
|
|
1104
1287
|
buildsNotFound: _json,
|
|
1105
1288
|
});
|
|
1106
1289
|
};
|
|
1290
|
+
const de_BatchGetCommandExecutionsOutput = (output, context) => {
|
|
1291
|
+
return take(output, {
|
|
1292
|
+
commandExecutions: (_) => de_CommandExecutions(_, context),
|
|
1293
|
+
commandExecutionsNotFound: _json,
|
|
1294
|
+
});
|
|
1295
|
+
};
|
|
1107
1296
|
const de_BatchGetFleetsOutput = (output, context) => {
|
|
1108
1297
|
return take(output, {
|
|
1109
1298
|
fleets: (_) => de_Fleets(_, context),
|
|
@@ -1128,6 +1317,12 @@ const de_BatchGetReportsOutput = (output, context) => {
|
|
|
1128
1317
|
reportsNotFound: _json,
|
|
1129
1318
|
});
|
|
1130
1319
|
};
|
|
1320
|
+
const de_BatchGetSandboxesOutput = (output, context) => {
|
|
1321
|
+
return take(output, {
|
|
1322
|
+
sandboxes: (_) => de_Sandboxes(_, context),
|
|
1323
|
+
sandboxesNotFound: _json,
|
|
1324
|
+
});
|
|
1325
|
+
};
|
|
1131
1326
|
const de_Build = (output, context) => {
|
|
1132
1327
|
return take(output, {
|
|
1133
1328
|
arn: __expectString,
|
|
@@ -1318,6 +1513,31 @@ const de_CodeCoverages = (output, context) => {
|
|
|
1318
1513
|
});
|
|
1319
1514
|
return retVal;
|
|
1320
1515
|
};
|
|
1516
|
+
const de_CommandExecution = (output, context) => {
|
|
1517
|
+
return take(output, {
|
|
1518
|
+
command: __expectString,
|
|
1519
|
+
endTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1520
|
+
exitCode: __expectString,
|
|
1521
|
+
id: __expectString,
|
|
1522
|
+
logs: _json,
|
|
1523
|
+
sandboxArn: __expectString,
|
|
1524
|
+
sandboxId: __expectString,
|
|
1525
|
+
standardErrContent: __expectString,
|
|
1526
|
+
standardOutputContent: __expectString,
|
|
1527
|
+
startTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1528
|
+
status: __expectString,
|
|
1529
|
+
submitTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1530
|
+
type: __expectString,
|
|
1531
|
+
});
|
|
1532
|
+
};
|
|
1533
|
+
const de_CommandExecutions = (output, context) => {
|
|
1534
|
+
const retVal = (output || [])
|
|
1535
|
+
.filter((e) => e != null)
|
|
1536
|
+
.map((entry) => {
|
|
1537
|
+
return de_CommandExecution(entry, context);
|
|
1538
|
+
});
|
|
1539
|
+
return retVal;
|
|
1540
|
+
};
|
|
1321
1541
|
const de_CreateFleetOutput = (output, context) => {
|
|
1322
1542
|
return take(output, {
|
|
1323
1543
|
fleet: (_) => de_Fleet(_, context),
|
|
@@ -1379,6 +1599,12 @@ const de_Fleets = (output, context) => {
|
|
|
1379
1599
|
});
|
|
1380
1600
|
return retVal;
|
|
1381
1601
|
};
|
|
1602
|
+
const de_ListCommandExecutionsForSandboxOutput = (output, context) => {
|
|
1603
|
+
return take(output, {
|
|
1604
|
+
commandExecutions: (_) => de_CommandExecutions(_, context),
|
|
1605
|
+
nextToken: __expectString,
|
|
1606
|
+
});
|
|
1607
|
+
};
|
|
1382
1608
|
const de_Project = (output, context) => {
|
|
1383
1609
|
return take(output, {
|
|
1384
1610
|
arn: __expectString,
|
|
@@ -1474,6 +1700,69 @@ const de_RetryBuildOutput = (output, context) => {
|
|
|
1474
1700
|
build: (_) => de_Build(_, context),
|
|
1475
1701
|
});
|
|
1476
1702
|
};
|
|
1703
|
+
const de_Sandbox = (output, context) => {
|
|
1704
|
+
return take(output, {
|
|
1705
|
+
arn: __expectString,
|
|
1706
|
+
currentSession: (_) => de_SandboxSession(_, context),
|
|
1707
|
+
encryptionKey: __expectString,
|
|
1708
|
+
endTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1709
|
+
environment: _json,
|
|
1710
|
+
fileSystemLocations: _json,
|
|
1711
|
+
id: __expectString,
|
|
1712
|
+
logConfig: _json,
|
|
1713
|
+
projectName: __expectString,
|
|
1714
|
+
queuedTimeoutInMinutes: __expectInt32,
|
|
1715
|
+
requestTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1716
|
+
secondarySourceVersions: _json,
|
|
1717
|
+
secondarySources: _json,
|
|
1718
|
+
serviceRole: __expectString,
|
|
1719
|
+
source: _json,
|
|
1720
|
+
sourceVersion: __expectString,
|
|
1721
|
+
startTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1722
|
+
status: __expectString,
|
|
1723
|
+
timeoutInMinutes: __expectInt32,
|
|
1724
|
+
vpcConfig: _json,
|
|
1725
|
+
});
|
|
1726
|
+
};
|
|
1727
|
+
const de_Sandboxes = (output, context) => {
|
|
1728
|
+
const retVal = (output || [])
|
|
1729
|
+
.filter((e) => e != null)
|
|
1730
|
+
.map((entry) => {
|
|
1731
|
+
return de_Sandbox(entry, context);
|
|
1732
|
+
});
|
|
1733
|
+
return retVal;
|
|
1734
|
+
};
|
|
1735
|
+
const de_SandboxSession = (output, context) => {
|
|
1736
|
+
return take(output, {
|
|
1737
|
+
currentPhase: __expectString,
|
|
1738
|
+
endTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1739
|
+
id: __expectString,
|
|
1740
|
+
logs: _json,
|
|
1741
|
+
networkInterface: _json,
|
|
1742
|
+
phases: (_) => de_SandboxSessionPhases(_, context),
|
|
1743
|
+
resolvedSourceVersion: __expectString,
|
|
1744
|
+
startTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1745
|
+
status: __expectString,
|
|
1746
|
+
});
|
|
1747
|
+
};
|
|
1748
|
+
const de_SandboxSessionPhase = (output, context) => {
|
|
1749
|
+
return take(output, {
|
|
1750
|
+
contexts: _json,
|
|
1751
|
+
durationInSeconds: __expectLong,
|
|
1752
|
+
endTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1753
|
+
phaseStatus: __expectString,
|
|
1754
|
+
phaseType: __expectString,
|
|
1755
|
+
startTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1756
|
+
});
|
|
1757
|
+
};
|
|
1758
|
+
const de_SandboxSessionPhases = (output, context) => {
|
|
1759
|
+
const retVal = (output || [])
|
|
1760
|
+
.filter((e) => e != null)
|
|
1761
|
+
.map((entry) => {
|
|
1762
|
+
return de_SandboxSessionPhase(entry, context);
|
|
1763
|
+
});
|
|
1764
|
+
return retVal;
|
|
1765
|
+
};
|
|
1477
1766
|
const de_ScalingConfigurationOutput = (output, context) => {
|
|
1478
1767
|
return take(output, {
|
|
1479
1768
|
desiredCapacity: __expectInt32,
|
|
@@ -1492,6 +1781,16 @@ const de_StartBuildOutput = (output, context) => {
|
|
|
1492
1781
|
build: (_) => de_Build(_, context),
|
|
1493
1782
|
});
|
|
1494
1783
|
};
|
|
1784
|
+
const de_StartCommandExecutionOutput = (output, context) => {
|
|
1785
|
+
return take(output, {
|
|
1786
|
+
commandExecution: (_) => de_CommandExecution(_, context),
|
|
1787
|
+
});
|
|
1788
|
+
};
|
|
1789
|
+
const de_StartSandboxOutput = (output, context) => {
|
|
1790
|
+
return take(output, {
|
|
1791
|
+
sandbox: (_) => de_Sandbox(_, context),
|
|
1792
|
+
});
|
|
1793
|
+
};
|
|
1495
1794
|
const de_StopBuildBatchOutput = (output, context) => {
|
|
1496
1795
|
return take(output, {
|
|
1497
1796
|
buildBatch: (_) => de_BuildBatch(_, context),
|
|
@@ -1502,6 +1801,11 @@ const de_StopBuildOutput = (output, context) => {
|
|
|
1502
1801
|
build: (_) => de_Build(_, context),
|
|
1503
1802
|
});
|
|
1504
1803
|
};
|
|
1804
|
+
const de_StopSandboxOutput = (output, context) => {
|
|
1805
|
+
return take(output, {
|
|
1806
|
+
sandbox: (_) => de_Sandbox(_, context),
|
|
1807
|
+
});
|
|
1808
|
+
};
|
|
1505
1809
|
const de_TargetTrackingScalingConfiguration = (output, context) => {
|
|
1506
1810
|
return take(output, {
|
|
1507
1811
|
metricType: __expectString,
|
|
@@ -3,10 +3,12 @@ import { CodeBuildClient } from "./CodeBuildClient";
|
|
|
3
3
|
import { BatchDeleteBuildsCommandInput, BatchDeleteBuildsCommandOutput } from "./commands/BatchDeleteBuildsCommand";
|
|
4
4
|
import { BatchGetBuildBatchesCommandInput, BatchGetBuildBatchesCommandOutput } from "./commands/BatchGetBuildBatchesCommand";
|
|
5
5
|
import { BatchGetBuildsCommandInput, BatchGetBuildsCommandOutput } from "./commands/BatchGetBuildsCommand";
|
|
6
|
+
import { BatchGetCommandExecutionsCommandInput, BatchGetCommandExecutionsCommandOutput } from "./commands/BatchGetCommandExecutionsCommand";
|
|
6
7
|
import { BatchGetFleetsCommandInput, BatchGetFleetsCommandOutput } from "./commands/BatchGetFleetsCommand";
|
|
7
8
|
import { BatchGetProjectsCommandInput, BatchGetProjectsCommandOutput } from "./commands/BatchGetProjectsCommand";
|
|
8
9
|
import { BatchGetReportGroupsCommandInput, BatchGetReportGroupsCommandOutput } from "./commands/BatchGetReportGroupsCommand";
|
|
9
10
|
import { BatchGetReportsCommandInput, BatchGetReportsCommandOutput } from "./commands/BatchGetReportsCommand";
|
|
11
|
+
import { BatchGetSandboxesCommandInput, BatchGetSandboxesCommandOutput } from "./commands/BatchGetSandboxesCommand";
|
|
10
12
|
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
11
13
|
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
12
14
|
import { CreateReportGroupCommandInput, CreateReportGroupCommandOutput } from "./commands/CreateReportGroupCommand";
|
|
@@ -29,12 +31,15 @@ import { ListBuildBatchesCommandInput, ListBuildBatchesCommandOutput } from "./c
|
|
|
29
31
|
import { ListBuildBatchesForProjectCommandInput, ListBuildBatchesForProjectCommandOutput } from "./commands/ListBuildBatchesForProjectCommand";
|
|
30
32
|
import { ListBuildsCommandInput, ListBuildsCommandOutput } from "./commands/ListBuildsCommand";
|
|
31
33
|
import { ListBuildsForProjectCommandInput, ListBuildsForProjectCommandOutput } from "./commands/ListBuildsForProjectCommand";
|
|
34
|
+
import { ListCommandExecutionsForSandboxCommandInput, ListCommandExecutionsForSandboxCommandOutput } from "./commands/ListCommandExecutionsForSandboxCommand";
|
|
32
35
|
import { ListCuratedEnvironmentImagesCommandInput, ListCuratedEnvironmentImagesCommandOutput } from "./commands/ListCuratedEnvironmentImagesCommand";
|
|
33
36
|
import { ListFleetsCommandInput, ListFleetsCommandOutput } from "./commands/ListFleetsCommand";
|
|
34
37
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
35
38
|
import { ListReportGroupsCommandInput, ListReportGroupsCommandOutput } from "./commands/ListReportGroupsCommand";
|
|
36
39
|
import { ListReportsCommandInput, ListReportsCommandOutput } from "./commands/ListReportsCommand";
|
|
37
40
|
import { ListReportsForReportGroupCommandInput, ListReportsForReportGroupCommandOutput } from "./commands/ListReportsForReportGroupCommand";
|
|
41
|
+
import { ListSandboxesCommandInput, ListSandboxesCommandOutput } from "./commands/ListSandboxesCommand";
|
|
42
|
+
import { ListSandboxesForProjectCommandInput, ListSandboxesForProjectCommandOutput } from "./commands/ListSandboxesForProjectCommand";
|
|
38
43
|
import { ListSharedProjectsCommandInput, ListSharedProjectsCommandOutput } from "./commands/ListSharedProjectsCommand";
|
|
39
44
|
import { ListSharedReportGroupsCommandInput, ListSharedReportGroupsCommandOutput } from "./commands/ListSharedReportGroupsCommand";
|
|
40
45
|
import { ListSourceCredentialsCommandInput, ListSourceCredentialsCommandOutput } from "./commands/ListSourceCredentialsCommand";
|
|
@@ -43,8 +48,12 @@ import { RetryBuildBatchCommandInput, RetryBuildBatchCommandOutput } from "./com
|
|
|
43
48
|
import { RetryBuildCommandInput, RetryBuildCommandOutput } from "./commands/RetryBuildCommand";
|
|
44
49
|
import { StartBuildBatchCommandInput, StartBuildBatchCommandOutput } from "./commands/StartBuildBatchCommand";
|
|
45
50
|
import { StartBuildCommandInput, StartBuildCommandOutput } from "./commands/StartBuildCommand";
|
|
51
|
+
import { StartCommandExecutionCommandInput, StartCommandExecutionCommandOutput } from "./commands/StartCommandExecutionCommand";
|
|
52
|
+
import { StartSandboxCommandInput, StartSandboxCommandOutput } from "./commands/StartSandboxCommand";
|
|
53
|
+
import { StartSandboxConnectionCommandInput, StartSandboxConnectionCommandOutput } from "./commands/StartSandboxConnectionCommand";
|
|
46
54
|
import { StopBuildBatchCommandInput, StopBuildBatchCommandOutput } from "./commands/StopBuildBatchCommand";
|
|
47
55
|
import { StopBuildCommandInput, StopBuildCommandOutput } from "./commands/StopBuildCommand";
|
|
56
|
+
import { StopSandboxCommandInput, StopSandboxCommandOutput } from "./commands/StopSandboxCommand";
|
|
48
57
|
import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
|
|
49
58
|
import { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
50
59
|
import { UpdateProjectVisibilityCommandInput, UpdateProjectVisibilityCommandOutput } from "./commands/UpdateProjectVisibilityCommand";
|
|
@@ -69,6 +78,12 @@ export interface CodeBuild {
|
|
|
69
78
|
batchGetBuilds(args: BatchGetBuildsCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetBuildsCommandOutput>;
|
|
70
79
|
batchGetBuilds(args: BatchGetBuildsCommandInput, cb: (err: any, data?: BatchGetBuildsCommandOutput) => void): void;
|
|
71
80
|
batchGetBuilds(args: BatchGetBuildsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetBuildsCommandOutput) => void): void;
|
|
81
|
+
/**
|
|
82
|
+
* @see {@link BatchGetCommandExecutionsCommand}
|
|
83
|
+
*/
|
|
84
|
+
batchGetCommandExecutions(args: BatchGetCommandExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetCommandExecutionsCommandOutput>;
|
|
85
|
+
batchGetCommandExecutions(args: BatchGetCommandExecutionsCommandInput, cb: (err: any, data?: BatchGetCommandExecutionsCommandOutput) => void): void;
|
|
86
|
+
batchGetCommandExecutions(args: BatchGetCommandExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetCommandExecutionsCommandOutput) => void): void;
|
|
72
87
|
/**
|
|
73
88
|
* @see {@link BatchGetFleetsCommand}
|
|
74
89
|
*/
|
|
@@ -93,6 +108,12 @@ export interface CodeBuild {
|
|
|
93
108
|
batchGetReports(args: BatchGetReportsCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetReportsCommandOutput>;
|
|
94
109
|
batchGetReports(args: BatchGetReportsCommandInput, cb: (err: any, data?: BatchGetReportsCommandOutput) => void): void;
|
|
95
110
|
batchGetReports(args: BatchGetReportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetReportsCommandOutput) => void): void;
|
|
111
|
+
/**
|
|
112
|
+
* @see {@link BatchGetSandboxesCommand}
|
|
113
|
+
*/
|
|
114
|
+
batchGetSandboxes(args: BatchGetSandboxesCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetSandboxesCommandOutput>;
|
|
115
|
+
batchGetSandboxes(args: BatchGetSandboxesCommandInput, cb: (err: any, data?: BatchGetSandboxesCommandOutput) => void): void;
|
|
116
|
+
batchGetSandboxes(args: BatchGetSandboxesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetSandboxesCommandOutput) => void): void;
|
|
96
117
|
/**
|
|
97
118
|
* @see {@link CreateFleetCommand}
|
|
98
119
|
*/
|
|
@@ -228,6 +249,12 @@ export interface CodeBuild {
|
|
|
228
249
|
listBuildsForProject(args: ListBuildsForProjectCommandInput, options?: __HttpHandlerOptions): Promise<ListBuildsForProjectCommandOutput>;
|
|
229
250
|
listBuildsForProject(args: ListBuildsForProjectCommandInput, cb: (err: any, data?: ListBuildsForProjectCommandOutput) => void): void;
|
|
230
251
|
listBuildsForProject(args: ListBuildsForProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBuildsForProjectCommandOutput) => void): void;
|
|
252
|
+
/**
|
|
253
|
+
* @see {@link ListCommandExecutionsForSandboxCommand}
|
|
254
|
+
*/
|
|
255
|
+
listCommandExecutionsForSandbox(args: ListCommandExecutionsForSandboxCommandInput, options?: __HttpHandlerOptions): Promise<ListCommandExecutionsForSandboxCommandOutput>;
|
|
256
|
+
listCommandExecutionsForSandbox(args: ListCommandExecutionsForSandboxCommandInput, cb: (err: any, data?: ListCommandExecutionsForSandboxCommandOutput) => void): void;
|
|
257
|
+
listCommandExecutionsForSandbox(args: ListCommandExecutionsForSandboxCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCommandExecutionsForSandboxCommandOutput) => void): void;
|
|
231
258
|
/**
|
|
232
259
|
* @see {@link ListCuratedEnvironmentImagesCommand}
|
|
233
260
|
*/
|
|
@@ -269,6 +296,19 @@ export interface CodeBuild {
|
|
|
269
296
|
listReportsForReportGroup(args: ListReportsForReportGroupCommandInput, options?: __HttpHandlerOptions): Promise<ListReportsForReportGroupCommandOutput>;
|
|
270
297
|
listReportsForReportGroup(args: ListReportsForReportGroupCommandInput, cb: (err: any, data?: ListReportsForReportGroupCommandOutput) => void): void;
|
|
271
298
|
listReportsForReportGroup(args: ListReportsForReportGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReportsForReportGroupCommandOutput) => void): void;
|
|
299
|
+
/**
|
|
300
|
+
* @see {@link ListSandboxesCommand}
|
|
301
|
+
*/
|
|
302
|
+
listSandboxes(): Promise<ListSandboxesCommandOutput>;
|
|
303
|
+
listSandboxes(args: ListSandboxesCommandInput, options?: __HttpHandlerOptions): Promise<ListSandboxesCommandOutput>;
|
|
304
|
+
listSandboxes(args: ListSandboxesCommandInput, cb: (err: any, data?: ListSandboxesCommandOutput) => void): void;
|
|
305
|
+
listSandboxes(args: ListSandboxesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSandboxesCommandOutput) => void): void;
|
|
306
|
+
/**
|
|
307
|
+
* @see {@link ListSandboxesForProjectCommand}
|
|
308
|
+
*/
|
|
309
|
+
listSandboxesForProject(args: ListSandboxesForProjectCommandInput, options?: __HttpHandlerOptions): Promise<ListSandboxesForProjectCommandOutput>;
|
|
310
|
+
listSandboxesForProject(args: ListSandboxesForProjectCommandInput, cb: (err: any, data?: ListSandboxesForProjectCommandOutput) => void): void;
|
|
311
|
+
listSandboxesForProject(args: ListSandboxesForProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSandboxesForProjectCommandOutput) => void): void;
|
|
272
312
|
/**
|
|
273
313
|
* @see {@link ListSharedProjectsCommand}
|
|
274
314
|
*/
|
|
@@ -322,6 +362,25 @@ export interface CodeBuild {
|
|
|
322
362
|
startBuildBatch(args: StartBuildBatchCommandInput, options?: __HttpHandlerOptions): Promise<StartBuildBatchCommandOutput>;
|
|
323
363
|
startBuildBatch(args: StartBuildBatchCommandInput, cb: (err: any, data?: StartBuildBatchCommandOutput) => void): void;
|
|
324
364
|
startBuildBatch(args: StartBuildBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBuildBatchCommandOutput) => void): void;
|
|
365
|
+
/**
|
|
366
|
+
* @see {@link StartCommandExecutionCommand}
|
|
367
|
+
*/
|
|
368
|
+
startCommandExecution(args: StartCommandExecutionCommandInput, options?: __HttpHandlerOptions): Promise<StartCommandExecutionCommandOutput>;
|
|
369
|
+
startCommandExecution(args: StartCommandExecutionCommandInput, cb: (err: any, data?: StartCommandExecutionCommandOutput) => void): void;
|
|
370
|
+
startCommandExecution(args: StartCommandExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartCommandExecutionCommandOutput) => void): void;
|
|
371
|
+
/**
|
|
372
|
+
* @see {@link StartSandboxCommand}
|
|
373
|
+
*/
|
|
374
|
+
startSandbox(): Promise<StartSandboxCommandOutput>;
|
|
375
|
+
startSandbox(args: StartSandboxCommandInput, options?: __HttpHandlerOptions): Promise<StartSandboxCommandOutput>;
|
|
376
|
+
startSandbox(args: StartSandboxCommandInput, cb: (err: any, data?: StartSandboxCommandOutput) => void): void;
|
|
377
|
+
startSandbox(args: StartSandboxCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSandboxCommandOutput) => void): void;
|
|
378
|
+
/**
|
|
379
|
+
* @see {@link StartSandboxConnectionCommand}
|
|
380
|
+
*/
|
|
381
|
+
startSandboxConnection(args: StartSandboxConnectionCommandInput, options?: __HttpHandlerOptions): Promise<StartSandboxConnectionCommandOutput>;
|
|
382
|
+
startSandboxConnection(args: StartSandboxConnectionCommandInput, cb: (err: any, data?: StartSandboxConnectionCommandOutput) => void): void;
|
|
383
|
+
startSandboxConnection(args: StartSandboxConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSandboxConnectionCommandOutput) => void): void;
|
|
325
384
|
/**
|
|
326
385
|
* @see {@link StopBuildCommand}
|
|
327
386
|
*/
|
|
@@ -334,6 +393,12 @@ export interface CodeBuild {
|
|
|
334
393
|
stopBuildBatch(args: StopBuildBatchCommandInput, options?: __HttpHandlerOptions): Promise<StopBuildBatchCommandOutput>;
|
|
335
394
|
stopBuildBatch(args: StopBuildBatchCommandInput, cb: (err: any, data?: StopBuildBatchCommandOutput) => void): void;
|
|
336
395
|
stopBuildBatch(args: StopBuildBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopBuildBatchCommandOutput) => void): void;
|
|
396
|
+
/**
|
|
397
|
+
* @see {@link StopSandboxCommand}
|
|
398
|
+
*/
|
|
399
|
+
stopSandbox(args: StopSandboxCommandInput, options?: __HttpHandlerOptions): Promise<StopSandboxCommandOutput>;
|
|
400
|
+
stopSandbox(args: StopSandboxCommandInput, cb: (err: any, data?: StopSandboxCommandOutput) => void): void;
|
|
401
|
+
stopSandbox(args: StopSandboxCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopSandboxCommandOutput) => void): void;
|
|
337
402
|
/**
|
|
338
403
|
* @see {@link UpdateFleetCommand}
|
|
339
404
|
*/
|
|
@@ -10,10 +10,12 @@ import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/
|
|
|
10
10
|
import { BatchDeleteBuildsCommandInput, BatchDeleteBuildsCommandOutput } from "./commands/BatchDeleteBuildsCommand";
|
|
11
11
|
import { BatchGetBuildBatchesCommandInput, BatchGetBuildBatchesCommandOutput } from "./commands/BatchGetBuildBatchesCommand";
|
|
12
12
|
import { BatchGetBuildsCommandInput, BatchGetBuildsCommandOutput } from "./commands/BatchGetBuildsCommand";
|
|
13
|
+
import { BatchGetCommandExecutionsCommandInput, BatchGetCommandExecutionsCommandOutput } from "./commands/BatchGetCommandExecutionsCommand";
|
|
13
14
|
import { BatchGetFleetsCommandInput, BatchGetFleetsCommandOutput } from "./commands/BatchGetFleetsCommand";
|
|
14
15
|
import { BatchGetProjectsCommandInput, BatchGetProjectsCommandOutput } from "./commands/BatchGetProjectsCommand";
|
|
15
16
|
import { BatchGetReportGroupsCommandInput, BatchGetReportGroupsCommandOutput } from "./commands/BatchGetReportGroupsCommand";
|
|
16
17
|
import { BatchGetReportsCommandInput, BatchGetReportsCommandOutput } from "./commands/BatchGetReportsCommand";
|
|
18
|
+
import { BatchGetSandboxesCommandInput, BatchGetSandboxesCommandOutput } from "./commands/BatchGetSandboxesCommand";
|
|
17
19
|
import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
|
|
18
20
|
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "./commands/CreateProjectCommand";
|
|
19
21
|
import { CreateReportGroupCommandInput, CreateReportGroupCommandOutput } from "./commands/CreateReportGroupCommand";
|
|
@@ -36,12 +38,15 @@ import { ListBuildBatchesCommandInput, ListBuildBatchesCommandOutput } from "./c
|
|
|
36
38
|
import { ListBuildBatchesForProjectCommandInput, ListBuildBatchesForProjectCommandOutput } from "./commands/ListBuildBatchesForProjectCommand";
|
|
37
39
|
import { ListBuildsCommandInput, ListBuildsCommandOutput } from "./commands/ListBuildsCommand";
|
|
38
40
|
import { ListBuildsForProjectCommandInput, ListBuildsForProjectCommandOutput } from "./commands/ListBuildsForProjectCommand";
|
|
41
|
+
import { ListCommandExecutionsForSandboxCommandInput, ListCommandExecutionsForSandboxCommandOutput } from "./commands/ListCommandExecutionsForSandboxCommand";
|
|
39
42
|
import { ListCuratedEnvironmentImagesCommandInput, ListCuratedEnvironmentImagesCommandOutput } from "./commands/ListCuratedEnvironmentImagesCommand";
|
|
40
43
|
import { ListFleetsCommandInput, ListFleetsCommandOutput } from "./commands/ListFleetsCommand";
|
|
41
44
|
import { ListProjectsCommandInput, ListProjectsCommandOutput } from "./commands/ListProjectsCommand";
|
|
42
45
|
import { ListReportGroupsCommandInput, ListReportGroupsCommandOutput } from "./commands/ListReportGroupsCommand";
|
|
43
46
|
import { ListReportsCommandInput, ListReportsCommandOutput } from "./commands/ListReportsCommand";
|
|
44
47
|
import { ListReportsForReportGroupCommandInput, ListReportsForReportGroupCommandOutput } from "./commands/ListReportsForReportGroupCommand";
|
|
48
|
+
import { ListSandboxesCommandInput, ListSandboxesCommandOutput } from "./commands/ListSandboxesCommand";
|
|
49
|
+
import { ListSandboxesForProjectCommandInput, ListSandboxesForProjectCommandOutput } from "./commands/ListSandboxesForProjectCommand";
|
|
45
50
|
import { ListSharedProjectsCommandInput, ListSharedProjectsCommandOutput } from "./commands/ListSharedProjectsCommand";
|
|
46
51
|
import { ListSharedReportGroupsCommandInput, ListSharedReportGroupsCommandOutput } from "./commands/ListSharedReportGroupsCommand";
|
|
47
52
|
import { ListSourceCredentialsCommandInput, ListSourceCredentialsCommandOutput } from "./commands/ListSourceCredentialsCommand";
|
|
@@ -50,8 +55,12 @@ import { RetryBuildBatchCommandInput, RetryBuildBatchCommandOutput } from "./com
|
|
|
50
55
|
import { RetryBuildCommandInput, RetryBuildCommandOutput } from "./commands/RetryBuildCommand";
|
|
51
56
|
import { StartBuildBatchCommandInput, StartBuildBatchCommandOutput } from "./commands/StartBuildBatchCommand";
|
|
52
57
|
import { StartBuildCommandInput, StartBuildCommandOutput } from "./commands/StartBuildCommand";
|
|
58
|
+
import { StartCommandExecutionCommandInput, StartCommandExecutionCommandOutput } from "./commands/StartCommandExecutionCommand";
|
|
59
|
+
import { StartSandboxCommandInput, StartSandboxCommandOutput } from "./commands/StartSandboxCommand";
|
|
60
|
+
import { StartSandboxConnectionCommandInput, StartSandboxConnectionCommandOutput } from "./commands/StartSandboxConnectionCommand";
|
|
53
61
|
import { StopBuildBatchCommandInput, StopBuildBatchCommandOutput } from "./commands/StopBuildBatchCommand";
|
|
54
62
|
import { StopBuildCommandInput, StopBuildCommandOutput } from "./commands/StopBuildCommand";
|
|
63
|
+
import { StopSandboxCommandInput, StopSandboxCommandOutput } from "./commands/StopSandboxCommand";
|
|
55
64
|
import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
|
|
56
65
|
import { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "./commands/UpdateProjectCommand";
|
|
57
66
|
import { UpdateProjectVisibilityCommandInput, UpdateProjectVisibilityCommandOutput } from "./commands/UpdateProjectVisibilityCommand";
|
|
@@ -63,11 +72,11 @@ export { __Client };
|
|
|
63
72
|
/**
|
|
64
73
|
* @public
|
|
65
74
|
*/
|
|
66
|
-
export type ServiceInputTypes = BatchDeleteBuildsCommandInput | BatchGetBuildBatchesCommandInput | BatchGetBuildsCommandInput | BatchGetFleetsCommandInput | BatchGetProjectsCommandInput | BatchGetReportGroupsCommandInput | BatchGetReportsCommandInput | CreateFleetCommandInput | CreateProjectCommandInput | CreateReportGroupCommandInput | CreateWebhookCommandInput | DeleteBuildBatchCommandInput | DeleteFleetCommandInput | DeleteProjectCommandInput | DeleteReportCommandInput | DeleteReportGroupCommandInput | DeleteResourcePolicyCommandInput | DeleteSourceCredentialsCommandInput | DeleteWebhookCommandInput | DescribeCodeCoveragesCommandInput | DescribeTestCasesCommandInput | GetReportGroupTrendCommandInput | GetResourcePolicyCommandInput | ImportSourceCredentialsCommandInput | InvalidateProjectCacheCommandInput | ListBuildBatchesCommandInput | ListBuildBatchesForProjectCommandInput | ListBuildsCommandInput | ListBuildsForProjectCommandInput | ListCuratedEnvironmentImagesCommandInput | ListFleetsCommandInput | ListProjectsCommandInput | ListReportGroupsCommandInput | ListReportsCommandInput | ListReportsForReportGroupCommandInput | ListSharedProjectsCommandInput | ListSharedReportGroupsCommandInput | ListSourceCredentialsCommandInput | PutResourcePolicyCommandInput | RetryBuildBatchCommandInput | RetryBuildCommandInput | StartBuildBatchCommandInput | StartBuildCommandInput | StopBuildBatchCommandInput | StopBuildCommandInput | UpdateFleetCommandInput | UpdateProjectCommandInput | UpdateProjectVisibilityCommandInput | UpdateReportGroupCommandInput | UpdateWebhookCommandInput;
|
|
75
|
+
export type ServiceInputTypes = BatchDeleteBuildsCommandInput | BatchGetBuildBatchesCommandInput | BatchGetBuildsCommandInput | BatchGetCommandExecutionsCommandInput | BatchGetFleetsCommandInput | BatchGetProjectsCommandInput | BatchGetReportGroupsCommandInput | BatchGetReportsCommandInput | BatchGetSandboxesCommandInput | CreateFleetCommandInput | CreateProjectCommandInput | CreateReportGroupCommandInput | CreateWebhookCommandInput | DeleteBuildBatchCommandInput | DeleteFleetCommandInput | DeleteProjectCommandInput | DeleteReportCommandInput | DeleteReportGroupCommandInput | DeleteResourcePolicyCommandInput | DeleteSourceCredentialsCommandInput | DeleteWebhookCommandInput | DescribeCodeCoveragesCommandInput | DescribeTestCasesCommandInput | GetReportGroupTrendCommandInput | GetResourcePolicyCommandInput | ImportSourceCredentialsCommandInput | InvalidateProjectCacheCommandInput | ListBuildBatchesCommandInput | ListBuildBatchesForProjectCommandInput | ListBuildsCommandInput | ListBuildsForProjectCommandInput | ListCommandExecutionsForSandboxCommandInput | ListCuratedEnvironmentImagesCommandInput | ListFleetsCommandInput | ListProjectsCommandInput | ListReportGroupsCommandInput | ListReportsCommandInput | ListReportsForReportGroupCommandInput | ListSandboxesCommandInput | ListSandboxesForProjectCommandInput | ListSharedProjectsCommandInput | ListSharedReportGroupsCommandInput | ListSourceCredentialsCommandInput | PutResourcePolicyCommandInput | RetryBuildBatchCommandInput | RetryBuildCommandInput | StartBuildBatchCommandInput | StartBuildCommandInput | StartCommandExecutionCommandInput | StartSandboxCommandInput | StartSandboxConnectionCommandInput | StopBuildBatchCommandInput | StopBuildCommandInput | StopSandboxCommandInput | UpdateFleetCommandInput | UpdateProjectCommandInput | UpdateProjectVisibilityCommandInput | UpdateReportGroupCommandInput | UpdateWebhookCommandInput;
|
|
67
76
|
/**
|
|
68
77
|
* @public
|
|
69
78
|
*/
|
|
70
|
-
export type ServiceOutputTypes = BatchDeleteBuildsCommandOutput | BatchGetBuildBatchesCommandOutput | BatchGetBuildsCommandOutput | BatchGetFleetsCommandOutput | BatchGetProjectsCommandOutput | BatchGetReportGroupsCommandOutput | BatchGetReportsCommandOutput | CreateFleetCommandOutput | CreateProjectCommandOutput | CreateReportGroupCommandOutput | CreateWebhookCommandOutput | DeleteBuildBatchCommandOutput | DeleteFleetCommandOutput | DeleteProjectCommandOutput | DeleteReportCommandOutput | DeleteReportGroupCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSourceCredentialsCommandOutput | DeleteWebhookCommandOutput | DescribeCodeCoveragesCommandOutput | DescribeTestCasesCommandOutput | GetReportGroupTrendCommandOutput | GetResourcePolicyCommandOutput | ImportSourceCredentialsCommandOutput | InvalidateProjectCacheCommandOutput | ListBuildBatchesCommandOutput | ListBuildBatchesForProjectCommandOutput | ListBuildsCommandOutput | ListBuildsForProjectCommandOutput | ListCuratedEnvironmentImagesCommandOutput | ListFleetsCommandOutput | ListProjectsCommandOutput | ListReportGroupsCommandOutput | ListReportsCommandOutput | ListReportsForReportGroupCommandOutput | ListSharedProjectsCommandOutput | ListSharedReportGroupsCommandOutput | ListSourceCredentialsCommandOutput | PutResourcePolicyCommandOutput | RetryBuildBatchCommandOutput | RetryBuildCommandOutput | StartBuildBatchCommandOutput | StartBuildCommandOutput | StopBuildBatchCommandOutput | StopBuildCommandOutput | UpdateFleetCommandOutput | UpdateProjectCommandOutput | UpdateProjectVisibilityCommandOutput | UpdateReportGroupCommandOutput | UpdateWebhookCommandOutput;
|
|
79
|
+
export type ServiceOutputTypes = BatchDeleteBuildsCommandOutput | BatchGetBuildBatchesCommandOutput | BatchGetBuildsCommandOutput | BatchGetCommandExecutionsCommandOutput | BatchGetFleetsCommandOutput | BatchGetProjectsCommandOutput | BatchGetReportGroupsCommandOutput | BatchGetReportsCommandOutput | BatchGetSandboxesCommandOutput | CreateFleetCommandOutput | CreateProjectCommandOutput | CreateReportGroupCommandOutput | CreateWebhookCommandOutput | DeleteBuildBatchCommandOutput | DeleteFleetCommandOutput | DeleteProjectCommandOutput | DeleteReportCommandOutput | DeleteReportGroupCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSourceCredentialsCommandOutput | DeleteWebhookCommandOutput | DescribeCodeCoveragesCommandOutput | DescribeTestCasesCommandOutput | GetReportGroupTrendCommandOutput | GetResourcePolicyCommandOutput | ImportSourceCredentialsCommandOutput | InvalidateProjectCacheCommandOutput | ListBuildBatchesCommandOutput | ListBuildBatchesForProjectCommandOutput | ListBuildsCommandOutput | ListBuildsForProjectCommandOutput | ListCommandExecutionsForSandboxCommandOutput | ListCuratedEnvironmentImagesCommandOutput | ListFleetsCommandOutput | ListProjectsCommandOutput | ListReportGroupsCommandOutput | ListReportsCommandOutput | ListReportsForReportGroupCommandOutput | ListSandboxesCommandOutput | ListSandboxesForProjectCommandOutput | ListSharedProjectsCommandOutput | ListSharedReportGroupsCommandOutput | ListSourceCredentialsCommandOutput | PutResourcePolicyCommandOutput | RetryBuildBatchCommandOutput | RetryBuildCommandOutput | StartBuildBatchCommandOutput | StartBuildCommandOutput | StartCommandExecutionCommandOutput | StartSandboxCommandOutput | StartSandboxConnectionCommandOutput | StopBuildBatchCommandOutput | StopBuildCommandOutput | StopSandboxCommandOutput | UpdateFleetCommandOutput | UpdateProjectCommandOutput | UpdateProjectVisibilityCommandOutput | UpdateReportGroupCommandOutput | UpdateWebhookCommandOutput;
|
|
71
80
|
/**
|
|
72
81
|
* @public
|
|
73
82
|
*/
|