@aws-sdk/client-codecatalyst 3.948.0 → 3.953.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 +487 -335
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateAccessTokenCommand.js +2 -2
- package/dist-es/commands/CreateDevEnvironmentCommand.js +2 -2
- package/dist-es/commands/CreateProjectCommand.js +2 -2
- package/dist-es/commands/CreateSourceRepositoryBranchCommand.js +2 -2
- package/dist-es/commands/CreateSourceRepositoryCommand.js +2 -2
- package/dist-es/commands/DeleteAccessTokenCommand.js +2 -2
- package/dist-es/commands/DeleteDevEnvironmentCommand.js +2 -2
- package/dist-es/commands/DeleteProjectCommand.js +2 -2
- package/dist-es/commands/DeleteSourceRepositoryCommand.js +2 -2
- package/dist-es/commands/DeleteSpaceCommand.js +2 -2
- package/dist-es/commands/GetDevEnvironmentCommand.js +2 -2
- package/dist-es/commands/GetProjectCommand.js +2 -2
- package/dist-es/commands/GetSourceRepositoryCloneUrlsCommand.js +2 -2
- package/dist-es/commands/GetSourceRepositoryCommand.js +2 -2
- package/dist-es/commands/GetSpaceCommand.js +2 -2
- package/dist-es/commands/GetSubscriptionCommand.js +2 -2
- package/dist-es/commands/GetUserDetailsCommand.js +2 -2
- package/dist-es/commands/GetWorkflowCommand.js +2 -2
- package/dist-es/commands/GetWorkflowRunCommand.js +2 -2
- package/dist-es/commands/ListAccessTokensCommand.js +2 -2
- package/dist-es/commands/ListDevEnvironmentSessionsCommand.js +2 -2
- package/dist-es/commands/ListDevEnvironmentsCommand.js +2 -2
- package/dist-es/commands/ListEventLogsCommand.js +2 -2
- package/dist-es/commands/ListProjectsCommand.js +2 -2
- package/dist-es/commands/ListSourceRepositoriesCommand.js +2 -2
- package/dist-es/commands/ListSourceRepositoryBranchesCommand.js +2 -2
- package/dist-es/commands/ListSpacesCommand.js +2 -2
- package/dist-es/commands/ListWorkflowRunsCommand.js +2 -2
- package/dist-es/commands/ListWorkflowsCommand.js +2 -2
- package/dist-es/commands/StartDevEnvironmentCommand.js +2 -2
- package/dist-es/commands/StartDevEnvironmentSessionCommand.js +2 -2
- package/dist-es/commands/StartWorkflowRunCommand.js +2 -2
- package/dist-es/commands/StopDevEnvironmentCommand.js +2 -2
- package/dist-es/commands/StopDevEnvironmentSessionCommand.js +2 -2
- package/dist-es/commands/UpdateDevEnvironmentCommand.js +2 -2
- package/dist-es/commands/UpdateProjectCommand.js +2 -2
- package/dist-es/commands/UpdateSpaceCommand.js +2 -2
- package/dist-es/commands/VerifySessionCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +286 -284
- package/dist-types/CodeCatalystClient.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 +151 -175
- package/dist-types/ts3.4/CodeCatalystClient.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 +150 -176
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.codecatalyst",
|
|
32
|
+
version: "2022-09-28",
|
|
33
|
+
serviceTarget: "CodeCatalyst",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "CodeCatalyst",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -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 { CreateAccessToken } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAccessToken$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAccessTokenCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAccessTokenCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "CreateAccessToken", {})
|
|
13
13
|
.n("CodeCatalystClient", "CreateAccessTokenCommand")
|
|
14
|
-
.sc(CreateAccessToken)
|
|
14
|
+
.sc(CreateAccessToken$)
|
|
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 { CreateDevEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDevEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDevEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDevEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "CreateDevEnvironment", {})
|
|
13
13
|
.n("CodeCatalystClient", "CreateDevEnvironmentCommand")
|
|
14
|
-
.sc(CreateDevEnvironment)
|
|
14
|
+
.sc(CreateDevEnvironment$)
|
|
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 { CreateProject } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateProject$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateProjectCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateProjectCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "CreateProject", {})
|
|
13
13
|
.n("CodeCatalystClient", "CreateProjectCommand")
|
|
14
|
-
.sc(CreateProject)
|
|
14
|
+
.sc(CreateProject$)
|
|
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 { CreateSourceRepositoryBranch } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSourceRepositoryBranch$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSourceRepositoryBranchCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSourceRepositoryBranchCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "CreateSourceRepositoryBranch", {})
|
|
13
13
|
.n("CodeCatalystClient", "CreateSourceRepositoryBranchCommand")
|
|
14
|
-
.sc(CreateSourceRepositoryBranch)
|
|
14
|
+
.sc(CreateSourceRepositoryBranch$)
|
|
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 { CreateSourceRepository } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSourceRepository$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSourceRepositoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSourceRepositoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "CreateSourceRepository", {})
|
|
13
13
|
.n("CodeCatalystClient", "CreateSourceRepositoryCommand")
|
|
14
|
-
.sc(CreateSourceRepository)
|
|
14
|
+
.sc(CreateSourceRepository$)
|
|
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 { DeleteAccessToken } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAccessToken$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAccessTokenCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAccessTokenCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "DeleteAccessToken", {})
|
|
13
13
|
.n("CodeCatalystClient", "DeleteAccessTokenCommand")
|
|
14
|
-
.sc(DeleteAccessToken)
|
|
14
|
+
.sc(DeleteAccessToken$)
|
|
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 { DeleteDevEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDevEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDevEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDevEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "DeleteDevEnvironment", {})
|
|
13
13
|
.n("CodeCatalystClient", "DeleteDevEnvironmentCommand")
|
|
14
|
-
.sc(DeleteDevEnvironment)
|
|
14
|
+
.sc(DeleteDevEnvironment$)
|
|
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 { DeleteProject } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteProject$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteProjectCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteProjectCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "DeleteProject", {})
|
|
13
13
|
.n("CodeCatalystClient", "DeleteProjectCommand")
|
|
14
|
-
.sc(DeleteProject)
|
|
14
|
+
.sc(DeleteProject$)
|
|
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 { DeleteSourceRepository } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSourceRepository$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSourceRepositoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSourceRepositoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "DeleteSourceRepository", {})
|
|
13
13
|
.n("CodeCatalystClient", "DeleteSourceRepositoryCommand")
|
|
14
|
-
.sc(DeleteSourceRepository)
|
|
14
|
+
.sc(DeleteSourceRepository$)
|
|
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 { DeleteSpace } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSpace$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSpaceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSpaceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "DeleteSpace", {})
|
|
13
13
|
.n("CodeCatalystClient", "DeleteSpaceCommand")
|
|
14
|
-
.sc(DeleteSpace)
|
|
14
|
+
.sc(DeleteSpace$)
|
|
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 { GetDevEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDevEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDevEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDevEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "GetDevEnvironment", {})
|
|
13
13
|
.n("CodeCatalystClient", "GetDevEnvironmentCommand")
|
|
14
|
-
.sc(GetDevEnvironment)
|
|
14
|
+
.sc(GetDevEnvironment$)
|
|
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 { GetProject } from "../schemas/schemas_0";
|
|
4
|
+
import { GetProject$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetProjectCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetProjectCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "GetProject", {})
|
|
13
13
|
.n("CodeCatalystClient", "GetProjectCommand")
|
|
14
|
-
.sc(GetProject)
|
|
14
|
+
.sc(GetProject$)
|
|
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 { GetSourceRepositoryCloneUrls } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSourceRepositoryCloneUrls$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSourceRepositoryCloneUrlsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSourceRepositoryCloneUrlsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "GetSourceRepositoryCloneUrls", {})
|
|
13
13
|
.n("CodeCatalystClient", "GetSourceRepositoryCloneUrlsCommand")
|
|
14
|
-
.sc(GetSourceRepositoryCloneUrls)
|
|
14
|
+
.sc(GetSourceRepositoryCloneUrls$)
|
|
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 { GetSourceRepository } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSourceRepository$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSourceRepositoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSourceRepositoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "GetSourceRepository", {})
|
|
13
13
|
.n("CodeCatalystClient", "GetSourceRepositoryCommand")
|
|
14
|
-
.sc(GetSourceRepository)
|
|
14
|
+
.sc(GetSourceRepository$)
|
|
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 { GetSpace } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSpace$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSpaceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSpaceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "GetSpace", {})
|
|
13
13
|
.n("CodeCatalystClient", "GetSpaceCommand")
|
|
14
|
-
.sc(GetSpace)
|
|
14
|
+
.sc(GetSpace$)
|
|
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 { GetSubscription } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSubscription$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSubscriptionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSubscriptionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "GetSubscription", {})
|
|
13
13
|
.n("CodeCatalystClient", "GetSubscriptionCommand")
|
|
14
|
-
.sc(GetSubscription)
|
|
14
|
+
.sc(GetSubscription$)
|
|
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 { GetUserDetails } from "../schemas/schemas_0";
|
|
4
|
+
import { GetUserDetails$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetUserDetailsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetUserDetailsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "GetUserDetails", {})
|
|
13
13
|
.n("CodeCatalystClient", "GetUserDetailsCommand")
|
|
14
|
-
.sc(GetUserDetails)
|
|
14
|
+
.sc(GetUserDetails$)
|
|
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 { GetWorkflow } from "../schemas/schemas_0";
|
|
4
|
+
import { GetWorkflow$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetWorkflowCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetWorkflowCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "GetWorkflow", {})
|
|
13
13
|
.n("CodeCatalystClient", "GetWorkflowCommand")
|
|
14
|
-
.sc(GetWorkflow)
|
|
14
|
+
.sc(GetWorkflow$)
|
|
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 { GetWorkflowRun } from "../schemas/schemas_0";
|
|
4
|
+
import { GetWorkflowRun$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetWorkflowRunCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetWorkflowRunCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "GetWorkflowRun", {})
|
|
13
13
|
.n("CodeCatalystClient", "GetWorkflowRunCommand")
|
|
14
|
-
.sc(GetWorkflowRun)
|
|
14
|
+
.sc(GetWorkflowRun$)
|
|
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 { ListAccessTokens } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAccessTokens$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAccessTokensCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAccessTokensCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "ListAccessTokens", {})
|
|
13
13
|
.n("CodeCatalystClient", "ListAccessTokensCommand")
|
|
14
|
-
.sc(ListAccessTokens)
|
|
14
|
+
.sc(ListAccessTokens$)
|
|
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 { ListDevEnvironmentSessions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDevEnvironmentSessions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDevEnvironmentSessionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDevEnvironmentSessionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "ListDevEnvironmentSessions", {})
|
|
13
13
|
.n("CodeCatalystClient", "ListDevEnvironmentSessionsCommand")
|
|
14
|
-
.sc(ListDevEnvironmentSessions)
|
|
14
|
+
.sc(ListDevEnvironmentSessions$)
|
|
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 { ListDevEnvironments } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDevEnvironments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDevEnvironmentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDevEnvironmentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "ListDevEnvironments", {})
|
|
13
13
|
.n("CodeCatalystClient", "ListDevEnvironmentsCommand")
|
|
14
|
-
.sc(ListDevEnvironments)
|
|
14
|
+
.sc(ListDevEnvironments$)
|
|
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 { ListEventLogs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEventLogs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEventLogsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEventLogsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "ListEventLogs", {})
|
|
13
13
|
.n("CodeCatalystClient", "ListEventLogsCommand")
|
|
14
|
-
.sc(ListEventLogs)
|
|
14
|
+
.sc(ListEventLogs$)
|
|
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 { ListProjects } from "../schemas/schemas_0";
|
|
4
|
+
import { ListProjects$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListProjectsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListProjectsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "ListProjects", {})
|
|
13
13
|
.n("CodeCatalystClient", "ListProjectsCommand")
|
|
14
|
-
.sc(ListProjects)
|
|
14
|
+
.sc(ListProjects$)
|
|
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 { ListSourceRepositories } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSourceRepositories$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSourceRepositoriesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSourceRepositoriesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "ListSourceRepositories", {})
|
|
13
13
|
.n("CodeCatalystClient", "ListSourceRepositoriesCommand")
|
|
14
|
-
.sc(ListSourceRepositories)
|
|
14
|
+
.sc(ListSourceRepositories$)
|
|
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 { ListSourceRepositoryBranches } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSourceRepositoryBranches$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSourceRepositoryBranchesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSourceRepositoryBranchesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "ListSourceRepositoryBranches", {})
|
|
13
13
|
.n("CodeCatalystClient", "ListSourceRepositoryBranchesCommand")
|
|
14
|
-
.sc(ListSourceRepositoryBranches)
|
|
14
|
+
.sc(ListSourceRepositoryBranches$)
|
|
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 { ListSpaces } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSpaces$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSpacesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSpacesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "ListSpaces", {})
|
|
13
13
|
.n("CodeCatalystClient", "ListSpacesCommand")
|
|
14
|
-
.sc(ListSpaces)
|
|
14
|
+
.sc(ListSpaces$)
|
|
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 { ListWorkflowRuns } from "../schemas/schemas_0";
|
|
4
|
+
import { ListWorkflowRuns$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListWorkflowRunsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListWorkflowRunsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "ListWorkflowRuns", {})
|
|
13
13
|
.n("CodeCatalystClient", "ListWorkflowRunsCommand")
|
|
14
|
-
.sc(ListWorkflowRuns)
|
|
14
|
+
.sc(ListWorkflowRuns$)
|
|
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 { ListWorkflows } from "../schemas/schemas_0";
|
|
4
|
+
import { ListWorkflows$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListWorkflowsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListWorkflowsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "ListWorkflows", {})
|
|
13
13
|
.n("CodeCatalystClient", "ListWorkflowsCommand")
|
|
14
|
-
.sc(ListWorkflows)
|
|
14
|
+
.sc(ListWorkflows$)
|
|
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 { StartDevEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { StartDevEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartDevEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartDevEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "StartDevEnvironment", {})
|
|
13
13
|
.n("CodeCatalystClient", "StartDevEnvironmentCommand")
|
|
14
|
-
.sc(StartDevEnvironment)
|
|
14
|
+
.sc(StartDevEnvironment$)
|
|
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 { StartDevEnvironmentSession } from "../schemas/schemas_0";
|
|
4
|
+
import { StartDevEnvironmentSession$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartDevEnvironmentSessionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartDevEnvironmentSessionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "StartDevEnvironmentSession", {})
|
|
13
13
|
.n("CodeCatalystClient", "StartDevEnvironmentSessionCommand")
|
|
14
|
-
.sc(StartDevEnvironmentSession)
|
|
14
|
+
.sc(StartDevEnvironmentSession$)
|
|
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 { StartWorkflowRun } from "../schemas/schemas_0";
|
|
4
|
+
import { StartWorkflowRun$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartWorkflowRunCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartWorkflowRunCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "StartWorkflowRun", {})
|
|
13
13
|
.n("CodeCatalystClient", "StartWorkflowRunCommand")
|
|
14
|
-
.sc(StartWorkflowRun)
|
|
14
|
+
.sc(StartWorkflowRun$)
|
|
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 { StopDevEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { StopDevEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopDevEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopDevEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "StopDevEnvironment", {})
|
|
13
13
|
.n("CodeCatalystClient", "StopDevEnvironmentCommand")
|
|
14
|
-
.sc(StopDevEnvironment)
|
|
14
|
+
.sc(StopDevEnvironment$)
|
|
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 { StopDevEnvironmentSession } from "../schemas/schemas_0";
|
|
4
|
+
import { StopDevEnvironmentSession$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopDevEnvironmentSessionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopDevEnvironmentSessionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "StopDevEnvironmentSession", {})
|
|
13
13
|
.n("CodeCatalystClient", "StopDevEnvironmentSessionCommand")
|
|
14
|
-
.sc(StopDevEnvironmentSession)
|
|
14
|
+
.sc(StopDevEnvironmentSession$)
|
|
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 { UpdateDevEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateDevEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateDevEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateDevEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodeCatalyst", "UpdateDevEnvironment", {})
|
|
13
13
|
.n("CodeCatalystClient", "UpdateDevEnvironmentCommand")
|
|
14
|
-
.sc(UpdateDevEnvironment)
|
|
14
|
+
.sc(UpdateDevEnvironment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|