@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.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/CodeBuild.js +189 -182
- package/dist-es/CodeBuildClient.js +28 -22
- package/dist-es/commands/BatchDeleteBuildsCommand.js +28 -21
- package/dist-es/commands/BatchGetBuildBatchesCommand.js +28 -21
- package/dist-es/commands/BatchGetBuildsCommand.js +28 -21
- package/dist-es/commands/BatchGetProjectsCommand.js +28 -21
- package/dist-es/commands/BatchGetReportGroupsCommand.js +28 -21
- package/dist-es/commands/BatchGetReportsCommand.js +28 -21
- package/dist-es/commands/CreateProjectCommand.js +28 -21
- package/dist-es/commands/CreateReportGroupCommand.js +28 -21
- package/dist-es/commands/CreateWebhookCommand.js +28 -21
- package/dist-es/commands/DeleteBuildBatchCommand.js +28 -21
- package/dist-es/commands/DeleteProjectCommand.js +28 -21
- package/dist-es/commands/DeleteReportCommand.js +28 -21
- package/dist-es/commands/DeleteReportGroupCommand.js +28 -21
- package/dist-es/commands/DeleteResourcePolicyCommand.js +28 -21
- package/dist-es/commands/DeleteSourceCredentialsCommand.js +28 -21
- package/dist-es/commands/DeleteWebhookCommand.js +28 -21
- package/dist-es/commands/DescribeCodeCoveragesCommand.js +28 -21
- package/dist-es/commands/DescribeTestCasesCommand.js +28 -21
- package/dist-es/commands/GetReportGroupTrendCommand.js +28 -21
- package/dist-es/commands/GetResourcePolicyCommand.js +28 -21
- package/dist-es/commands/ImportSourceCredentialsCommand.js +28 -21
- package/dist-es/commands/InvalidateProjectCacheCommand.js +28 -21
- package/dist-es/commands/ListBuildBatchesCommand.js +28 -21
- package/dist-es/commands/ListBuildBatchesForProjectCommand.js +28 -21
- package/dist-es/commands/ListBuildsCommand.js +28 -21
- package/dist-es/commands/ListBuildsForProjectCommand.js +28 -21
- package/dist-es/commands/ListCuratedEnvironmentImagesCommand.js +28 -21
- package/dist-es/commands/ListProjectsCommand.js +28 -21
- package/dist-es/commands/ListReportGroupsCommand.js +28 -21
- package/dist-es/commands/ListReportsCommand.js +28 -21
- package/dist-es/commands/ListReportsForReportGroupCommand.js +28 -21
- package/dist-es/commands/ListSharedProjectsCommand.js +28 -21
- package/dist-es/commands/ListSharedReportGroupsCommand.js +28 -21
- package/dist-es/commands/ListSourceCredentialsCommand.js +28 -21
- package/dist-es/commands/PutResourcePolicyCommand.js +28 -21
- package/dist-es/commands/RetryBuildBatchCommand.js +28 -21
- package/dist-es/commands/RetryBuildCommand.js +28 -21
- package/dist-es/commands/StartBuildBatchCommand.js +28 -21
- package/dist-es/commands/StartBuildCommand.js +28 -21
- package/dist-es/commands/StopBuildBatchCommand.js +28 -21
- package/dist-es/commands/StopBuildCommand.js +28 -21
- package/dist-es/commands/UpdateProjectCommand.js +28 -21
- package/dist-es/commands/UpdateProjectVisibilityCommand.js +28 -21
- package/dist-es/commands/UpdateReportGroupCommand.js +28 -21
- package/dist-es/commands/UpdateWebhookCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/CodeBuildServiceException.js +10 -5
- package/dist-es/models/models_0.js +199 -485
- package/dist-es/pagination/DescribeCodeCoveragesPaginator.js +68 -25
- package/dist-es/pagination/DescribeTestCasesPaginator.js +68 -25
- package/dist-es/pagination/ListBuildBatchesForProjectPaginator.js +68 -25
- package/dist-es/pagination/ListBuildBatchesPaginator.js +68 -25
- package/dist-es/pagination/ListBuildsForProjectPaginator.js +67 -24
- package/dist-es/pagination/ListBuildsPaginator.js +67 -24
- package/dist-es/pagination/ListProjectsPaginator.js +67 -24
- package/dist-es/pagination/ListReportGroupsPaginator.js +68 -25
- package/dist-es/pagination/ListReportsForReportGroupPaginator.js +68 -25
- package/dist-es/pagination/ListReportsPaginator.js +68 -25
- package/dist-es/pagination/ListSharedProjectsPaginator.js +68 -25
- package/dist-es/pagination/ListSharedReportGroupsPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +3597 -3001
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- 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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
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 };
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { __assign, __awaiter, __generator } from "tslib";
|
|
1
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
2
|
-
|
|
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
|
-
|
|
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
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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 };
|