@aws-sdk/client-codebuild 3.186.0 → 3.188.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.
Files changed (69) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/CodeBuild.js +182 -189
  3. package/dist-es/CodeBuildClient.js +22 -28
  4. package/dist-es/commands/BatchDeleteBuildsCommand.js +21 -28
  5. package/dist-es/commands/BatchGetBuildBatchesCommand.js +21 -28
  6. package/dist-es/commands/BatchGetBuildsCommand.js +21 -28
  7. package/dist-es/commands/BatchGetProjectsCommand.js +21 -28
  8. package/dist-es/commands/BatchGetReportGroupsCommand.js +21 -28
  9. package/dist-es/commands/BatchGetReportsCommand.js +21 -28
  10. package/dist-es/commands/CreateProjectCommand.js +21 -28
  11. package/dist-es/commands/CreateReportGroupCommand.js +21 -28
  12. package/dist-es/commands/CreateWebhookCommand.js +21 -28
  13. package/dist-es/commands/DeleteBuildBatchCommand.js +21 -28
  14. package/dist-es/commands/DeleteProjectCommand.js +21 -28
  15. package/dist-es/commands/DeleteReportCommand.js +21 -28
  16. package/dist-es/commands/DeleteReportGroupCommand.js +21 -28
  17. package/dist-es/commands/DeleteResourcePolicyCommand.js +21 -28
  18. package/dist-es/commands/DeleteSourceCredentialsCommand.js +21 -28
  19. package/dist-es/commands/DeleteWebhookCommand.js +21 -28
  20. package/dist-es/commands/DescribeCodeCoveragesCommand.js +21 -28
  21. package/dist-es/commands/DescribeTestCasesCommand.js +21 -28
  22. package/dist-es/commands/GetReportGroupTrendCommand.js +21 -28
  23. package/dist-es/commands/GetResourcePolicyCommand.js +21 -28
  24. package/dist-es/commands/ImportSourceCredentialsCommand.js +21 -28
  25. package/dist-es/commands/InvalidateProjectCacheCommand.js +21 -28
  26. package/dist-es/commands/ListBuildBatchesCommand.js +21 -28
  27. package/dist-es/commands/ListBuildBatchesForProjectCommand.js +21 -28
  28. package/dist-es/commands/ListBuildsCommand.js +21 -28
  29. package/dist-es/commands/ListBuildsForProjectCommand.js +21 -28
  30. package/dist-es/commands/ListCuratedEnvironmentImagesCommand.js +21 -28
  31. package/dist-es/commands/ListProjectsCommand.js +21 -28
  32. package/dist-es/commands/ListReportGroupsCommand.js +21 -28
  33. package/dist-es/commands/ListReportsCommand.js +21 -28
  34. package/dist-es/commands/ListReportsForReportGroupCommand.js +21 -28
  35. package/dist-es/commands/ListSharedProjectsCommand.js +21 -28
  36. package/dist-es/commands/ListSharedReportGroupsCommand.js +21 -28
  37. package/dist-es/commands/ListSourceCredentialsCommand.js +21 -28
  38. package/dist-es/commands/PutResourcePolicyCommand.js +21 -28
  39. package/dist-es/commands/RetryBuildBatchCommand.js +21 -28
  40. package/dist-es/commands/RetryBuildCommand.js +21 -28
  41. package/dist-es/commands/StartBuildBatchCommand.js +21 -28
  42. package/dist-es/commands/StartBuildCommand.js +21 -28
  43. package/dist-es/commands/StopBuildBatchCommand.js +21 -28
  44. package/dist-es/commands/StopBuildCommand.js +21 -28
  45. package/dist-es/commands/UpdateProjectCommand.js +21 -28
  46. package/dist-es/commands/UpdateProjectVisibilityCommand.js +21 -28
  47. package/dist-es/commands/UpdateReportGroupCommand.js +21 -28
  48. package/dist-es/commands/UpdateWebhookCommand.js +21 -28
  49. package/dist-es/endpoints.js +8 -8
  50. package/dist-es/models/CodeBuildServiceException.js +5 -10
  51. package/dist-es/models/models_0.js +485 -199
  52. package/dist-es/pagination/DescribeCodeCoveragesPaginator.js +25 -68
  53. package/dist-es/pagination/DescribeTestCasesPaginator.js +25 -68
  54. package/dist-es/pagination/ListBuildBatchesForProjectPaginator.js +25 -68
  55. package/dist-es/pagination/ListBuildBatchesPaginator.js +25 -68
  56. package/dist-es/pagination/ListBuildsForProjectPaginator.js +24 -67
  57. package/dist-es/pagination/ListBuildsPaginator.js +24 -67
  58. package/dist-es/pagination/ListProjectsPaginator.js +24 -67
  59. package/dist-es/pagination/ListReportGroupsPaginator.js +25 -68
  60. package/dist-es/pagination/ListReportsForReportGroupPaginator.js +25 -68
  61. package/dist-es/pagination/ListReportsPaginator.js +25 -68
  62. package/dist-es/pagination/ListSharedProjectsPaginator.js +25 -68
  63. package/dist-es/pagination/ListSharedReportGroupsPaginator.js +25 -68
  64. package/dist-es/protocols/Aws_json1_1.js +3001 -3597
  65. package/dist-es/runtimeConfig.browser.js +26 -12
  66. package/dist-es/runtimeConfig.js +30 -12
  67. package/dist-es/runtimeConfig.native.js +8 -5
  68. package/dist-es/runtimeConfig.shared.js +8 -11
  69. package/package.json +33 -33
