@aws-sdk/client-codecatalyst 3.1087.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/CodeCatalyst.d.ts +131 -154
- package/dist-types/ts3.4/CodeCatalystClient.d.ts +12 -40
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +4 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateAccessTokenCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateProjectCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateSourceRepositoryBranchCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateSourceRepositoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteAccessTokenCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteProjectCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteSourceRepositoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSpaceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetProjectCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetSourceRepositoryCloneUrlsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetSourceRepositoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSpaceCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetSubscriptionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetUserDetailsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListAccessTokensCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListDevEnvironmentSessionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListDevEnvironmentsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListEventLogsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListSourceRepositoriesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListSourceRepositoryBranchesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartDevEnvironmentSessionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartWorkflowRunCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StopDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopDevEnvironmentSessionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateDevEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateSpaceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/VerifySessionCommand.d.ts +2 -4
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListSpacesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -26
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -20
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -26
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -7
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetSpaceRequest, GetSpaceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetSpaceCommandInput extends GetSpaceRequest {}
|
|
5
|
-
export interface GetSpaceCommandOutput
|
|
6
|
-
extends GetSpaceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSpaceCommandOutput extends GetSpaceResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetSpaceCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetSpaceCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetSpaceCommandInput,
|
|
11
11
|
GetSpaceCommandOutput,
|
|
12
12
|
import("..").CodeCatalystClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetSpaceCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetSpaceCommandInput,
|
|
18
20
|
GetSpaceCommandOutput,
|
|
19
21
|
import("..").CodeCatalystClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSubscriptionRequest,
|
|
4
|
-
GetSubscriptionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSubscriptionRequest, GetSubscriptionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetSubscriptionCommandInput extends GetSubscriptionRequest {}
|
|
8
|
-
export interface GetSubscriptionCommandOutput
|
|
9
|
-
extends GetSubscriptionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSubscriptionCommandOutput extends GetSubscriptionResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetSubscriptionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetSubscriptionCommandInput
|
|
8
|
+
input: GetSubscriptionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetSubscriptionCommandInput,
|
|
16
11
|
GetSubscriptionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetSubscriptionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetSubscriptionCommandInput
|
|
17
|
+
input: GetSubscriptionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetSubscriptionCommandInput,
|
|
25
20
|
GetSubscriptionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetUserDetailsRequest,
|
|
4
|
-
GetUserDetailsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetUserDetailsRequest, GetUserDetailsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetUserDetailsCommandInput extends GetUserDetailsRequest {}
|
|
8
|
-
export interface GetUserDetailsCommandOutput
|
|
9
|
-
extends GetUserDetailsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetUserDetailsCommandOutput extends GetUserDetailsResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetUserDetailsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetUserDetailsCommandInput
|
|
8
|
+
input: GetUserDetailsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetUserDetailsCommandInput,
|
|
16
11
|
GetUserDetailsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetWorkflowCommandInput extends GetWorkflowRequest {}
|
|
5
|
-
export interface GetWorkflowCommandOutput
|
|
6
|
-
extends GetWorkflowResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetWorkflowCommandOutput extends GetWorkflowResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetWorkflowCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetWorkflowCommandInput
|
|
8
|
+
input: GetWorkflowCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetWorkflowCommandInput,
|
|
13
11
|
GetWorkflowCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetWorkflowCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetWorkflowCommandInput
|
|
17
|
+
input: GetWorkflowCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetWorkflowCommandInput,
|
|
22
20
|
GetWorkflowCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetWorkflowRunRequest,
|
|
4
|
-
GetWorkflowRunResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetWorkflowRunRequest, GetWorkflowRunResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetWorkflowRunCommandInput extends GetWorkflowRunRequest {}
|
|
8
|
-
export interface GetWorkflowRunCommandOutput
|
|
9
|
-
extends GetWorkflowRunResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetWorkflowRunCommandOutput extends GetWorkflowRunResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetWorkflowRunCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetWorkflowRunCommandInput
|
|
8
|
+
input: GetWorkflowRunCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetWorkflowRunCommandInput,
|
|
16
11
|
GetWorkflowRunCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetWorkflowRunCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetWorkflowRunCommandInput
|
|
17
|
+
input: GetWorkflowRunCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetWorkflowRunCommandInput,
|
|
25
20
|
GetWorkflowRunCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAccessTokensRequest,
|
|
4
|
-
ListAccessTokensResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAccessTokensRequest, ListAccessTokensResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListAccessTokensCommandInput extends ListAccessTokensRequest {}
|
|
8
|
-
export interface ListAccessTokensCommandOutput
|
|
9
|
-
extends ListAccessTokensResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListAccessTokensCommandOutput extends ListAccessTokensResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListAccessTokensCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListAccessTokensCommandInput
|
|
8
|
+
input: ListAccessTokensCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListAccessTokensCommandInput,
|
|
16
11
|
ListAccessTokensCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListDevEnvironmentSessionsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDevEnvironmentSessionsCommandInput
|
|
8
|
-
extends ListDevEnvironmentSessionsRequest {}
|
|
7
|
+
export interface ListDevEnvironmentSessionsCommandInput extends ListDevEnvironmentSessionsRequest {}
|
|
9
8
|
export interface ListDevEnvironmentSessionsCommandOutput
|
|
10
|
-
extends ListDevEnvironmentSessionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListDevEnvironmentSessionsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListDevEnvironmentSessionsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListDevEnvironmentSessionsCommandInput
|
|
12
|
+
input: ListDevEnvironmentSessionsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListDevEnvironmentSessionsCommandInput,
|
|
17
15
|
ListDevEnvironmentSessionsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListDevEnvironmentSessionsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListDevEnvironmentSessionsCommandInput
|
|
21
|
+
input: ListDevEnvironmentSessionsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListDevEnvironmentSessionsCommandInput,
|
|
26
24
|
ListDevEnvironmentSessionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDevEnvironmentsRequest,
|
|
4
|
-
ListDevEnvironmentsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListDevEnvironmentsRequest, ListDevEnvironmentsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDevEnvironmentsCommandInput
|
|
8
|
-
extends ListDevEnvironmentsRequest {}
|
|
4
|
+
export interface ListDevEnvironmentsCommandInput extends ListDevEnvironmentsRequest {}
|
|
9
5
|
export interface ListDevEnvironmentsCommandOutput
|
|
10
|
-
extends ListDevEnvironmentsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListDevEnvironmentsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListDevEnvironmentsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListDevEnvironmentsCommandInput
|
|
9
|
+
input: ListDevEnvironmentsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListDevEnvironmentsCommandInput,
|
|
17
12
|
ListDevEnvironmentsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListDevEnvironmentsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListDevEnvironmentsCommandInput
|
|
18
|
+
input: ListDevEnvironmentsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListDevEnvironmentsCommandInput,
|
|
26
21
|
ListDevEnvironmentsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListEventLogsRequest,
|
|
4
|
-
ListEventLogsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListEventLogsRequest, ListEventLogsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListEventLogsCommandInput extends ListEventLogsRequest {}
|
|
8
|
-
export interface ListEventLogsCommandOutput
|
|
9
|
-
extends ListEventLogsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListEventLogsCommandOutput extends ListEventLogsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListEventLogsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListEventLogsCommandInput
|
|
8
|
+
input: ListEventLogsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListEventLogsCommandInput,
|
|
16
11
|
ListEventLogsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListEventLogsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListEventLogsCommandInput
|
|
17
|
+
input: ListEventLogsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListEventLogsCommandInput,
|
|
25
20
|
ListEventLogsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListProjectsRequest, ListProjectsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListProjectsCommandInput extends ListProjectsRequest {}
|
|
5
|
-
export interface ListProjectsCommandOutput
|
|
6
|
-
extends ListProjectsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListProjectsCommandOutput extends ListProjectsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListProjectsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListProjectsCommandInput
|
|
8
|
+
input: ListProjectsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListProjectsCommandInput,
|
|
13
11
|
ListProjectsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListProjectsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListProjectsCommandInput
|
|
17
|
+
input: ListProjectsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListProjectsCommandInput,
|
|
22
20
|
ListProjectsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSourceRepositoriesRequest,
|
|
4
|
-
ListSourceRepositoriesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSourceRepositoriesRequest, ListSourceRepositoriesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSourceRepositoriesCommandInput
|
|
8
|
-
extends ListSourceRepositoriesRequest {}
|
|
4
|
+
export interface ListSourceRepositoriesCommandInput extends ListSourceRepositoriesRequest {}
|
|
9
5
|
export interface ListSourceRepositoriesCommandOutput
|
|
10
|
-
extends ListSourceRepositoriesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListSourceRepositoriesResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListSourceRepositoriesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListSourceRepositoriesCommandInput
|
|
9
|
+
input: ListSourceRepositoriesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListSourceRepositoriesCommandInput,
|
|
17
12
|
ListSourceRepositoriesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListSourceRepositoriesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListSourceRepositoriesCommandInput
|
|
18
|
+
input: ListSourceRepositoriesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListSourceRepositoriesCommandInput,
|
|
26
21
|
ListSourceRepositoriesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListSourceRepositoryBranchesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSourceRepositoryBranchesCommandInput
|
|
8
|
-
extends ListSourceRepositoryBranchesRequest {}
|
|
7
|
+
export interface ListSourceRepositoryBranchesCommandInput extends ListSourceRepositoryBranchesRequest {}
|
|
9
8
|
export interface ListSourceRepositoryBranchesCommandOutput
|
|
10
|
-
extends ListSourceRepositoryBranchesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListSourceRepositoryBranchesResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListSourceRepositoryBranchesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListSourceRepositoryBranchesCommandInput
|
|
12
|
+
input: ListSourceRepositoryBranchesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListSourceRepositoryBranchesCommandInput,
|
|
17
15
|
ListSourceRepositoryBranchesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListSourceRepositoryBranchesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListSourceRepositoryBranchesCommandInput
|
|
21
|
+
input: ListSourceRepositoryBranchesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListSourceRepositoryBranchesCommandInput,
|
|
26
24
|
ListSourceRepositoryBranchesCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListSpacesRequest, ListSpacesResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListSpacesCommandInput extends ListSpacesRequest {}
|
|
5
|
-
export interface ListSpacesCommandOutput
|
|
6
|
-
extends ListSpacesResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListSpacesCommandOutput extends ListSpacesResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListSpacesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListSpacesCommandInput
|
|
8
|
+
input: ListSpacesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListSpacesCommandInput,
|
|
13
11
|
ListSpacesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListWorkflowRunsRequest,
|
|
4
|
-
ListWorkflowRunsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListWorkflowRunsRequest, ListWorkflowRunsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListWorkflowRunsCommandInput extends ListWorkflowRunsRequest {}
|
|
8
|
-
export interface ListWorkflowRunsCommandOutput
|
|
9
|
-
extends ListWorkflowRunsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListWorkflowRunsCommandOutput extends ListWorkflowRunsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListWorkflowRunsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListWorkflowRunsCommandInput
|
|
8
|
+
input: ListWorkflowRunsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListWorkflowRunsCommandInput,
|
|
16
11
|
ListWorkflowRunsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListWorkflowRunsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListWorkflowRunsCommandInput
|
|
17
|
+
input: ListWorkflowRunsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListWorkflowRunsCommandInput,
|
|
25
20
|
ListWorkflowRunsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListWorkflowsRequest,
|
|
4
|
-
ListWorkflowsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListWorkflowsCommandInput extends ListWorkflowsRequest {}
|
|
8
|
-
export interface ListWorkflowsCommandOutput
|
|
9
|
-
extends ListWorkflowsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListWorkflowsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListWorkflowsCommandInput
|
|
8
|
+
input: ListWorkflowsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListWorkflowsCommandInput,
|
|
16
11
|
ListWorkflowsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListWorkflowsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListWorkflowsCommandInput
|
|
17
|
+
input: ListWorkflowsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListWorkflowsCommandInput,
|
|
25
20
|
ListWorkflowsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartDevEnvironmentRequest,
|
|
4
|
-
StartDevEnvironmentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartDevEnvironmentRequest, StartDevEnvironmentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartDevEnvironmentCommandInput
|
|
8
|
-
extends StartDevEnvironmentRequest {}
|
|
4
|
+
export interface StartDevEnvironmentCommandInput extends StartDevEnvironmentRequest {}
|
|
9
5
|
export interface StartDevEnvironmentCommandOutput
|
|
10
|
-
extends StartDevEnvironmentResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartDevEnvironmentResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartDevEnvironmentCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartDevEnvironmentCommandInput
|
|
9
|
+
input: StartDevEnvironmentCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartDevEnvironmentCommandInput,
|
|
17
12
|
StartDevEnvironmentCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartDevEnvironmentCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartDevEnvironmentCommandInput
|
|
18
|
+
input: StartDevEnvironmentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartDevEnvironmentCommandInput,
|
|
26
21
|
StartDevEnvironmentCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartDevEnvironmentSessionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartDevEnvironmentSessionCommandInput
|
|
8
|
-
extends StartDevEnvironmentSessionRequest {}
|
|
7
|
+
export interface StartDevEnvironmentSessionCommandInput extends StartDevEnvironmentSessionRequest {}
|
|
9
8
|
export interface StartDevEnvironmentSessionCommandOutput
|
|
10
|
-
extends StartDevEnvironmentSessionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartDevEnvironmentSessionResponse, __MetadataBearer {}
|
|
12
10
|
declare const StartDevEnvironmentSessionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartDevEnvironmentSessionCommandInput
|
|
12
|
+
input: StartDevEnvironmentSessionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartDevEnvironmentSessionCommandInput,
|
|
17
15
|
StartDevEnvironmentSessionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartDevEnvironmentSessionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartDevEnvironmentSessionCommandInput
|
|
21
|
+
input: StartDevEnvironmentSessionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartDevEnvironmentSessionCommandInput,
|
|
26
24
|
StartDevEnvironmentSessionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartWorkflowRunRequest,
|
|
4
|
-
StartWorkflowRunResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartWorkflowRunRequest, StartWorkflowRunResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartWorkflowRunCommandInput extends StartWorkflowRunRequest {}
|
|
8
|
-
export interface StartWorkflowRunCommandOutput
|
|
9
|
-
extends StartWorkflowRunResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartWorkflowRunCommandOutput extends StartWorkflowRunResponse, __MetadataBearer {}
|
|
11
6
|
declare const StartWorkflowRunCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartWorkflowRunCommandInput
|
|
8
|
+
input: StartWorkflowRunCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartWorkflowRunCommandInput,
|
|
16
11
|
StartWorkflowRunCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartWorkflowRunCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartWorkflowRunCommandInput
|
|
17
|
+
input: StartWorkflowRunCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartWorkflowRunCommandInput,
|
|
25
20
|
StartWorkflowRunCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StopDevEnvironmentRequest,
|
|
4
|
-
StopDevEnvironmentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StopDevEnvironmentRequest, StopDevEnvironmentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StopDevEnvironmentCommandInput
|
|
8
|
-
extends StopDevEnvironmentRequest {}
|
|
4
|
+
export interface StopDevEnvironmentCommandInput extends StopDevEnvironmentRequest {}
|
|
9
5
|
export interface StopDevEnvironmentCommandOutput
|
|
10
|
-
extends StopDevEnvironmentResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StopDevEnvironmentResponse, __MetadataBearer {}
|
|
12
7
|
declare const StopDevEnvironmentCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StopDevEnvironmentCommandInput
|
|
9
|
+
input: StopDevEnvironmentCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StopDevEnvironmentCommandInput,
|
|
17
12
|
StopDevEnvironmentCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StopDevEnvironmentCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StopDevEnvironmentCommandInput
|
|
18
|
+
input: StopDevEnvironmentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StopDevEnvironmentCommandInput,
|
|
26
21
|
StopDevEnvironmentCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StopDevEnvironmentSessionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StopDevEnvironmentSessionCommandInput
|
|
8
|
-
extends StopDevEnvironmentSessionRequest {}
|
|
7
|
+
export interface StopDevEnvironmentSessionCommandInput extends StopDevEnvironmentSessionRequest {}
|
|
9
8
|
export interface StopDevEnvironmentSessionCommandOutput
|
|
10
|
-
extends StopDevEnvironmentSessionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StopDevEnvironmentSessionResponse, __MetadataBearer {}
|
|
12
10
|
declare const StopDevEnvironmentSessionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StopDevEnvironmentSessionCommandInput
|
|
12
|
+
input: StopDevEnvironmentSessionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StopDevEnvironmentSessionCommandInput,
|
|
17
15
|
StopDevEnvironmentSessionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StopDevEnvironmentSessionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StopDevEnvironmentSessionCommandInput
|
|
21
|
+
input: StopDevEnvironmentSessionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StopDevEnvironmentSessionCommandInput,
|
|
26
24
|
StopDevEnvironmentSessionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateDevEnvironmentRequest,
|
|
4
|
-
UpdateDevEnvironmentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateDevEnvironmentRequest, UpdateDevEnvironmentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateDevEnvironmentCommandInput
|
|
8
|
-
extends UpdateDevEnvironmentRequest {}
|
|
4
|
+
export interface UpdateDevEnvironmentCommandInput extends UpdateDevEnvironmentRequest {}
|
|
9
5
|
export interface UpdateDevEnvironmentCommandOutput
|
|
10
|
-
extends UpdateDevEnvironmentResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateDevEnvironmentResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateDevEnvironmentCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateDevEnvironmentCommandInput
|
|
9
|
+
input: UpdateDevEnvironmentCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateDevEnvironmentCommandInput,
|
|
17
12
|
UpdateDevEnvironmentCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateDevEnvironmentCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateDevEnvironmentCommandInput
|
|
18
|
+
input: UpdateDevEnvironmentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateDevEnvironmentCommandInput,
|
|
26
21
|
UpdateDevEnvironmentCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateProjectRequest,
|
|
4
|
-
UpdateProjectResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateProjectCommandInput extends UpdateProjectRequest {}
|
|
8
|
-
export interface UpdateProjectCommandOutput
|
|
9
|
-
extends UpdateProjectResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateProjectCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateProjectCommandInput
|
|
8
|
+
input: UpdateProjectCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateProjectCommandInput,
|
|
16
11
|
UpdateProjectCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateProjectCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateProjectCommandInput
|
|
17
|
+
input: UpdateProjectCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateProjectCommandInput,
|
|
25
20
|
UpdateProjectCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateSpaceRequest, UpdateSpaceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateSpaceCommandInput extends UpdateSpaceRequest {}
|
|
5
|
-
export interface UpdateSpaceCommandOutput
|
|
6
|
-
extends UpdateSpaceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateSpaceCommandOutput extends UpdateSpaceResponse, __MetadataBearer {}
|
|
8
6
|
declare const UpdateSpaceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateSpaceCommandInput
|
|
8
|
+
input: UpdateSpaceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateSpaceCommandInput,
|
|
13
11
|
UpdateSpaceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateSpaceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateSpaceCommandInput
|
|
17
|
+
input: UpdateSpaceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateSpaceCommandInput,
|
|
22
20
|
UpdateSpaceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { VerifySessionResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface VerifySessionCommandInput {}
|
|
5
|
-
export interface VerifySessionCommandOutput
|
|
6
|
-
extends VerifySessionResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface VerifySessionCommandOutput extends VerifySessionResponse, __MetadataBearer {}
|
|
8
6
|
declare const VerifySessionCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: VerifySessionCommandInput
|
|
8
|
+
input: VerifySessionCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
VerifySessionCommandInput,
|
|
13
11
|
VerifySessionCommandOutput,
|