@aws-sdk/client-codebuild 3.781.0 → 3.784.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +72 -0
- package/dist-cjs/index.js +558 -1
- package/dist-es/CodeBuild.js +18 -0
- package/dist-es/commands/BatchGetCommandExecutionsCommand.js +23 -0
- package/dist-es/commands/BatchGetSandboxesCommand.js +22 -0
- package/dist-es/commands/ListCommandExecutionsForSandboxCommand.js +23 -0
- package/dist-es/commands/ListSandboxesCommand.js +22 -0
- package/dist-es/commands/ListSandboxesForProjectCommand.js +23 -0
- package/dist-es/commands/StartCommandExecutionCommand.js +23 -0
- package/dist-es/commands/StartSandboxCommand.js +23 -0
- package/dist-es/commands/StartSandboxConnectionCommand.js +22 -0
- package/dist-es/commands/StopSandboxCommand.js +22 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +53 -0
- package/dist-es/pagination/ListCommandExecutionsForSandboxPaginator.js +4 -0
- package/dist-es/pagination/ListSandboxesForProjectPaginator.js +4 -0
- package/dist-es/pagination/ListSandboxesPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_1.js +305 -1
- package/dist-types/CodeBuild.d.ts +65 -0
- package/dist-types/CodeBuildClient.d.ts +11 -2
- package/dist-types/commands/BatchGetCommandExecutionsCommand.d.ts +115 -0
- package/dist-types/commands/BatchGetSandboxesCommand.d.ts +248 -0
- package/dist-types/commands/ListCommandExecutionsForSandboxCommand.d.ts +116 -0
- package/dist-types/commands/ListSandboxesCommand.d.ts +80 -0
- package/dist-types/commands/ListSandboxesForProjectCommand.d.ts +84 -0
- package/dist-types/commands/StartCommandExecutionCommand.d.ts +112 -0
- package/dist-types/commands/StartSandboxCommand.d.ts +248 -0
- package/dist-types/commands/StartSandboxConnectionCommand.d.ts +82 -0
- package/dist-types/commands/StopSandboxCommand.d.ts +244 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +639 -0
- package/dist-types/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSandboxesForProjectPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSandboxesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +81 -0
- package/dist-types/ts3.4/CodeBuild.d.ts +155 -0
- package/dist-types/ts3.4/CodeBuildClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/BatchGetCommandExecutionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetSandboxesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListCommandExecutionsForSandboxCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSandboxesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListSandboxesForProjectCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartCommandExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartSandboxCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StartSandboxConnectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopSandboxCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +167 -0
- package/dist-types/ts3.4/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSandboxesForProjectPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSandboxesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +108 -0
- package/package.json +5 -5
package/dist-es/CodeBuild.js
CHANGED
|
@@ -3,10 +3,12 @@ import { CodeBuildClient } from "./CodeBuildClient";
|
|
|
3
3
|
import { BatchDeleteBuildsCommand, } from "./commands/BatchDeleteBuildsCommand";
|
|
4
4
|
import { BatchGetBuildBatchesCommand, } from "./commands/BatchGetBuildBatchesCommand";
|
|
5
5
|
import { BatchGetBuildsCommand, } from "./commands/BatchGetBuildsCommand";
|
|
6
|
+
import { BatchGetCommandExecutionsCommand, } from "./commands/BatchGetCommandExecutionsCommand";
|
|
6
7
|
import { BatchGetFleetsCommand, } from "./commands/BatchGetFleetsCommand";
|
|
7
8
|
import { BatchGetProjectsCommand, } from "./commands/BatchGetProjectsCommand";
|
|
8
9
|
import { BatchGetReportGroupsCommand, } from "./commands/BatchGetReportGroupsCommand";
|
|
9
10
|
import { BatchGetReportsCommand, } from "./commands/BatchGetReportsCommand";
|
|
11
|
+
import { BatchGetSandboxesCommand, } from "./commands/BatchGetSandboxesCommand";
|
|
10
12
|
import { CreateFleetCommand } from "./commands/CreateFleetCommand";
|
|
11
13
|
import { CreateProjectCommand, } from "./commands/CreateProjectCommand";
|
|
12
14
|
import { CreateReportGroupCommand, } from "./commands/CreateReportGroupCommand";
|
|
@@ -29,12 +31,15 @@ import { ListBuildBatchesCommand, } from "./commands/ListBuildBatchesCommand";
|
|
|
29
31
|
import { ListBuildBatchesForProjectCommand, } from "./commands/ListBuildBatchesForProjectCommand";
|
|
30
32
|
import { ListBuildsCommand } from "./commands/ListBuildsCommand";
|
|
31
33
|
import { ListBuildsForProjectCommand, } from "./commands/ListBuildsForProjectCommand";
|
|
34
|
+
import { ListCommandExecutionsForSandboxCommand, } from "./commands/ListCommandExecutionsForSandboxCommand";
|
|
32
35
|
import { ListCuratedEnvironmentImagesCommand, } from "./commands/ListCuratedEnvironmentImagesCommand";
|
|
33
36
|
import { ListFleetsCommand } from "./commands/ListFleetsCommand";
|
|
34
37
|
import { ListProjectsCommand, } from "./commands/ListProjectsCommand";
|
|
35
38
|
import { ListReportGroupsCommand, } from "./commands/ListReportGroupsCommand";
|
|
36
39
|
import { ListReportsCommand } from "./commands/ListReportsCommand";
|
|
37
40
|
import { ListReportsForReportGroupCommand, } from "./commands/ListReportsForReportGroupCommand";
|
|
41
|
+
import { ListSandboxesCommand, } from "./commands/ListSandboxesCommand";
|
|
42
|
+
import { ListSandboxesForProjectCommand, } from "./commands/ListSandboxesForProjectCommand";
|
|
38
43
|
import { ListSharedProjectsCommand, } from "./commands/ListSharedProjectsCommand";
|
|
39
44
|
import { ListSharedReportGroupsCommand, } from "./commands/ListSharedReportGroupsCommand";
|
|
40
45
|
import { ListSourceCredentialsCommand, } from "./commands/ListSourceCredentialsCommand";
|
|
@@ -43,8 +48,12 @@ import { RetryBuildBatchCommand, } from "./commands/RetryBuildBatchCommand";
|
|
|
43
48
|
import { RetryBuildCommand } from "./commands/RetryBuildCommand";
|
|
44
49
|
import { StartBuildBatchCommand, } from "./commands/StartBuildBatchCommand";
|
|
45
50
|
import { StartBuildCommand } from "./commands/StartBuildCommand";
|
|
51
|
+
import { StartCommandExecutionCommand, } from "./commands/StartCommandExecutionCommand";
|
|
52
|
+
import { StartSandboxCommand, } from "./commands/StartSandboxCommand";
|
|
53
|
+
import { StartSandboxConnectionCommand, } from "./commands/StartSandboxConnectionCommand";
|
|
46
54
|
import { StopBuildBatchCommand, } from "./commands/StopBuildBatchCommand";
|
|
47
55
|
import { StopBuildCommand } from "./commands/StopBuildCommand";
|
|
56
|
+
import { StopSandboxCommand } from "./commands/StopSandboxCommand";
|
|
48
57
|
import { UpdateFleetCommand } from "./commands/UpdateFleetCommand";
|
|
49
58
|
import { UpdateProjectCommand, } from "./commands/UpdateProjectCommand";
|
|
50
59
|
import { UpdateProjectVisibilityCommand, } from "./commands/UpdateProjectVisibilityCommand";
|
|
@@ -54,10 +63,12 @@ const commands = {
|
|
|
54
63
|
BatchDeleteBuildsCommand,
|
|
55
64
|
BatchGetBuildBatchesCommand,
|
|
56
65
|
BatchGetBuildsCommand,
|
|
66
|
+
BatchGetCommandExecutionsCommand,
|
|
57
67
|
BatchGetFleetsCommand,
|
|
58
68
|
BatchGetProjectsCommand,
|
|
59
69
|
BatchGetReportGroupsCommand,
|
|
60
70
|
BatchGetReportsCommand,
|
|
71
|
+
BatchGetSandboxesCommand,
|
|
61
72
|
CreateFleetCommand,
|
|
62
73
|
CreateProjectCommand,
|
|
63
74
|
CreateReportGroupCommand,
|
|
@@ -80,12 +91,15 @@ const commands = {
|
|
|
80
91
|
ListBuildBatchesForProjectCommand,
|
|
81
92
|
ListBuildsCommand,
|
|
82
93
|
ListBuildsForProjectCommand,
|
|
94
|
+
ListCommandExecutionsForSandboxCommand,
|
|
83
95
|
ListCuratedEnvironmentImagesCommand,
|
|
84
96
|
ListFleetsCommand,
|
|
85
97
|
ListProjectsCommand,
|
|
86
98
|
ListReportGroupsCommand,
|
|
87
99
|
ListReportsCommand,
|
|
88
100
|
ListReportsForReportGroupCommand,
|
|
101
|
+
ListSandboxesCommand,
|
|
102
|
+
ListSandboxesForProjectCommand,
|
|
89
103
|
ListSharedProjectsCommand,
|
|
90
104
|
ListSharedReportGroupsCommand,
|
|
91
105
|
ListSourceCredentialsCommand,
|
|
@@ -94,8 +108,12 @@ const commands = {
|
|
|
94
108
|
RetryBuildBatchCommand,
|
|
95
109
|
StartBuildCommand,
|
|
96
110
|
StartBuildBatchCommand,
|
|
111
|
+
StartCommandExecutionCommand,
|
|
112
|
+
StartSandboxCommand,
|
|
113
|
+
StartSandboxConnectionCommand,
|
|
97
114
|
StopBuildCommand,
|
|
98
115
|
StopBuildBatchCommand,
|
|
116
|
+
StopSandboxCommand,
|
|
99
117
|
UpdateFleetCommand,
|
|
100
118
|
UpdateProjectCommand,
|
|
101
119
|
UpdateProjectVisibilityCommand,
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { BatchGetCommandExecutionsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_BatchGetCommandExecutionsCommand, se_BatchGetCommandExecutionsCommand } from "../protocols/Aws_json1_1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class BatchGetCommandExecutionsCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("CodeBuild_20161006", "BatchGetCommandExecutions", {})
|
|
18
|
+
.n("CodeBuildClient", "BatchGetCommandExecutionsCommand")
|
|
19
|
+
.f(void 0, BatchGetCommandExecutionsOutputFilterSensitiveLog)
|
|
20
|
+
.ser(se_BatchGetCommandExecutionsCommand)
|
|
21
|
+
.de(de_BatchGetCommandExecutionsCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_BatchGetSandboxesCommand, se_BatchGetSandboxesCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class BatchGetSandboxesCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("CodeBuild_20161006", "BatchGetSandboxes", {})
|
|
17
|
+
.n("CodeBuildClient", "BatchGetSandboxesCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_BatchGetSandboxesCommand)
|
|
20
|
+
.de(de_BatchGetSandboxesCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListCommandExecutionsForSandboxInputFilterSensitiveLog, ListCommandExecutionsForSandboxOutputFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_ListCommandExecutionsForSandboxCommand, se_ListCommandExecutionsForSandboxCommand, } from "../protocols/Aws_json1_1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class ListCommandExecutionsForSandboxCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("CodeBuild_20161006", "ListCommandExecutionsForSandbox", {})
|
|
18
|
+
.n("CodeBuildClient", "ListCommandExecutionsForSandboxCommand")
|
|
19
|
+
.f(ListCommandExecutionsForSandboxInputFilterSensitiveLog, ListCommandExecutionsForSandboxOutputFilterSensitiveLog)
|
|
20
|
+
.ser(se_ListCommandExecutionsForSandboxCommand)
|
|
21
|
+
.de(de_ListCommandExecutionsForSandboxCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListSandboxesCommand, se_ListSandboxesCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListSandboxesCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("CodeBuild_20161006", "ListSandboxes", {})
|
|
17
|
+
.n("CodeBuildClient", "ListSandboxesCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListSandboxesCommand)
|
|
20
|
+
.de(de_ListSandboxesCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListSandboxesForProjectInputFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_ListSandboxesForProjectCommand, se_ListSandboxesForProjectCommand } from "../protocols/Aws_json1_1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class ListSandboxesForProjectCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("CodeBuild_20161006", "ListSandboxesForProject", {})
|
|
18
|
+
.n("CodeBuildClient", "ListSandboxesForProjectCommand")
|
|
19
|
+
.f(ListSandboxesForProjectInputFilterSensitiveLog, void 0)
|
|
20
|
+
.ser(se_ListSandboxesForProjectCommand)
|
|
21
|
+
.de(de_ListSandboxesForProjectCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { StartCommandExecutionInputFilterSensitiveLog, StartCommandExecutionOutputFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_StartCommandExecutionCommand, se_StartCommandExecutionCommand } from "../protocols/Aws_json1_1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class StartCommandExecutionCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("CodeBuild_20161006", "StartCommandExecution", {})
|
|
18
|
+
.n("CodeBuildClient", "StartCommandExecutionCommand")
|
|
19
|
+
.f(StartCommandExecutionInputFilterSensitiveLog, StartCommandExecutionOutputFilterSensitiveLog)
|
|
20
|
+
.ser(se_StartCommandExecutionCommand)
|
|
21
|
+
.de(de_StartCommandExecutionCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { StartSandboxInputFilterSensitiveLog } from "../models/models_0";
|
|
6
|
+
import { de_StartSandboxCommand, se_StartSandboxCommand } from "../protocols/Aws_json1_1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class StartSandboxCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("CodeBuild_20161006", "StartSandbox", {})
|
|
18
|
+
.n("CodeBuildClient", "StartSandboxCommand")
|
|
19
|
+
.f(StartSandboxInputFilterSensitiveLog, void 0)
|
|
20
|
+
.ser(se_StartSandboxCommand)
|
|
21
|
+
.de(de_StartSandboxCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_StartSandboxConnectionCommand, se_StartSandboxConnectionCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class StartSandboxConnectionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("CodeBuild_20161006", "StartSandboxConnection", {})
|
|
17
|
+
.n("CodeBuildClient", "StartSandboxConnectionCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_StartSandboxConnectionCommand)
|
|
20
|
+
.de(de_StartSandboxConnectionCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_StopSandboxCommand, se_StopSandboxCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class StopSandboxCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("CodeBuild_20161006", "StopSandbox", {})
|
|
17
|
+
.n("CodeBuildClient", "StopSandboxCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_StopSandboxCommand)
|
|
20
|
+
.de(de_StopSandboxCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export * from "./BatchDeleteBuildsCommand";
|
|
2
2
|
export * from "./BatchGetBuildBatchesCommand";
|
|
3
3
|
export * from "./BatchGetBuildsCommand";
|
|
4
|
+
export * from "./BatchGetCommandExecutionsCommand";
|
|
4
5
|
export * from "./BatchGetFleetsCommand";
|
|
5
6
|
export * from "./BatchGetProjectsCommand";
|
|
6
7
|
export * from "./BatchGetReportGroupsCommand";
|
|
7
8
|
export * from "./BatchGetReportsCommand";
|
|
9
|
+
export * from "./BatchGetSandboxesCommand";
|
|
8
10
|
export * from "./CreateFleetCommand";
|
|
9
11
|
export * from "./CreateProjectCommand";
|
|
10
12
|
export * from "./CreateReportGroupCommand";
|
|
@@ -27,12 +29,15 @@ export * from "./ListBuildBatchesCommand";
|
|
|
27
29
|
export * from "./ListBuildBatchesForProjectCommand";
|
|
28
30
|
export * from "./ListBuildsCommand";
|
|
29
31
|
export * from "./ListBuildsForProjectCommand";
|
|
32
|
+
export * from "./ListCommandExecutionsForSandboxCommand";
|
|
30
33
|
export * from "./ListCuratedEnvironmentImagesCommand";
|
|
31
34
|
export * from "./ListFleetsCommand";
|
|
32
35
|
export * from "./ListProjectsCommand";
|
|
33
36
|
export * from "./ListReportGroupsCommand";
|
|
34
37
|
export * from "./ListReportsCommand";
|
|
35
38
|
export * from "./ListReportsForReportGroupCommand";
|
|
39
|
+
export * from "./ListSandboxesCommand";
|
|
40
|
+
export * from "./ListSandboxesForProjectCommand";
|
|
36
41
|
export * from "./ListSharedProjectsCommand";
|
|
37
42
|
export * from "./ListSharedReportGroupsCommand";
|
|
38
43
|
export * from "./ListSourceCredentialsCommand";
|
|
@@ -41,8 +46,12 @@ export * from "./RetryBuildBatchCommand";
|
|
|
41
46
|
export * from "./RetryBuildCommand";
|
|
42
47
|
export * from "./StartBuildBatchCommand";
|
|
43
48
|
export * from "./StartBuildCommand";
|
|
49
|
+
export * from "./StartCommandExecutionCommand";
|
|
50
|
+
export * from "./StartSandboxCommand";
|
|
51
|
+
export * from "./StartSandboxConnectionCommand";
|
|
44
52
|
export * from "./StopBuildBatchCommand";
|
|
45
53
|
export * from "./StopBuildCommand";
|
|
54
|
+
export * from "./StopSandboxCommand";
|
|
46
55
|
export * from "./UpdateFleetCommand";
|
|
47
56
|
export * from "./UpdateProjectCommand";
|
|
48
57
|
export * from "./UpdateProjectVisibilityCommand";
|
|
@@ -12,6 +12,18 @@ export class AccountLimitExceededException extends __BaseException {
|
|
|
12
12
|
Object.setPrototypeOf(this, AccountLimitExceededException.prototype);
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
+
export class AccountSuspendedException extends __BaseException {
|
|
16
|
+
name = "AccountSuspendedException";
|
|
17
|
+
$fault = "client";
|
|
18
|
+
constructor(opts) {
|
|
19
|
+
super({
|
|
20
|
+
name: "AccountSuspendedException",
|
|
21
|
+
$fault: "client",
|
|
22
|
+
...opts,
|
|
23
|
+
});
|
|
24
|
+
Object.setPrototypeOf(this, AccountSuspendedException.prototype);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
15
27
|
export const ArtifactNamespace = {
|
|
16
28
|
BUILD_ID: "BUILD_ID",
|
|
17
29
|
NONE: "NONE",
|
|
@@ -159,6 +171,9 @@ export const BuildPhaseType = {
|
|
|
159
171
|
SUBMITTED: "SUBMITTED",
|
|
160
172
|
UPLOAD_ARTIFACTS: "UPLOAD_ARTIFACTS",
|
|
161
173
|
};
|
|
174
|
+
export const CommandType = {
|
|
175
|
+
SHELL: "SHELL",
|
|
176
|
+
};
|
|
162
177
|
export const FleetOverflowBehavior = {
|
|
163
178
|
ON_DEMAND: "ON_DEMAND",
|
|
164
179
|
QUEUE: "QUEUE",
|
|
@@ -357,11 +372,49 @@ export const RetryBuildBatchType = {
|
|
|
357
372
|
RETRY_ALL_BUILDS: "RETRY_ALL_BUILDS",
|
|
358
373
|
RETRY_FAILED_BUILDS: "RETRY_FAILED_BUILDS",
|
|
359
374
|
};
|
|
375
|
+
export const CommandExecutionFilterSensitiveLog = (obj) => ({
|
|
376
|
+
...obj,
|
|
377
|
+
...(obj.command && { command: SENSITIVE_STRING }),
|
|
378
|
+
...(obj.standardOutputContent && { standardOutputContent: SENSITIVE_STRING }),
|
|
379
|
+
...(obj.standardErrContent && { standardErrContent: SENSITIVE_STRING }),
|
|
380
|
+
});
|
|
381
|
+
export const BatchGetCommandExecutionsOutputFilterSensitiveLog = (obj) => ({
|
|
382
|
+
...obj,
|
|
383
|
+
...(obj.commandExecutions && {
|
|
384
|
+
commandExecutions: obj.commandExecutions.map((item) => CommandExecutionFilterSensitiveLog(item)),
|
|
385
|
+
}),
|
|
386
|
+
});
|
|
360
387
|
export const ImportSourceCredentialsInputFilterSensitiveLog = (obj) => ({
|
|
361
388
|
...obj,
|
|
362
389
|
...(obj.token && { token: SENSITIVE_STRING }),
|
|
363
390
|
});
|
|
391
|
+
export const ListCommandExecutionsForSandboxInputFilterSensitiveLog = (obj) => ({
|
|
392
|
+
...obj,
|
|
393
|
+
...(obj.nextToken && { nextToken: SENSITIVE_STRING }),
|
|
394
|
+
});
|
|
395
|
+
export const ListCommandExecutionsForSandboxOutputFilterSensitiveLog = (obj) => ({
|
|
396
|
+
...obj,
|
|
397
|
+
...(obj.commandExecutions && {
|
|
398
|
+
commandExecutions: obj.commandExecutions.map((item) => CommandExecutionFilterSensitiveLog(item)),
|
|
399
|
+
}),
|
|
400
|
+
});
|
|
364
401
|
export const ListFleetsInputFilterSensitiveLog = (obj) => ({
|
|
365
402
|
...obj,
|
|
366
403
|
...(obj.nextToken && { nextToken: SENSITIVE_STRING }),
|
|
367
404
|
});
|
|
405
|
+
export const ListSandboxesForProjectInputFilterSensitiveLog = (obj) => ({
|
|
406
|
+
...obj,
|
|
407
|
+
...(obj.nextToken && { nextToken: SENSITIVE_STRING }),
|
|
408
|
+
});
|
|
409
|
+
export const StartCommandExecutionInputFilterSensitiveLog = (obj) => ({
|
|
410
|
+
...obj,
|
|
411
|
+
...(obj.command && { command: SENSITIVE_STRING }),
|
|
412
|
+
});
|
|
413
|
+
export const StartCommandExecutionOutputFilterSensitiveLog = (obj) => ({
|
|
414
|
+
...obj,
|
|
415
|
+
...(obj.commandExecution && { commandExecution: CommandExecutionFilterSensitiveLog(obj.commandExecution) }),
|
|
416
|
+
});
|
|
417
|
+
export const StartSandboxInputFilterSensitiveLog = (obj) => ({
|
|
418
|
+
...obj,
|
|
419
|
+
...(obj.idempotencyToken && { idempotencyToken: SENSITIVE_STRING }),
|
|
420
|
+
});
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { CodeBuildClient } from "../CodeBuildClient";
|
|
3
|
+
import { ListCommandExecutionsForSandboxCommand, } from "../commands/ListCommandExecutionsForSandboxCommand";
|
|
4
|
+
export const paginateListCommandExecutionsForSandbox = createPaginator(CodeBuildClient, ListCommandExecutionsForSandboxCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { CodeBuildClient } from "../CodeBuildClient";
|
|
3
|
+
import { ListSandboxesForProjectCommand, } from "../commands/ListSandboxesForProjectCommand";
|
|
4
|
+
export const paginateListSandboxesForProject = createPaginator(CodeBuildClient, ListSandboxesForProjectCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { CodeBuildClient } from "../CodeBuildClient";
|
|
3
|
+
import { ListSandboxesCommand, } from "../commands/ListSandboxesCommand";
|
|
4
|
+
export const paginateListSandboxes = createPaginator(CodeBuildClient, ListSandboxesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -5,10 +5,13 @@ export * from "./ListBuildBatchesForProjectPaginator";
|
|
|
5
5
|
export * from "./ListBuildBatchesPaginator";
|
|
6
6
|
export * from "./ListBuildsForProjectPaginator";
|
|
7
7
|
export * from "./ListBuildsPaginator";
|
|
8
|
+
export * from "./ListCommandExecutionsForSandboxPaginator";
|
|
8
9
|
export * from "./ListFleetsPaginator";
|
|
9
10
|
export * from "./ListProjectsPaginator";
|
|
10
11
|
export * from "./ListReportGroupsPaginator";
|
|
11
12
|
export * from "./ListReportsForReportGroupPaginator";
|
|
12
13
|
export * from "./ListReportsPaginator";
|
|
14
|
+
export * from "./ListSandboxesForProjectPaginator";
|
|
15
|
+
export * from "./ListSandboxesPaginator";
|
|
13
16
|
export * from "./ListSharedProjectsPaginator";
|
|
14
17
|
export * from "./ListSharedReportGroupsPaginator";
|