@@ -1,18 +1,17 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
2
  import { CodeBuildServiceException as __BaseException } from "./CodeBuildServiceException";
4
- var AccountLimitExceededException = (function (_super) {
5
- __extends(AccountLimitExceededException, _super);
6
- function AccountLimitExceededException(opts) {
7
- var _this = _super.call(this, __assign({ name: "AccountLimitExceededException", $fault: "client" }, opts)) || this;
8
- _this.name = "AccountLimitExceededException";
9
- _this.$fault = "client";
10
- Object.setPrototypeOf(_this, AccountLimitExceededException.prototype);
11
- return _this;
3
+ export class AccountLimitExceededException extends __BaseException {
4
+ constructor(opts) {
5
+ super({
6
+ name: "AccountLimitExceededException",
7
+ $fault: "client",
8
+ ...opts,
9
+ });
10
+ this.name = "AccountLimitExceededException";
11
+ this.$fault = "client";
12
+ Object.setPrototypeOf(this, AccountLimitExceededException.prototype);
12
13
  }
13
- return AccountLimitExceededException;
14
- }(__BaseException));
15
- export { AccountLimitExceededException };
14
+ }
16
15
  export var ArtifactNamespace;
17
16
  (function (ArtifactNamespace) {
18
17
  ArtifactNamespace["BUILD_ID"] = "BUILD_ID";
@@ -35,18 +34,18 @@ export var AuthType;
35
34
  AuthType["OAUTH"] = "OAUTH";
36
35
  AuthType["PERSONAL_ACCESS_TOKEN"] = "PERSONAL_ACCESS_TOKEN";
37
36
  })(AuthType || (AuthType = {}));
38
- var InvalidInputException = (function (_super) {
39
- __extends(InvalidInputException, _super);
40
- function InvalidInputException(opts) {
41
- var _this = _super.call(this, __assign({ name: "InvalidInputException", $fault: "client" }, opts)) || this;
42
- _this.name = "InvalidInputException";
43
- _this.$fault = "client";
44
- Object.setPrototypeOf(_this, InvalidInputException.prototype);
45
- return _this;
37
+ export class InvalidInputException extends __BaseException {
38
+ constructor(opts) {
39
+ super({
40
+ name: "InvalidInputException",
41
+ $fault: "client",
42
+ ...opts,
43
+ });
44
+ this.name = "InvalidInputException";
45
+ this.$fault = "client";
46
+ Object.setPrototypeOf(this, InvalidInputException.prototype);
46
47
  }
47
- return InvalidInputException;
48
- }(__BaseException));
49
- export { InvalidInputException };
48
+ }
50
49
  export var BucketOwnerAccess;
51
50
  (function (BucketOwnerAccess) {
52
51
  BucketOwnerAccess["FULL"] = "FULL";
@@ -203,42 +202,42 @@ export var ReportStatusType;
203
202
  ReportStatusType["INCOMPLETE"] = "INCOMPLETE";
204
203
  ReportStatusType["SUCCEEDED"] = "SUCCEEDED";
205
204
  })(ReportStatusType || (ReportStatusType = {}));
206
- var ResourceAlreadyExistsException = (function (_super) {
207
- __extends(ResourceAlreadyExistsException, _super);
208
- function ResourceAlreadyExistsException(opts) {
209
- var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
210
- _this.name = "ResourceAlreadyExistsException";
211
- _this.$fault = "client";
212
- Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
213
- return _this;
205
+ export class ResourceAlreadyExistsException extends __BaseException {
206
+ constructor(opts) {
207
+ super({
208
+ name: "ResourceAlreadyExistsException",
209
+ $fault: "client",
210
+ ...opts,
211
+ });
212
+ this.name = "ResourceAlreadyExistsException";
213
+ this.$fault = "client";
214
+ Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
214
215
  }
215
- return ResourceAlreadyExistsException;
216
- }(__BaseException));
217
- export { ResourceAlreadyExistsException };
218
- var OAuthProviderException = (function (_super) {
219
- __extends(OAuthProviderException, _super);
220
- function OAuthProviderException(opts) {
221
- var _this = _super.call(this, __assign({ name: "OAuthProviderException", $fault: "client" }, opts)) || this;
222
- _this.name = "OAuthProviderException";
223
- _this.$fault = "client";
224
- Object.setPrototypeOf(_this, OAuthProviderException.prototype);
225
- return _this;
216
+ }
217
+ export class OAuthProviderException extends __BaseException {
218
+ constructor(opts) {
219
+ super({
220
+ name: "OAuthProviderException",
221
+ $fault: "client",
222
+ ...opts,
223
+ });
224
+ this.name = "OAuthProviderException";
225
+ this.$fault = "client";
226
+ Object.setPrototypeOf(this, OAuthProviderException.prototype);
226
227
  }
227
- return OAuthProviderException;
228
- }(__BaseException));
229
- export { OAuthProviderException };
230
- var ResourceNotFoundException = (function (_super) {
231
- __extends(ResourceNotFoundException, _super);
232
- function ResourceNotFoundException(opts) {
233
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
234
- _this.name = "ResourceNotFoundException";
235
- _this.$fault = "client";
236
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
237
- return _this;
228
+ }
229
+ export class ResourceNotFoundException extends __BaseException {
230
+ constructor(opts) {
231
+ super({
232
+ name: "ResourceNotFoundException",
233
+ $fault: "client",
234
+ ...opts,
235
+ });
236
+ this.name = "ResourceNotFoundException";
237
+ this.$fault = "client";
238
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
238
239
  }
239
- return ResourceNotFoundException;
240
- }(__BaseException));
241
- export { ResourceNotFoundException };
240
+ }
242
241
  export var ReportCodeCoverageSortByType;
243
242
  (function (ReportCodeCoverageSortByType) {
244
243
  ReportCodeCoverageSortByType["FILE_PATH"] = "FILE_PATH";
@@ -309,146 +308,433 @@ export var RetryBuildBatchType;
309
308
  RetryBuildBatchType["RETRY_ALL_BUILDS"] = "RETRY_ALL_BUILDS";
310
309
  RetryBuildBatchType["RETRY_FAILED_BUILDS"] = "RETRY_FAILED_BUILDS";
311
310
  })(RetryBuildBatchType || (RetryBuildBatchType = {}));
312
- export var BatchDeleteBuildsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
313
- export var BuildNotDeletedFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
- export var BatchDeleteBuildsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
315
- export var BatchGetBuildBatchesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
- export var BuildArtifactsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
- export var BatchRestrictionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
- export var ProjectBuildBatchConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
319
- export var ResolvedArtifactFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
320
- export var BuildSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
321
- export var BuildGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
322
- export var ProjectCacheFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
323
- export var EnvironmentVariableFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
324
- export var RegistryCredentialFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
325
- export var ProjectEnvironmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
326
- export var ProjectFileSystemLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
327
- export var CloudWatchLogsConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
328
- export var S3LogsConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
329
- export var LogsConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
330
- export var PhaseContextFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
331
- export var BuildBatchPhaseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
332
- export var SourceAuthFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
333
- export var BuildStatusConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
334
- export var GitSubmodulesConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
335
- export var ProjectSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
336
- export var ProjectSourceVersionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
- export var VpcConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
338
- export var BuildBatchFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
339
- export var BatchGetBuildBatchesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
340
- export var BatchGetBuildsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
341
- export var DebugSessionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
- export var ExportedEnvironmentVariableFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
343
- export var LogsLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
344
- export var NetworkInterfaceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
345
- export var BuildPhaseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
346
- export var BuildFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
347
- export var BatchGetBuildsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
348
- export var BatchGetProjectsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
- export var ProjectArtifactsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
- export var ProjectBadgeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
- export var WebhookFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
- export var WebhookFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
- export var ProjectFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
- export var BatchGetProjectsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
- export var BatchGetReportGroupsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
- export var S3ReportExportConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
- export var ReportExportConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
- export var ReportGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
- export var BatchGetReportGroupsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
- export var BatchGetReportsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
362
- export var CodeCoverageReportSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
- export var TestReportSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
- export var ReportFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
- export var BatchGetReportsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
- export var BuildBatchFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
- export var CreateProjectInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
- export var CreateProjectOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
- export var CreateReportGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
- export var CreateReportGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
371
- export var CreateWebhookInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
372
- export var CreateWebhookOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
373
- export var DeleteBuildBatchInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
374
- export var DeleteBuildBatchOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
375
- export var DeleteProjectInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
376
- export var DeleteProjectOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
377
- export var DeleteReportInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
378
- export var DeleteReportOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
379
- export var DeleteReportGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
380
- export var DeleteReportGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
381
- export var DeleteResourcePolicyInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
382
- export var DeleteResourcePolicyOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
383
- export var DeleteSourceCredentialsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
384
- export var DeleteSourceCredentialsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
385
- export var DeleteWebhookInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
386
- export var DeleteWebhookOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
387
- export var DescribeCodeCoveragesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
388
- export var CodeCoverageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
389
- export var DescribeCodeCoveragesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
390
- export var TestCaseFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
391
- export var DescribeTestCasesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
392
- export var TestCaseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
393
- export var DescribeTestCasesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
394
- export var GetReportGroupTrendInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
395
- export var ReportWithRawDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
396
- export var ReportGroupTrendStatsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
397
- export var GetReportGroupTrendOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
398
- export var GetResourcePolicyInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
399
- export var GetResourcePolicyOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
400
- export var ImportSourceCredentialsInputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.token && { token: SENSITIVE_STRING }))); };
401
- export var ImportSourceCredentialsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
402
- export var InvalidateProjectCacheInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
403
- export var InvalidateProjectCacheOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
404
- export var ListBuildBatchesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
405
- export var ListBuildBatchesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
406
- export var ListBuildBatchesForProjectInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
407
- export var ListBuildBatchesForProjectOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
408
- export var ListBuildsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
409
- export var ListBuildsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
410
- export var ListBuildsForProjectInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
411
- export var ListBuildsForProjectOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
412
- export var ListCuratedEnvironmentImagesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
413
- export var EnvironmentImageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
414
- export var EnvironmentLanguageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
415
- export var EnvironmentPlatformFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
416
- export var ListCuratedEnvironmentImagesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
417
- export var ListProjectsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
418
- export var ListProjectsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
419
- export var ListReportGroupsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
420
- export var ListReportGroupsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
421
- export var ReportFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
422
- export var ListReportsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
423
- export var ListReportsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
424
- export var ListReportsForReportGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
425
- export var ListReportsForReportGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
426
- export var ListSharedProjectsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
427
- export var ListSharedProjectsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
428
- export var ListSharedReportGroupsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
429
- export var ListSharedReportGroupsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
430
- export var ListSourceCredentialsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
431
- export var SourceCredentialsInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
432
- export var ListSourceCredentialsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
433
- export var PutResourcePolicyInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
434
- export var PutResourcePolicyOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
435
- export var RetryBuildInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
436
- export var RetryBuildOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
437
- export var RetryBuildBatchInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
438
- export var RetryBuildBatchOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
439
- export var StartBuildInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
440
- export var StartBuildOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
441
- export var StartBuildBatchInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
442
- export var StartBuildBatchOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
443
- export var StopBuildInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
444
- export var StopBuildOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
445
- export var StopBuildBatchInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
446
- export var StopBuildBatchOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
447
- export var UpdateProjectInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
448
- export var UpdateProjectOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
449
- export var UpdateProjectVisibilityInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
450
- export var UpdateProjectVisibilityOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
451
- export var UpdateReportGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
452
- export var UpdateReportGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
453
- export var UpdateWebhookInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
454
- export var UpdateWebhookOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
311
+ export const BatchDeleteBuildsInputFilterSensitiveLog = (obj) => ({
312
+ ...obj,
313
+ });
314
+ export const BuildNotDeletedFilterSensitiveLog = (obj) => ({
315
+ ...obj,
316
+ });
317
+ export const BatchDeleteBuildsOutputFilterSensitiveLog = (obj) => ({
318
+ ...obj,
319
+ });
320
+ export const BatchGetBuildBatchesInputFilterSensitiveLog = (obj) => ({
321
+ ...obj,
322
+ });
323
+ export const BuildArtifactsFilterSensitiveLog = (obj) => ({
324
+ ...obj,
325
+ });
326
+ export const BatchRestrictionsFilterSensitiveLog = (obj) => ({
327
+ ...obj,
328
+ });
329
+ export const ProjectBuildBatchConfigFilterSensitiveLog = (obj) => ({
330
+ ...obj,
331
+ });
332
+ export const ResolvedArtifactFilterSensitiveLog = (obj) => ({
333
+ ...obj,
334
+ });
335
+ export const BuildSummaryFilterSensitiveLog = (obj) => ({
336
+ ...obj,
337
+ });
338
+ export const BuildGroupFilterSensitiveLog = (obj) => ({
339
+ ...obj,
340
+ });
341
+ export const ProjectCacheFilterSensitiveLog = (obj) => ({
342
+ ...obj,
343
+ });
344
+ export const EnvironmentVariableFilterSensitiveLog = (obj) => ({
345
+ ...obj,
346
+ });
347
+ export const RegistryCredentialFilterSensitiveLog = (obj) => ({
348
+ ...obj,
349
+ });
350
+ export const ProjectEnvironmentFilterSensitiveLog = (obj) => ({
351
+ ...obj,
352
+ });
353
+ export const ProjectFileSystemLocationFilterSensitiveLog = (obj) => ({
354
+ ...obj,
355
+ });
356
+ export const CloudWatchLogsConfigFilterSensitiveLog = (obj) => ({
357
+ ...obj,
358
+ });
359
+ export const S3LogsConfigFilterSensitiveLog = (obj) => ({
360
+ ...obj,
361
+ });
362
+ export const LogsConfigFilterSensitiveLog = (obj) => ({
363
+ ...obj,
364
+ });
365
+ export const PhaseContextFilterSensitiveLog = (obj) => ({
366
+ ...obj,
367
+ });
368
+ export const BuildBatchPhaseFilterSensitiveLog = (obj) => ({
369
+ ...obj,
370
+ });
371
+ export const SourceAuthFilterSensitiveLog = (obj) => ({
372
+ ...obj,
373
+ });
374
+ export const BuildStatusConfigFilterSensitiveLog = (obj) => ({
375
+ ...obj,
376
+ });
377
+ export const GitSubmodulesConfigFilterSensitiveLog = (obj) => ({
378
+ ...obj,
379
+ });
380
+ export const ProjectSourceFilterSensitiveLog = (obj) => ({
381
+ ...obj,
382
+ });
383
+ export const ProjectSourceVersionFilterSensitiveLog = (obj) => ({
384
+ ...obj,
385
+ });
386
+ export const VpcConfigFilterSensitiveLog = (obj) => ({
387
+ ...obj,
388
+ });
389
+ export const BuildBatchFilterSensitiveLog = (obj) => ({
390
+ ...obj,
391
+ });
392
+ export const BatchGetBuildBatchesOutputFilterSensitiveLog = (obj) => ({
393
+ ...obj,
394
+ });
395
+ export const BatchGetBuildsInputFilterSensitiveLog = (obj) => ({
396
+ ...obj,
397
+ });
398
+ export const DebugSessionFilterSensitiveLog = (obj) => ({
399
+ ...obj,
400
+ });
401
+ export const ExportedEnvironmentVariableFilterSensitiveLog = (obj) => ({
402
+ ...obj,
403
+ });
404
+ export const LogsLocationFilterSensitiveLog = (obj) => ({
405
+ ...obj,
406
+ });
407
+ export const NetworkInterfaceFilterSensitiveLog = (obj) => ({
408
+ ...obj,
409
+ });
410
+ export const BuildPhaseFilterSensitiveLog = (obj) => ({
411
+ ...obj,
412
+ });
413
+ export const BuildFilterSensitiveLog = (obj) => ({
414
+ ...obj,
415
+ });
416
+ export const BatchGetBuildsOutputFilterSensitiveLog = (obj) => ({
417
+ ...obj,
418
+ });
419
+ export const BatchGetProjectsInputFilterSensitiveLog = (obj) => ({
420
+ ...obj,
421
+ });
422
+ export const ProjectArtifactsFilterSensitiveLog = (obj) => ({
423
+ ...obj,
424
+ });
425
+ export const ProjectBadgeFilterSensitiveLog = (obj) => ({
426
+ ...obj,
427
+ });
428
+ export const TagFilterSensitiveLog = (obj) => ({
429
+ ...obj,
430
+ });
431
+ export const WebhookFilterFilterSensitiveLog = (obj) => ({
432
+ ...obj,
433
+ });
434
+ export const WebhookFilterSensitiveLog = (obj) => ({
435
+ ...obj,
436
+ });
437
+ export const ProjectFilterSensitiveLog = (obj) => ({
438
+ ...obj,
439
+ });
440
+ export const BatchGetProjectsOutputFilterSensitiveLog = (obj) => ({
441
+ ...obj,
442
+ });
443
+ export const BatchGetReportGroupsInputFilterSensitiveLog = (obj) => ({
444
+ ...obj,
445
+ });
446
+ export const S3ReportExportConfigFilterSensitiveLog = (obj) => ({
447
+ ...obj,
448
+ });
449
+ export const ReportExportConfigFilterSensitiveLog = (obj) => ({
450
+ ...obj,
451
+ });
452
+ export const ReportGroupFilterSensitiveLog = (obj) => ({
453
+ ...obj,
454
+ });
455
+ export const BatchGetReportGroupsOutputFilterSensitiveLog = (obj) => ({
456
+ ...obj,
457
+ });
458
+ export const BatchGetReportsInputFilterSensitiveLog = (obj) => ({
459
+ ...obj,
460
+ });
461
+ export const CodeCoverageReportSummaryFilterSensitiveLog = (obj) => ({
462
+ ...obj,
463
+ });
464
+ export const TestReportSummaryFilterSensitiveLog = (obj) => ({
465
+ ...obj,
466
+ });
467
+ export const ReportFilterSensitiveLog = (obj) => ({
468
+ ...obj,
469
+ });
470
+ export const BatchGetReportsOutputFilterSensitiveLog = (obj) => ({
471
+ ...obj,
472
+ });
473
+ export const BuildBatchFilterFilterSensitiveLog = (obj) => ({
474
+ ...obj,
475
+ });
476
+ export const CreateProjectInputFilterSensitiveLog = (obj) => ({
477
+ ...obj,
478
+ });
479
+ export const CreateProjectOutputFilterSensitiveLog = (obj) => ({
480
+ ...obj,
481
+ });
482
+ export const CreateReportGroupInputFilterSensitiveLog = (obj) => ({
483
+ ...obj,
484
+ });
485
+ export const CreateReportGroupOutputFilterSensitiveLog = (obj) => ({
486
+ ...obj,
487
+ });
488
+ export const CreateWebhookInputFilterSensitiveLog = (obj) => ({
489
+ ...obj,
490
+ });
491
+ export const CreateWebhookOutputFilterSensitiveLog = (obj) => ({
492
+ ...obj,
493
+ });
494
+ export const DeleteBuildBatchInputFilterSensitiveLog = (obj) => ({
495
+ ...obj,
496
+ });
497
+ export const DeleteBuildBatchOutputFilterSensitiveLog = (obj) => ({
498
+ ...obj,
499
+ });
500
+ export const DeleteProjectInputFilterSensitiveLog = (obj) => ({
501
+ ...obj,
502
+ });
503
+ export const DeleteProjectOutputFilterSensitiveLog = (obj) => ({
504
+ ...obj,
505
+ });
506
+ export const DeleteReportInputFilterSensitiveLog = (obj) => ({
507
+ ...obj,
508
+ });
509
+ export const DeleteReportOutputFilterSensitiveLog = (obj) => ({
510
+ ...obj,
511
+ });
512
+ export const DeleteReportGroupInputFilterSensitiveLog = (obj) => ({
513
+ ...obj,
514
+ });
515
+ export const DeleteReportGroupOutputFilterSensitiveLog = (obj) => ({
516
+ ...obj,
517
+ });
518
+ export const DeleteResourcePolicyInputFilterSensitiveLog = (obj) => ({
519
+ ...obj,
520
+ });
521
+ export const DeleteResourcePolicyOutputFilterSensitiveLog = (obj) => ({
522
+ ...obj,
523
+ });
524
+ export const DeleteSourceCredentialsInputFilterSensitiveLog = (obj) => ({
525
+ ...obj,
526
+ });
527
+ export const DeleteSourceCredentialsOutputFilterSensitiveLog = (obj) => ({
528
+ ...obj,
529
+ });
530
+ export const DeleteWebhookInputFilterSensitiveLog = (obj) => ({
531
+ ...obj,
532
+ });
533
+ export const DeleteWebhookOutputFilterSensitiveLog = (obj) => ({
534
+ ...obj,
535
+ });
536
+ export const DescribeCodeCoveragesInputFilterSensitiveLog = (obj) => ({
537
+ ...obj,
538
+ });
539
+ export const CodeCoverageFilterSensitiveLog = (obj) => ({
540
+ ...obj,
541
+ });
542
+ export const DescribeCodeCoveragesOutputFilterSensitiveLog = (obj) => ({
543
+ ...obj,
544
+ });
545
+ export const TestCaseFilterFilterSensitiveLog = (obj) => ({
546
+ ...obj,
547
+ });
548
+ export const DescribeTestCasesInputFilterSensitiveLog = (obj) => ({
549
+ ...obj,
550
+ });
551
+ export const TestCaseFilterSensitiveLog = (obj) => ({
552
+ ...obj,
553
+ });
554
+ export const DescribeTestCasesOutputFilterSensitiveLog = (obj) => ({
555
+ ...obj,
556
+ });
557
+ export const GetReportGroupTrendInputFilterSensitiveLog = (obj) => ({
558
+ ...obj,
559
+ });
560
+ export const ReportWithRawDataFilterSensitiveLog = (obj) => ({
561
+ ...obj,
562
+ });
563
+ export const ReportGroupTrendStatsFilterSensitiveLog = (obj) => ({
564
+ ...obj,
565
+ });
566
+ export const GetReportGroupTrendOutputFilterSensitiveLog = (obj) => ({
567
+ ...obj,
568
+ });
569
+ export const GetResourcePolicyInputFilterSensitiveLog = (obj) => ({
570
+ ...obj,
571
+ });
572
+ export const GetResourcePolicyOutputFilterSensitiveLog = (obj) => ({
573
+ ...obj,
574
+ });
575
+ export const ImportSourceCredentialsInputFilterSensitiveLog = (obj) => ({
576
+ ...obj,
577
+ ...(obj.token && { token: SENSITIVE_STRING }),
578
+ });
579
+ export const ImportSourceCredentialsOutputFilterSensitiveLog = (obj) => ({
580
+ ...obj,
581
+ });
582
+ export const InvalidateProjectCacheInputFilterSensitiveLog = (obj) => ({
583
+ ...obj,
584
+ });
585
+ export const InvalidateProjectCacheOutputFilterSensitiveLog = (obj) => ({
586
+ ...obj,
587
+ });
588
+ export const ListBuildBatchesInputFilterSensitiveLog = (obj) => ({
589
+ ...obj,
590
+ });
591
+ export const ListBuildBatchesOutputFilterSensitiveLog = (obj) => ({
592
+ ...obj,
593
+ });
594
+ export const ListBuildBatchesForProjectInputFilterSensitiveLog = (obj) => ({
595
+ ...obj,
596
+ });
597
+ export const ListBuildBatchesForProjectOutputFilterSensitiveLog = (obj) => ({
598
+ ...obj,
599
+ });
600
+ export const ListBuildsInputFilterSensitiveLog = (obj) => ({
601
+ ...obj,
602
+ });
603
+ export const ListBuildsOutputFilterSensitiveLog = (obj) => ({
604
+ ...obj,
605
+ });
606
+ export const ListBuildsForProjectInputFilterSensitiveLog = (obj) => ({
607
+ ...obj,
608
+ });
609
+ export const ListBuildsForProjectOutputFilterSensitiveLog = (obj) => ({
610
+ ...obj,
611
+ });
612
+ export const ListCuratedEnvironmentImagesInputFilterSensitiveLog = (obj) => ({
613
+ ...obj,
614
+ });
615
+ export const EnvironmentImageFilterSensitiveLog = (obj) => ({
616
+ ...obj,
617
+ });
618
+ export const EnvironmentLanguageFilterSensitiveLog = (obj) => ({
619
+ ...obj,
620
+ });
621
+ export const EnvironmentPlatformFilterSensitiveLog = (obj) => ({
622
+ ...obj,
623
+ });
624
+ export const ListCuratedEnvironmentImagesOutputFilterSensitiveLog = (obj) => ({
625
+ ...obj,
626
+ });
627
+ export const ListProjectsInputFilterSensitiveLog = (obj) => ({
628
+ ...obj,
629
+ });
630
+ export const ListProjectsOutputFilterSensitiveLog = (obj) => ({
631
+ ...obj,
632
+ });
633
+ export const ListReportGroupsInputFilterSensitiveLog = (obj) => ({
634
+ ...obj,
635
+ });
636
+ export const ListReportGroupsOutputFilterSensitiveLog = (obj) => ({
637
+ ...obj,
638
+ });
639
+ export const ReportFilterFilterSensitiveLog = (obj) => ({
640
+ ...obj,
641
+ });
642
+ export const ListReportsInputFilterSensitiveLog = (obj) => ({
643
+ ...obj,
644
+ });
645
+ export const ListReportsOutputFilterSensitiveLog = (obj) => ({
646
+ ...obj,
647
+ });
648
+ export const ListReportsForReportGroupInputFilterSensitiveLog = (obj) => ({
649
+ ...obj,
650
+ });
651
+ export const ListReportsForReportGroupOutputFilterSensitiveLog = (obj) => ({
652
+ ...obj,
653
+ });
654
+ export const ListSharedProjectsInputFilterSensitiveLog = (obj) => ({
655
+ ...obj,
656
+ });
657
+ export const ListSharedProjectsOutputFilterSensitiveLog = (obj) => ({
658
+ ...obj,
659
+ });
660
+ export const ListSharedReportGroupsInputFilterSensitiveLog = (obj) => ({
661
+ ...obj,
662
+ });
663
+ export const ListSharedReportGroupsOutputFilterSensitiveLog = (obj) => ({
664
+ ...obj,
665
+ });
666
+ export const ListSourceCredentialsInputFilterSensitiveLog = (obj) => ({
667
+ ...obj,
668
+ });
669
+ export const SourceCredentialsInfoFilterSensitiveLog = (obj) => ({
670
+ ...obj,
671
+ });
672
+ export const ListSourceCredentialsOutputFilterSensitiveLog = (obj) => ({
673
+ ...obj,
674
+ });
675
+ export const PutResourcePolicyInputFilterSensitiveLog = (obj) => ({
676
+ ...obj,
677
+ });
678
+ export const PutResourcePolicyOutputFilterSensitiveLog = (obj) => ({
679
+ ...obj,
680
+ });
681
+ export const RetryBuildInputFilterSensitiveLog = (obj) => ({
682
+ ...obj,
683
+ });
684
+ export const RetryBuildOutputFilterSensitiveLog = (obj) => ({
685
+ ...obj,
686
+ });
687
+ export const RetryBuildBatchInputFilterSensitiveLog = (obj) => ({
688
+ ...obj,
689
+ });
690
+ export const RetryBuildBatchOutputFilterSensitiveLog = (obj) => ({
691
+ ...obj,
692
+ });
693
+ export const StartBuildInputFilterSensitiveLog = (obj) => ({
694
+ ...obj,
695
+ });
696
+ export const StartBuildOutputFilterSensitiveLog = (obj) => ({
697
+ ...obj,
698
+ });
699
+ export const StartBuildBatchInputFilterSensitiveLog = (obj) => ({
700
+ ...obj,
701
+ });
702
+ export const StartBuildBatchOutputFilterSensitiveLog = (obj) => ({
703
+ ...obj,
704
+ });
705
+ export const StopBuildInputFilterSensitiveLog = (obj) => ({
706
+ ...obj,
707
+ });
708
+ export const StopBuildOutputFilterSensitiveLog = (obj) => ({
709
+ ...obj,
710
+ });
711
+ export const StopBuildBatchInputFilterSensitiveLog = (obj) => ({
712
+ ...obj,
713
+ });
714
+ export const StopBuildBatchOutputFilterSensitiveLog = (obj) => ({
715
+ ...obj,
716
+ });
717
+ export const UpdateProjectInputFilterSensitiveLog = (obj) => ({
718
+ ...obj,
719
+ });
720
+ export const UpdateProjectOutputFilterSensitiveLog = (obj) => ({
721
+ ...obj,
722
+ });
723
+ export const UpdateProjectVisibilityInputFilterSensitiveLog = (obj) => ({
724
+ ...obj,
725
+ });
726
+ export const UpdateProjectVisibilityOutputFilterSensitiveLog = (obj) => ({
727
+ ...obj,
728
+ });
729
+ export const UpdateReportGroupInputFilterSensitiveLog = (obj) => ({
730
+ ...obj,
731
+ });
732
+ export const UpdateReportGroupOutputFilterSensitiveLog = (obj) => ({
733
+ ...obj,
734
+ });
735
+ export const UpdateWebhookInputFilterSensitiveLog = (obj) => ({
736
+ ...obj,
737
+ });
738
+ export const UpdateWebhookOutputFilterSensitiveLog = (obj) => ({
739
+ ...obj,
740
+ });