@aws-sdk/client-codebuild 3.183.0 → 3.185.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 (70) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/CodeBuild.js +189 -182
  4. package/dist-es/CodeBuildClient.js +28 -22
  5. package/dist-es/commands/BatchDeleteBuildsCommand.js +28 -21
  6. package/dist-es/commands/BatchGetBuildBatchesCommand.js +28 -21
  7. package/dist-es/commands/BatchGetBuildsCommand.js +28 -21
  8. package/dist-es/commands/BatchGetProjectsCommand.js +28 -21
  9. package/dist-es/commands/BatchGetReportGroupsCommand.js +28 -21
  10. package/dist-es/commands/BatchGetReportsCommand.js +28 -21
  11. package/dist-es/commands/CreateProjectCommand.js +28 -21
  12. package/dist-es/commands/CreateReportGroupCommand.js +28 -21
  13. package/dist-es/commands/CreateWebhookCommand.js +28 -21
  14. package/dist-es/commands/DeleteBuildBatchCommand.js +28 -21
  15. package/dist-es/commands/DeleteProjectCommand.js +28 -21
  16. package/dist-es/commands/DeleteReportCommand.js +28 -21
  17. package/dist-es/commands/DeleteReportGroupCommand.js +28 -21
  18. package/dist-es/commands/DeleteResourcePolicyCommand.js +28 -21
  19. package/dist-es/commands/DeleteSourceCredentialsCommand.js +28 -21
  20. package/dist-es/commands/DeleteWebhookCommand.js +28 -21
  21. package/dist-es/commands/DescribeCodeCoveragesCommand.js +28 -21
  22. package/dist-es/commands/DescribeTestCasesCommand.js +28 -21
  23. package/dist-es/commands/GetReportGroupTrendCommand.js +28 -21
  24. package/dist-es/commands/GetResourcePolicyCommand.js +28 -21
  25. package/dist-es/commands/ImportSourceCredentialsCommand.js +28 -21
  26. package/dist-es/commands/InvalidateProjectCacheCommand.js +28 -21
  27. package/dist-es/commands/ListBuildBatchesCommand.js +28 -21
  28. package/dist-es/commands/ListBuildBatchesForProjectCommand.js +28 -21
  29. package/dist-es/commands/ListBuildsCommand.js +28 -21
  30. package/dist-es/commands/ListBuildsForProjectCommand.js +28 -21
  31. package/dist-es/commands/ListCuratedEnvironmentImagesCommand.js +28 -21
  32. package/dist-es/commands/ListProjectsCommand.js +28 -21
  33. package/dist-es/commands/ListReportGroupsCommand.js +28 -21
  34. package/dist-es/commands/ListReportsCommand.js +28 -21
  35. package/dist-es/commands/ListReportsForReportGroupCommand.js +28 -21
  36. package/dist-es/commands/ListSharedProjectsCommand.js +28 -21
  37. package/dist-es/commands/ListSharedReportGroupsCommand.js +28 -21
  38. package/dist-es/commands/ListSourceCredentialsCommand.js +28 -21
  39. package/dist-es/commands/PutResourcePolicyCommand.js +28 -21
  40. package/dist-es/commands/RetryBuildBatchCommand.js +28 -21
  41. package/dist-es/commands/RetryBuildCommand.js +28 -21
  42. package/dist-es/commands/StartBuildBatchCommand.js +28 -21
  43. package/dist-es/commands/StartBuildCommand.js +28 -21
  44. package/dist-es/commands/StopBuildBatchCommand.js +28 -21
  45. package/dist-es/commands/StopBuildCommand.js +28 -21
  46. package/dist-es/commands/UpdateProjectCommand.js +28 -21
  47. package/dist-es/commands/UpdateProjectVisibilityCommand.js +28 -21
  48. package/dist-es/commands/UpdateReportGroupCommand.js +28 -21
  49. package/dist-es/commands/UpdateWebhookCommand.js +28 -21
  50. package/dist-es/endpoints.js +8 -8
  51. package/dist-es/models/CodeBuildServiceException.js +10 -5
  52. package/dist-es/models/models_0.js +199 -485
  53. package/dist-es/pagination/DescribeCodeCoveragesPaginator.js +68 -25
  54. package/dist-es/pagination/DescribeTestCasesPaginator.js +68 -25
  55. package/dist-es/pagination/ListBuildBatchesForProjectPaginator.js +68 -25
  56. package/dist-es/pagination/ListBuildBatchesPaginator.js +68 -25
  57. package/dist-es/pagination/ListBuildsForProjectPaginator.js +67 -24
  58. package/dist-es/pagination/ListBuildsPaginator.js +67 -24
  59. package/dist-es/pagination/ListProjectsPaginator.js +67 -24
  60. package/dist-es/pagination/ListReportGroupsPaginator.js +68 -25
  61. package/dist-es/pagination/ListReportsForReportGroupPaginator.js +68 -25
  62. package/dist-es/pagination/ListReportsPaginator.js +68 -25
  63. package/dist-es/pagination/ListSharedProjectsPaginator.js +68 -25
  64. package/dist-es/pagination/ListSharedReportGroupsPaginator.js +68 -25
  65. package/dist-es/protocols/Aws_json1_1.js +3597 -3001
  66. package/dist-es/runtimeConfig.browser.js +12 -26
  67. package/dist-es/runtimeConfig.js +12 -30
  68. package/dist-es/runtimeConfig.native.js +5 -8
  69. package/dist-es/runtimeConfig.shared.js +11 -8
  70. package/package.json +5 -5
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { StopBuildBatchInputFilterSensitiveLog, StopBuildBatchOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1StopBuildBatchCommand, serializeAws_json1_1StopBuildBatchCommand, } from "../protocols/Aws_json1_1";
5
- export class StopBuildBatchCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var StopBuildBatchCommand = (function (_super) {
7
+ __extends(StopBuildBatchCommand, _super);
8
+ function StopBuildBatchCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ StopBuildBatchCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CodeBuildClient";
15
- const commandName = "StopBuildBatchCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodeBuildClient";
18
+ var commandName = "StopBuildBatchCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: StopBuildBatchInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: StopBuildBatchOutputFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ StopBuildBatchCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1StopBuildBatchCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ StopBuildBatchCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1StopBuildBatchCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return StopBuildBatchCommand;
38
+ }($Command));
39
+ export { StopBuildBatchCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { StopBuildInputFilterSensitiveLog, StopBuildOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1StopBuildCommand, serializeAws_json1_1StopBuildCommand } from "../protocols/Aws_json1_1";
5
- export class StopBuildCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var StopBuildCommand = (function (_super) {
7
+ __extends(StopBuildCommand, _super);
8
+ function StopBuildCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ StopBuildCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CodeBuildClient";
15
- const commandName = "StopBuildCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodeBuildClient";
18
+ var commandName = "StopBuildCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: StopBuildInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: StopBuildOutputFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ StopBuildCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1StopBuildCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ StopBuildCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1StopBuildCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return StopBuildCommand;
38
+ }($Command));
39
+ export { StopBuildCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { UpdateProjectInputFilterSensitiveLog, UpdateProjectOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1UpdateProjectCommand, serializeAws_json1_1UpdateProjectCommand, } from "../protocols/Aws_json1_1";
5
- export class UpdateProjectCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var UpdateProjectCommand = (function (_super) {
7
+ __extends(UpdateProjectCommand, _super);
8
+ function UpdateProjectCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ UpdateProjectCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CodeBuildClient";
15
- const commandName = "UpdateProjectCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodeBuildClient";
18
+ var commandName = "UpdateProjectCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: UpdateProjectInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: UpdateProjectOutputFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateProjectCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1UpdateProjectCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ UpdateProjectCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1UpdateProjectCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return UpdateProjectCommand;
38
+ }($Command));
39
+ export { UpdateProjectCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { UpdateProjectVisibilityInputFilterSensitiveLog, UpdateProjectVisibilityOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1UpdateProjectVisibilityCommand, serializeAws_json1_1UpdateProjectVisibilityCommand, } from "../protocols/Aws_json1_1";
5
- export class UpdateProjectVisibilityCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var UpdateProjectVisibilityCommand = (function (_super) {
7
+ __extends(UpdateProjectVisibilityCommand, _super);
8
+ function UpdateProjectVisibilityCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ UpdateProjectVisibilityCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CodeBuildClient";
15
- const commandName = "UpdateProjectVisibilityCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodeBuildClient";
18
+ var commandName = "UpdateProjectVisibilityCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: UpdateProjectVisibilityInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: UpdateProjectVisibilityOutputFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateProjectVisibilityCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1UpdateProjectVisibilityCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ UpdateProjectVisibilityCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1UpdateProjectVisibilityCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return UpdateProjectVisibilityCommand;
38
+ }($Command));
39
+ export { UpdateProjectVisibilityCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { UpdateReportGroupInputFilterSensitiveLog, UpdateReportGroupOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1UpdateReportGroupCommand, serializeAws_json1_1UpdateReportGroupCommand, } from "../protocols/Aws_json1_1";
5
- export class UpdateReportGroupCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var UpdateReportGroupCommand = (function (_super) {
7
+ __extends(UpdateReportGroupCommand, _super);
8
+ function UpdateReportGroupCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ UpdateReportGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CodeBuildClient";
15
- const commandName = "UpdateReportGroupCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodeBuildClient";
18
+ var commandName = "UpdateReportGroupCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: UpdateReportGroupInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: UpdateReportGroupOutputFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateReportGroupCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1UpdateReportGroupCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ UpdateReportGroupCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1UpdateReportGroupCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return UpdateReportGroupCommand;
38
+ }($Command));
39
+ export { UpdateReportGroupCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { UpdateWebhookInputFilterSensitiveLog, UpdateWebhookOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1UpdateWebhookCommand, serializeAws_json1_1UpdateWebhookCommand, } from "../protocols/Aws_json1_1";
5
- export class UpdateWebhookCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var UpdateWebhookCommand = (function (_super) {
7
+ __extends(UpdateWebhookCommand, _super);
8
+ function UpdateWebhookCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ UpdateWebhookCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "CodeBuildClient";
15
- const commandName = "UpdateWebhookCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodeBuildClient";
18
+ var commandName = "UpdateWebhookCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: UpdateWebhookInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: UpdateWebhookOutputFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateWebhookCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1UpdateWebhookCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ UpdateWebhookCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1UpdateWebhookCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return UpdateWebhookCommand;
38
+ }($Command));
39
+ export { UpdateWebhookCommand };
@@ -1,5 +1,6 @@
1
+ import { __assign, __awaiter, __generator } from "tslib";
1
2
  import { getRegionInfo } from "@aws-sdk/config-resolver";
2
- const regionHash = {
3
+ var regionHash = {
3
4
  "us-east-1": {
4
5
  variants: [
5
6
  {
@@ -49,7 +50,7 @@ const regionHash = {
49
50
  ],
50
51
  },
51
52
  };
52
- const partitionHash = {
53
+ var partitionHash = {
53
54
  aws: {
54
55
  regions: [
55
56
  "af-south-1",
@@ -173,9 +174,8 @@ const partitionHash = {
173
174
  ],
174
175
  },
175
176
  };
176
- export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
177
- ...options,
178
- signingService: "codebuild",
179
- regionHash,
180
- partitionHash,
181
- });
177
+ export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
178
+ return __generator(this, function (_a) {
179
+ return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "codebuild", regionHash: regionHash, partitionHash: partitionHash }))];
180
+ });
181
+ }); };
@@ -1,7 +1,12 @@
1
+ import { __extends } from "tslib";
1
2
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
2
- export class CodeBuildServiceException extends __ServiceException {
3
- constructor(options) {
4
- super(options);
5
- Object.setPrototypeOf(this, CodeBuildServiceException.prototype);
3
+ var CodeBuildServiceException = (function (_super) {
4
+ __extends(CodeBuildServiceException, _super);
5
+ function CodeBuildServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, CodeBuildServiceException.prototype);
8
+ return _this;
6
9
  }
7
- }
10
+ return CodeBuildServiceException;
11
+ }(__ServiceException));
12
+ export { CodeBuildServiceException };