@aws-sdk/client-codebuild 3.952.0 → 3.954.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/dist-cjs/index.js +865 -560
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/BatchDeleteBuildsCommand.js +2 -2
- package/dist-es/commands/BatchGetBuildBatchesCommand.js +2 -2
- package/dist-es/commands/BatchGetBuildsCommand.js +2 -2
- package/dist-es/commands/BatchGetCommandExecutionsCommand.js +2 -2
- package/dist-es/commands/BatchGetFleetsCommand.js +2 -2
- package/dist-es/commands/BatchGetProjectsCommand.js +2 -2
- package/dist-es/commands/BatchGetReportGroupsCommand.js +2 -2
- package/dist-es/commands/BatchGetReportsCommand.js +2 -2
- package/dist-es/commands/BatchGetSandboxesCommand.js +2 -2
- package/dist-es/commands/CreateFleetCommand.js +2 -2
- package/dist-es/commands/CreateProjectCommand.js +2 -2
- package/dist-es/commands/CreateReportGroupCommand.js +2 -2
- package/dist-es/commands/CreateWebhookCommand.js +2 -2
- package/dist-es/commands/DeleteBuildBatchCommand.js +2 -2
- package/dist-es/commands/DeleteFleetCommand.js +2 -2
- package/dist-es/commands/DeleteProjectCommand.js +2 -2
- package/dist-es/commands/DeleteReportCommand.js +2 -2
- package/dist-es/commands/DeleteReportGroupCommand.js +2 -2
- package/dist-es/commands/DeleteResourcePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteSourceCredentialsCommand.js +2 -2
- package/dist-es/commands/DeleteWebhookCommand.js +2 -2
- package/dist-es/commands/DescribeCodeCoveragesCommand.js +2 -2
- package/dist-es/commands/DescribeTestCasesCommand.js +2 -2
- package/dist-es/commands/GetReportGroupTrendCommand.js +2 -2
- package/dist-es/commands/GetResourcePolicyCommand.js +2 -2
- package/dist-es/commands/ImportSourceCredentialsCommand.js +2 -2
- package/dist-es/commands/InvalidateProjectCacheCommand.js +2 -2
- package/dist-es/commands/ListBuildBatchesCommand.js +2 -2
- package/dist-es/commands/ListBuildBatchesForProjectCommand.js +2 -2
- package/dist-es/commands/ListBuildsCommand.js +2 -2
- package/dist-es/commands/ListBuildsForProjectCommand.js +2 -2
- package/dist-es/commands/ListCommandExecutionsForSandboxCommand.js +2 -2
- package/dist-es/commands/ListCuratedEnvironmentImagesCommand.js +2 -2
- package/dist-es/commands/ListFleetsCommand.js +2 -2
- package/dist-es/commands/ListProjectsCommand.js +2 -2
- package/dist-es/commands/ListReportGroupsCommand.js +2 -2
- package/dist-es/commands/ListReportsCommand.js +2 -2
- package/dist-es/commands/ListReportsForReportGroupCommand.js +2 -2
- package/dist-es/commands/ListSandboxesCommand.js +2 -2
- package/dist-es/commands/ListSandboxesForProjectCommand.js +2 -2
- package/dist-es/commands/ListSharedProjectsCommand.js +2 -2
- package/dist-es/commands/ListSharedReportGroupsCommand.js +2 -2
- package/dist-es/commands/ListSourceCredentialsCommand.js +2 -2
- package/dist-es/commands/PutResourcePolicyCommand.js +2 -2
- package/dist-es/commands/RetryBuildBatchCommand.js +2 -2
- package/dist-es/commands/RetryBuildCommand.js +2 -2
- package/dist-es/commands/StartBuildBatchCommand.js +2 -2
- package/dist-es/commands/StartBuildCommand.js +2 -2
- package/dist-es/commands/StartCommandExecutionCommand.js +2 -2
- package/dist-es/commands/StartSandboxCommand.js +2 -2
- package/dist-es/commands/StartSandboxConnectionCommand.js +2 -2
- package/dist-es/commands/StopBuildBatchCommand.js +2 -2
- package/dist-es/commands/StopBuildCommand.js +2 -2
- package/dist-es/commands/StopSandboxCommand.js +2 -2
- package/dist-es/commands/UpdateFleetCommand.js +2 -2
- package/dist-es/commands/UpdateProjectCommand.js +2 -2
- package/dist-es/commands/UpdateProjectVisibilityCommand.js +2 -2
- package/dist-es/commands/UpdateReportGroupCommand.js +2 -2
- package/dist-es/commands/UpdateWebhookCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +556 -507
- package/dist-types/CodeBuildClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +257 -315
- package/dist-types/ts3.4/CodeBuildClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +256 -316
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListReportGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListReportGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListReportGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListReportGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "ListReportGroups", {})
|
|
13
13
|
.n("CodeBuildClient", "ListReportGroupsCommand")
|
|
14
|
-
.sc(ListReportGroups)
|
|
14
|
+
.sc(ListReportGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListReports } from "../schemas/schemas_0";
|
|
4
|
+
import { ListReports$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListReportsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListReportsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "ListReports", {})
|
|
13
13
|
.n("CodeBuildClient", "ListReportsCommand")
|
|
14
|
-
.sc(ListReports)
|
|
14
|
+
.sc(ListReports$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListReportsForReportGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { ListReportsForReportGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListReportsForReportGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListReportsForReportGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "ListReportsForReportGroup", {})
|
|
13
13
|
.n("CodeBuildClient", "ListReportsForReportGroupCommand")
|
|
14
|
-
.sc(ListReportsForReportGroup)
|
|
14
|
+
.sc(ListReportsForReportGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSandboxes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSandboxes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSandboxesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSandboxesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "ListSandboxes", {})
|
|
13
13
|
.n("CodeBuildClient", "ListSandboxesCommand")
|
|
14
|
-
.sc(ListSandboxes)
|
|
14
|
+
.sc(ListSandboxes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSandboxesForProject } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSandboxesForProject$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSandboxesForProjectCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSandboxesForProjectCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "ListSandboxesForProject", {})
|
|
13
13
|
.n("CodeBuildClient", "ListSandboxesForProjectCommand")
|
|
14
|
-
.sc(ListSandboxesForProject)
|
|
14
|
+
.sc(ListSandboxesForProject$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSharedProjects } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSharedProjects$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSharedProjectsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSharedProjectsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "ListSharedProjects", {})
|
|
13
13
|
.n("CodeBuildClient", "ListSharedProjectsCommand")
|
|
14
|
-
.sc(ListSharedProjects)
|
|
14
|
+
.sc(ListSharedProjects$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSharedReportGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSharedReportGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSharedReportGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSharedReportGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "ListSharedReportGroups", {})
|
|
13
13
|
.n("CodeBuildClient", "ListSharedReportGroupsCommand")
|
|
14
|
-
.sc(ListSharedReportGroups)
|
|
14
|
+
.sc(ListSharedReportGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSourceCredentials } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSourceCredentials$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSourceCredentialsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSourceCredentialsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "ListSourceCredentials", {})
|
|
13
13
|
.n("CodeBuildClient", "ListSourceCredentialsCommand")
|
|
14
|
-
.sc(ListSourceCredentials)
|
|
14
|
+
.sc(ListSourceCredentials$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutResourcePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutResourcePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutResourcePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutResourcePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "PutResourcePolicy", {})
|
|
13
13
|
.n("CodeBuildClient", "PutResourcePolicyCommand")
|
|
14
|
-
.sc(PutResourcePolicy)
|
|
14
|
+
.sc(PutResourcePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RetryBuildBatch } from "../schemas/schemas_0";
|
|
4
|
+
import { RetryBuildBatch$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RetryBuildBatchCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RetryBuildBatchCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "RetryBuildBatch", {})
|
|
13
13
|
.n("CodeBuildClient", "RetryBuildBatchCommand")
|
|
14
|
-
.sc(RetryBuildBatch)
|
|
14
|
+
.sc(RetryBuildBatch$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RetryBuild } from "../schemas/schemas_0";
|
|
4
|
+
import { RetryBuild$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RetryBuildCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RetryBuildCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "RetryBuild", {})
|
|
13
13
|
.n("CodeBuildClient", "RetryBuildCommand")
|
|
14
|
-
.sc(RetryBuild)
|
|
14
|
+
.sc(RetryBuild$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartBuildBatch } from "../schemas/schemas_0";
|
|
4
|
+
import { StartBuildBatch$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartBuildBatchCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartBuildBatchCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "StartBuildBatch", {})
|
|
13
13
|
.n("CodeBuildClient", "StartBuildBatchCommand")
|
|
14
|
-
.sc(StartBuildBatch)
|
|
14
|
+
.sc(StartBuildBatch$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartBuild } from "../schemas/schemas_0";
|
|
4
|
+
import { StartBuild$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartBuildCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartBuildCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "StartBuild", {})
|
|
13
13
|
.n("CodeBuildClient", "StartBuildCommand")
|
|
14
|
-
.sc(StartBuild)
|
|
14
|
+
.sc(StartBuild$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartCommandExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { StartCommandExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartCommandExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartCommandExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "StartCommandExecution", {})
|
|
13
13
|
.n("CodeBuildClient", "StartCommandExecutionCommand")
|
|
14
|
-
.sc(StartCommandExecution)
|
|
14
|
+
.sc(StartCommandExecution$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartSandbox } from "../schemas/schemas_0";
|
|
4
|
+
import { StartSandbox$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartSandboxCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartSandboxCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "StartSandbox", {})
|
|
13
13
|
.n("CodeBuildClient", "StartSandboxCommand")
|
|
14
|
-
.sc(StartSandbox)
|
|
14
|
+
.sc(StartSandbox$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartSandboxConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { StartSandboxConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartSandboxConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartSandboxConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "StartSandboxConnection", {})
|
|
13
13
|
.n("CodeBuildClient", "StartSandboxConnectionCommand")
|
|
14
|
-
.sc(StartSandboxConnection)
|
|
14
|
+
.sc(StartSandboxConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopBuildBatch } from "../schemas/schemas_0";
|
|
4
|
+
import { StopBuildBatch$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopBuildBatchCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopBuildBatchCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "StopBuildBatch", {})
|
|
13
13
|
.n("CodeBuildClient", "StopBuildBatchCommand")
|
|
14
|
-
.sc(StopBuildBatch)
|
|
14
|
+
.sc(StopBuildBatch$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopBuild } from "../schemas/schemas_0";
|
|
4
|
+
import { StopBuild$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopBuildCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopBuildCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "StopBuild", {})
|
|
13
13
|
.n("CodeBuildClient", "StopBuildCommand")
|
|
14
|
-
.sc(StopBuild)
|
|
14
|
+
.sc(StopBuild$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopSandbox } from "../schemas/schemas_0";
|
|
4
|
+
import { StopSandbox$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopSandboxCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopSandboxCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "StopSandbox", {})
|
|
13
13
|
.n("CodeBuildClient", "StopSandboxCommand")
|
|
14
|
-
.sc(StopSandbox)
|
|
14
|
+
.sc(StopSandbox$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateFleet } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateFleet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateFleetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateFleetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "UpdateFleet", {})
|
|
13
13
|
.n("CodeBuildClient", "UpdateFleetCommand")
|
|
14
|
-
.sc(UpdateFleet)
|
|
14
|
+
.sc(UpdateFleet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateProject } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateProject$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateProjectCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateProjectCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "UpdateProject", {})
|
|
13
13
|
.n("CodeBuildClient", "UpdateProjectCommand")
|
|
14
|
-
.sc(UpdateProject)
|
|
14
|
+
.sc(UpdateProject$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateProjectVisibility } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateProjectVisibility$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateProjectVisibilityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateProjectVisibilityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "UpdateProjectVisibility", {})
|
|
13
13
|
.n("CodeBuildClient", "UpdateProjectVisibilityCommand")
|
|
14
|
-
.sc(UpdateProjectVisibility)
|
|
14
|
+
.sc(UpdateProjectVisibility$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateReportGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateReportGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateReportGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateReportGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "UpdateReportGroup", {})
|
|
13
13
|
.n("CodeBuildClient", "UpdateReportGroupCommand")
|
|
14
|
-
.sc(UpdateReportGroup)
|
|
14
|
+
.sc(UpdateReportGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateWebhook } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateWebhook$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateWebhookCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateWebhookCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeBuild_20161006", "UpdateWebhook", {})
|
|
13
13
|
.n("CodeBuildClient", "UpdateWebhookCommand")
|
|
14
|
-
.sc(UpdateWebhook)
|
|
14
|
+
.sc(UpdateWebhook$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.codebuild",
|
|
29
|
+
version: "2016-10-06",
|
|
30
|
+
serviceTarget: "CodeBuild_20161006",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "CodeBuild",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|