@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,4 +1,3 @@
1
- import { __extends } from "tslib";
2
1
  import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
3
2
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
3
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
@@ -9,31 +8,26 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
9
8
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
10
9
  import { Client as __Client, } from "@aws-sdk/smithy-client";
11
10
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
12
- var CodeBuildClient = (function (_super) {
13
- __extends(CodeBuildClient, _super);
14
- function CodeBuildClient(configuration) {
15
- var _this = this;
16
- var _config_0 = __getRuntimeConfig(configuration);
17
- var _config_1 = resolveRegionConfig(_config_0);
18
- var _config_2 = resolveEndpointsConfig(_config_1);
19
- var _config_3 = resolveRetryConfig(_config_2);
20
- var _config_4 = resolveHostHeaderConfig(_config_3);
21
- var _config_5 = resolveAwsAuthConfig(_config_4);
22
- var _config_6 = resolveUserAgentConfig(_config_5);
23
- _this = _super.call(this, _config_6) || this;
24
- _this.config = _config_6;
25
- _this.middlewareStack.use(getRetryPlugin(_this.config));
26
- _this.middlewareStack.use(getContentLengthPlugin(_this.config));
27
- _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
28
- _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
- _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
30
- _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
31
- _this.middlewareStack.use(getUserAgentPlugin(_this.config));
32
- return _this;
11
+ export class CodeBuildClient extends __Client {
12
+ constructor(configuration) {
13
+ const _config_0 = __getRuntimeConfig(configuration);
14
+ const _config_1 = resolveRegionConfig(_config_0);
15
+ const _config_2 = resolveEndpointsConfig(_config_1);
16
+ const _config_3 = resolveRetryConfig(_config_2);
17
+ const _config_4 = resolveHostHeaderConfig(_config_3);
18
+ const _config_5 = resolveAwsAuthConfig(_config_4);
19
+ const _config_6 = resolveUserAgentConfig(_config_5);
20
+ super(_config_6);
21
+ this.config = _config_6;
22
+ this.middlewareStack.use(getRetryPlugin(this.config));
23
+ this.middlewareStack.use(getContentLengthPlugin(this.config));
24
+ this.middlewareStack.use(getHostHeaderPlugin(this.config));
25
+ this.middlewareStack.use(getLoggerPlugin(this.config));
26
+ this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
27
+ this.middlewareStack.use(getAwsAuthPlugin(this.config));
28
+ this.middlewareStack.use(getUserAgentPlugin(this.config));
33
29
  }
34
- CodeBuildClient.prototype.destroy = function () {
35
- _super.prototype.destroy.call(this);
36
- };
37
- return CodeBuildClient;
38
- }(__Client));
39
- export { CodeBuildClient };
30
+ destroy() {
31
+ super.destroy();
32
+ }
33
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { BatchDeleteBuildsInputFilterSensitiveLog, BatchDeleteBuildsOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1BatchDeleteBuildsCommand, serializeAws_json1_1BatchDeleteBuildsCommand, } from "../protocols/Aws_json1_1";
6
- var BatchDeleteBuildsCommand = (function (_super) {
7
- __extends(BatchDeleteBuildsCommand, _super);
8
- function BatchDeleteBuildsCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class BatchDeleteBuildsCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- BatchDeleteBuildsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CodeBuildClient";
18
- var commandName = "BatchDeleteBuildsCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CodeBuildClient";
15
+ const commandName = "BatchDeleteBuildsCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: BatchDeleteBuildsInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: BatchDeleteBuildsOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- BatchDeleteBuildsCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1BatchDeleteBuildsCommand(input, context);
33
- };
34
- BatchDeleteBuildsCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1BatchDeleteBuildsCommand(output, context);
36
- };
37
- return BatchDeleteBuildsCommand;
38
- }($Command));
39
- export { BatchDeleteBuildsCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { BatchGetBuildBatchesInputFilterSensitiveLog, BatchGetBuildBatchesOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1BatchGetBuildBatchesCommand, serializeAws_json1_1BatchGetBuildBatchesCommand, } from "../protocols/Aws_json1_1";
6
- var BatchGetBuildBatchesCommand = (function (_super) {
7
- __extends(BatchGetBuildBatchesCommand, _super);
8
- function BatchGetBuildBatchesCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class BatchGetBuildBatchesCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- BatchGetBuildBatchesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CodeBuildClient";
18
- var commandName = "BatchGetBuildBatchesCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CodeBuildClient";
15
+ const commandName = "BatchGetBuildBatchesCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: BatchGetBuildBatchesInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: BatchGetBuildBatchesOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- BatchGetBuildBatchesCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1BatchGetBuildBatchesCommand(input, context);
33
- };
34
- BatchGetBuildBatchesCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1BatchGetBuildBatchesCommand(output, context);
36
- };
37
- return BatchGetBuildBatchesCommand;
38
- }($Command));
39
- export { BatchGetBuildBatchesCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { BatchGetBuildsInputFilterSensitiveLog, BatchGetBuildsOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1BatchGetBuildsCommand, serializeAws_json1_1BatchGetBuildsCommand, } from "../protocols/Aws_json1_1";
6
- var BatchGetBuildsCommand = (function (_super) {
7
- __extends(BatchGetBuildsCommand, _super);
8
- function BatchGetBuildsCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class BatchGetBuildsCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- BatchGetBuildsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CodeBuildClient";
18
- var commandName = "BatchGetBuildsCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CodeBuildClient";
15
+ const commandName = "BatchGetBuildsCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: BatchGetBuildsInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: BatchGetBuildsOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- BatchGetBuildsCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1BatchGetBuildsCommand(input, context);
33
- };
34
- BatchGetBuildsCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1BatchGetBuildsCommand(output, context);
36
- };
37
- return BatchGetBuildsCommand;
38
- }($Command));
39
- export { BatchGetBuildsCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { BatchGetProjectsInputFilterSensitiveLog, BatchGetProjectsOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1BatchGetProjectsCommand, serializeAws_json1_1BatchGetProjectsCommand, } from "../protocols/Aws_json1_1";
6
- var BatchGetProjectsCommand = (function (_super) {
7
- __extends(BatchGetProjectsCommand, _super);
8
- function BatchGetProjectsCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class BatchGetProjectsCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- BatchGetProjectsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CodeBuildClient";
18
- var commandName = "BatchGetProjectsCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CodeBuildClient";
15
+ const commandName = "BatchGetProjectsCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: BatchGetProjectsInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: BatchGetProjectsOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- BatchGetProjectsCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1BatchGetProjectsCommand(input, context);
33
- };
34
- BatchGetProjectsCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1BatchGetProjectsCommand(output, context);
36
- };
37
- return BatchGetProjectsCommand;
38
- }($Command));
39
- export { BatchGetProjectsCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { BatchGetReportGroupsInputFilterSensitiveLog, BatchGetReportGroupsOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1BatchGetReportGroupsCommand, serializeAws_json1_1BatchGetReportGroupsCommand, } from "../protocols/Aws_json1_1";
6
- var BatchGetReportGroupsCommand = (function (_super) {
7
- __extends(BatchGetReportGroupsCommand, _super);
8
- function BatchGetReportGroupsCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class BatchGetReportGroupsCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- BatchGetReportGroupsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CodeBuildClient";
18
- var commandName = "BatchGetReportGroupsCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CodeBuildClient";
15
+ const commandName = "BatchGetReportGroupsCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: BatchGetReportGroupsInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: BatchGetReportGroupsOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- BatchGetReportGroupsCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1BatchGetReportGroupsCommand(input, context);
33
- };
34
- BatchGetReportGroupsCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1BatchGetReportGroupsCommand(output, context);
36
- };
37
- return BatchGetReportGroupsCommand;
38
- }($Command));
39
- export { BatchGetReportGroupsCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { BatchGetReportsInputFilterSensitiveLog, BatchGetReportsOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1BatchGetReportsCommand, serializeAws_json1_1BatchGetReportsCommand, } from "../protocols/Aws_json1_1";
6
- var BatchGetReportsCommand = (function (_super) {
7
- __extends(BatchGetReportsCommand, _super);
8
- function BatchGetReportsCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class BatchGetReportsCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- BatchGetReportsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CodeBuildClient";
18
- var commandName = "BatchGetReportsCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CodeBuildClient";
15
+ const commandName = "BatchGetReportsCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: BatchGetReportsInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: BatchGetReportsOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- BatchGetReportsCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1BatchGetReportsCommand(input, context);
33
- };
34
- BatchGetReportsCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1BatchGetReportsCommand(output, context);
36
- };
37
- return BatchGetReportsCommand;
38
- }($Command));
39
- export { BatchGetReportsCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreateProjectInputFilterSensitiveLog, CreateProjectOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1CreateProjectCommand, serializeAws_json1_1CreateProjectCommand, } from "../protocols/Aws_json1_1";
6
- var CreateProjectCommand = (function (_super) {
7
- __extends(CreateProjectCommand, _super);
8
- function CreateProjectCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateProjectCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateProjectCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CodeBuildClient";
18
- var commandName = "CreateProjectCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CodeBuildClient";
15
+ const commandName = "CreateProjectCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateProjectInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateProjectOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateProjectCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1CreateProjectCommand(input, context);
33
- };
34
- CreateProjectCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1CreateProjectCommand(output, context);
36
- };
37
- return CreateProjectCommand;
38
- }($Command));
39
- export { CreateProjectCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreateReportGroupInputFilterSensitiveLog, CreateReportGroupOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1CreateReportGroupCommand, serializeAws_json1_1CreateReportGroupCommand, } from "../protocols/Aws_json1_1";
6
- var CreateReportGroupCommand = (function (_super) {
7
- __extends(CreateReportGroupCommand, _super);
8
- function CreateReportGroupCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateReportGroupCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateReportGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CodeBuildClient";
18
- var commandName = "CreateReportGroupCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CodeBuildClient";
15
+ const commandName = "CreateReportGroupCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateReportGroupInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateReportGroupOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateReportGroupCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1CreateReportGroupCommand(input, context);
33
- };
34
- CreateReportGroupCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1CreateReportGroupCommand(output, context);
36
- };
37
- return CreateReportGroupCommand;
38
- }($Command));
39
- export { CreateReportGroupCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreateWebhookInputFilterSensitiveLog, CreateWebhookOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1CreateWebhookCommand, serializeAws_json1_1CreateWebhookCommand, } from "../protocols/Aws_json1_1";
6
- var CreateWebhookCommand = (function (_super) {
7
- __extends(CreateWebhookCommand, _super);
8
- function CreateWebhookCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateWebhookCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateWebhookCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "CodeBuildClient";
18
- var commandName = "CreateWebhookCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "CodeBuildClient";
15
+ const commandName = "CreateWebhookCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateWebhookInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateWebhookOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateWebhookCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1CreateWebhookCommand(input, context);
33
- };
34
- CreateWebhookCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1CreateWebhookCommand(output, context);
36
- };
37
- return CreateWebhookCommand;
38
- }($Command));
39
- export { CreateWebhookCommand };
31
+ }
32
+ }