@aws-sdk/client-codebuild 3.782.0 → 3.784.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +72 -0
- package/dist-cjs/index.js +558 -1
- package/dist-es/CodeBuild.js +18 -0
- package/dist-es/commands/BatchGetCommandExecutionsCommand.js +23 -0
- package/dist-es/commands/BatchGetSandboxesCommand.js +22 -0
- package/dist-es/commands/ListCommandExecutionsForSandboxCommand.js +23 -0
- package/dist-es/commands/ListSandboxesCommand.js +22 -0
- package/dist-es/commands/ListSandboxesForProjectCommand.js +23 -0
- package/dist-es/commands/StartCommandExecutionCommand.js +23 -0
- package/dist-es/commands/StartSandboxCommand.js +23 -0
- package/dist-es/commands/StartSandboxConnectionCommand.js +22 -0
- package/dist-es/commands/StopSandboxCommand.js +22 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +53 -0
- package/dist-es/pagination/ListCommandExecutionsForSandboxPaginator.js +4 -0
- package/dist-es/pagination/ListSandboxesForProjectPaginator.js +4 -0
- package/dist-es/pagination/ListSandboxesPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_1.js +305 -1
- package/dist-types/CodeBuild.d.ts +65 -0
- package/dist-types/CodeBuildClient.d.ts +11 -2
- package/dist-types/commands/BatchGetCommandExecutionsCommand.d.ts +115 -0
- package/dist-types/commands/BatchGetSandboxesCommand.d.ts +248 -0
- package/dist-types/commands/ListCommandExecutionsForSandboxCommand.d.ts +116 -0
- package/dist-types/commands/ListSandboxesCommand.d.ts +80 -0
- package/dist-types/commands/ListSandboxesForProjectCommand.d.ts +84 -0
- package/dist-types/commands/StartCommandExecutionCommand.d.ts +112 -0
- package/dist-types/commands/StartSandboxCommand.d.ts +248 -0
- package/dist-types/commands/StartSandboxConnectionCommand.d.ts +82 -0
- package/dist-types/commands/StopSandboxCommand.d.ts +244 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +639 -0
- package/dist-types/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSandboxesForProjectPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSandboxesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +81 -0
- package/dist-types/ts3.4/CodeBuild.d.ts +155 -0
- package/dist-types/ts3.4/CodeBuildClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/BatchGetCommandExecutionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetSandboxesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListCommandExecutionsForSandboxCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSandboxesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListSandboxesForProjectCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartCommandExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartSandboxCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StartSandboxConnectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopSandboxCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +167 -0
- package/dist-types/ts3.4/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSandboxesForProjectPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSandboxesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +108 -0
- package/package.json +1 -1
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CodeBuildClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CodeBuildClient";
|
|
8
|
+
import {
|
|
9
|
+
BatchGetSandboxesInput,
|
|
10
|
+
BatchGetSandboxesOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchGetSandboxesCommandInput extends BatchGetSandboxesInput {}
|
|
15
|
+
export interface BatchGetSandboxesCommandOutput
|
|
16
|
+
extends BatchGetSandboxesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const BatchGetSandboxesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: BatchGetSandboxesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
BatchGetSandboxesCommandInput,
|
|
23
|
+
BatchGetSandboxesCommandOutput,
|
|
24
|
+
CodeBuildClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: BatchGetSandboxesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
BatchGetSandboxesCommandInput,
|
|
32
|
+
BatchGetSandboxesCommandOutput,
|
|
33
|
+
CodeBuildClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class BatchGetSandboxesCommand extends BatchGetSandboxesCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: BatchGetSandboxesInput;
|
|
43
|
+
output: BatchGetSandboxesOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: BatchGetSandboxesCommandInput;
|
|
47
|
+
output: BatchGetSandboxesCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CodeBuildClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CodeBuildClient";
|
|
8
|
+
import {
|
|
9
|
+
ListCommandExecutionsForSandboxInput,
|
|
10
|
+
ListCommandExecutionsForSandboxOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListCommandExecutionsForSandboxCommandInput
|
|
15
|
+
extends ListCommandExecutionsForSandboxInput {}
|
|
16
|
+
export interface ListCommandExecutionsForSandboxCommandOutput
|
|
17
|
+
extends ListCommandExecutionsForSandboxOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListCommandExecutionsForSandboxCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListCommandExecutionsForSandboxCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListCommandExecutionsForSandboxCommandInput,
|
|
24
|
+
ListCommandExecutionsForSandboxCommandOutput,
|
|
25
|
+
CodeBuildClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListCommandExecutionsForSandboxCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListCommandExecutionsForSandboxCommandInput,
|
|
33
|
+
ListCommandExecutionsForSandboxCommandOutput,
|
|
34
|
+
CodeBuildClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListCommandExecutionsForSandboxCommand extends ListCommandExecutionsForSandboxCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListCommandExecutionsForSandboxInput;
|
|
44
|
+
output: ListCommandExecutionsForSandboxOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListCommandExecutionsForSandboxCommandInput;
|
|
48
|
+
output: ListCommandExecutionsForSandboxCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CodeBuildClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CodeBuildClient";
|
|
8
|
+
import { ListSandboxesInput, ListSandboxesOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListSandboxesCommandInput extends ListSandboxesInput {}
|
|
12
|
+
export interface ListSandboxesCommandOutput
|
|
13
|
+
extends ListSandboxesOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListSandboxesCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListSandboxesCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListSandboxesCommandInput,
|
|
20
|
+
ListSandboxesCommandOutput,
|
|
21
|
+
CodeBuildClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListSandboxesCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListSandboxesCommandInput,
|
|
29
|
+
ListSandboxesCommandOutput,
|
|
30
|
+
CodeBuildClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListSandboxesCommand extends ListSandboxesCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListSandboxesInput;
|
|
40
|
+
output: ListSandboxesOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListSandboxesCommandInput;
|
|
44
|
+
output: ListSandboxesCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CodeBuildClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CodeBuildClient";
|
|
8
|
+
import {
|
|
9
|
+
ListSandboxesForProjectInput,
|
|
10
|
+
ListSandboxesForProjectOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListSandboxesForProjectCommandInput
|
|
15
|
+
extends ListSandboxesForProjectInput {}
|
|
16
|
+
export interface ListSandboxesForProjectCommandOutput
|
|
17
|
+
extends ListSandboxesForProjectOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListSandboxesForProjectCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListSandboxesForProjectCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListSandboxesForProjectCommandInput,
|
|
24
|
+
ListSandboxesForProjectCommandOutput,
|
|
25
|
+
CodeBuildClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListSandboxesForProjectCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListSandboxesForProjectCommandInput,
|
|
33
|
+
ListSandboxesForProjectCommandOutput,
|
|
34
|
+
CodeBuildClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListSandboxesForProjectCommand extends ListSandboxesForProjectCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListSandboxesForProjectInput;
|
|
44
|
+
output: ListSandboxesForProjectOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListSandboxesForProjectCommandInput;
|
|
48
|
+
output: ListSandboxesForProjectCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CodeBuildClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CodeBuildClient";
|
|
8
|
+
import {
|
|
9
|
+
StartCommandExecutionInput,
|
|
10
|
+
StartCommandExecutionOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartCommandExecutionCommandInput
|
|
15
|
+
extends StartCommandExecutionInput {}
|
|
16
|
+
export interface StartCommandExecutionCommandOutput
|
|
17
|
+
extends StartCommandExecutionOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartCommandExecutionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartCommandExecutionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartCommandExecutionCommandInput,
|
|
24
|
+
StartCommandExecutionCommandOutput,
|
|
25
|
+
CodeBuildClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartCommandExecutionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartCommandExecutionCommandInput,
|
|
33
|
+
StartCommandExecutionCommandOutput,
|
|
34
|
+
CodeBuildClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartCommandExecutionCommand extends StartCommandExecutionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartCommandExecutionInput;
|
|
44
|
+
output: StartCommandExecutionOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartCommandExecutionCommandInput;
|
|
48
|
+
output: StartCommandExecutionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CodeBuildClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CodeBuildClient";
|
|
8
|
+
import { StartSandboxInput, StartSandboxOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface StartSandboxCommandInput extends StartSandboxInput {}
|
|
12
|
+
export interface StartSandboxCommandOutput
|
|
13
|
+
extends StartSandboxOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const StartSandboxCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: StartSandboxCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
StartSandboxCommandInput,
|
|
20
|
+
StartSandboxCommandOutput,
|
|
21
|
+
CodeBuildClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [StartSandboxCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
StartSandboxCommandInput,
|
|
29
|
+
StartSandboxCommandOutput,
|
|
30
|
+
CodeBuildClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class StartSandboxCommand extends StartSandboxCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: StartSandboxInput;
|
|
40
|
+
output: StartSandboxOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: StartSandboxCommandInput;
|
|
44
|
+
output: StartSandboxCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CodeBuildClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CodeBuildClient";
|
|
8
|
+
import {
|
|
9
|
+
StartSandboxConnectionInput,
|
|
10
|
+
StartSandboxConnectionOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartSandboxConnectionCommandInput
|
|
15
|
+
extends StartSandboxConnectionInput {}
|
|
16
|
+
export interface StartSandboxConnectionCommandOutput
|
|
17
|
+
extends StartSandboxConnectionOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartSandboxConnectionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartSandboxConnectionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartSandboxConnectionCommandInput,
|
|
24
|
+
StartSandboxConnectionCommandOutput,
|
|
25
|
+
CodeBuildClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartSandboxConnectionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartSandboxConnectionCommandInput,
|
|
33
|
+
StartSandboxConnectionCommandOutput,
|
|
34
|
+
CodeBuildClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartSandboxConnectionCommand extends StartSandboxConnectionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartSandboxConnectionInput;
|
|
44
|
+
output: StartSandboxConnectionOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartSandboxConnectionCommandInput;
|
|
48
|
+
output: StartSandboxConnectionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CodeBuildClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CodeBuildClient";
|
|
8
|
+
import { StopSandboxInput, StopSandboxOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface StopSandboxCommandInput extends StopSandboxInput {}
|
|
12
|
+
export interface StopSandboxCommandOutput
|
|
13
|
+
extends StopSandboxOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const StopSandboxCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: StopSandboxCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
StopSandboxCommandInput,
|
|
20
|
+
StopSandboxCommandOutput,
|
|
21
|
+
CodeBuildClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: StopSandboxCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
StopSandboxCommandInput,
|
|
29
|
+
StopSandboxCommandOutput,
|
|
30
|
+
CodeBuildClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class StopSandboxCommand extends StopSandboxCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: StopSandboxInput;
|
|
40
|
+
output: StopSandboxOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: StopSandboxCommandInput;
|
|
44
|
+
output: StopSandboxCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export * from "./BatchDeleteBuildsCommand";
|
|
2
2
|
export * from "./BatchGetBuildBatchesCommand";
|
|
3
3
|
export * from "./BatchGetBuildsCommand";
|
|
4
|
+
export * from "./BatchGetCommandExecutionsCommand";
|
|
4
5
|
export * from "./BatchGetFleetsCommand";
|
|
5
6
|
export * from "./BatchGetProjectsCommand";
|
|
6
7
|
export * from "./BatchGetReportGroupsCommand";
|
|
7
8
|
export * from "./BatchGetReportsCommand";
|
|
9
|
+
export * from "./BatchGetSandboxesCommand";
|
|
8
10
|
export * from "./CreateFleetCommand";
|
|
9
11
|
export * from "./CreateProjectCommand";
|
|
10
12
|
export * from "./CreateReportGroupCommand";
|
|
@@ -27,12 +29,15 @@ export * from "./ListBuildBatchesCommand";
|
|
|
27
29
|
export * from "./ListBuildBatchesForProjectCommand";
|
|
28
30
|
export * from "./ListBuildsCommand";
|
|
29
31
|
export * from "./ListBuildsForProjectCommand";
|
|
32
|
+
export * from "./ListCommandExecutionsForSandboxCommand";
|
|
30
33
|
export * from "./ListCuratedEnvironmentImagesCommand";
|
|
31
34
|
export * from "./ListFleetsCommand";
|
|
32
35
|
export * from "./ListProjectsCommand";
|
|
33
36
|
export * from "./ListReportGroupsCommand";
|
|
34
37
|
export * from "./ListReportsCommand";
|
|
35
38
|
export * from "./ListReportsForReportGroupCommand";
|
|
39
|
+
export * from "./ListSandboxesCommand";
|
|
40
|
+
export * from "./ListSandboxesForProjectCommand";
|
|
36
41
|
export * from "./ListSharedProjectsCommand";
|
|
37
42
|
export * from "./ListSharedReportGroupsCommand";
|
|
38
43
|
export * from "./ListSourceCredentialsCommand";
|
|
@@ -41,8 +46,12 @@ export * from "./RetryBuildBatchCommand";
|
|
|
41
46
|
export * from "./RetryBuildCommand";
|
|
42
47
|
export * from "./StartBuildBatchCommand";
|
|
43
48
|
export * from "./StartBuildCommand";
|
|
49
|
+
export * from "./StartCommandExecutionCommand";
|
|
50
|
+
export * from "./StartSandboxCommand";
|
|
51
|
+
export * from "./StartSandboxConnectionCommand";
|
|
44
52
|
export * from "./StopBuildBatchCommand";
|
|
45
53
|
export * from "./StopBuildCommand";
|
|
54
|
+
export * from "./StopSandboxCommand";
|
|
46
55
|
export * from "./UpdateFleetCommand";
|
|
47
56
|
export * from "./UpdateProjectCommand";
|
|
48
57
|
export * from "./UpdateProjectVisibilityCommand";
|
|
@@ -7,6 +7,13 @@ export declare class AccountLimitExceededException extends __BaseException {
|
|
|
7
7
|
opts: __ExceptionOptionType<AccountLimitExceededException, __BaseException>
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
|
+
export declare class AccountSuspendedException extends __BaseException {
|
|
11
|
+
readonly name: "AccountSuspendedException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<AccountSuspendedException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
10
17
|
export declare const ArtifactNamespace: {
|
|
11
18
|
readonly BUILD_ID: "BUILD_ID";
|
|
12
19
|
readonly NONE: "NONE";
|
|
@@ -454,6 +461,33 @@ export interface BatchGetBuildsOutput {
|
|
|
454
461
|
builds?: Build[] | undefined;
|
|
455
462
|
buildsNotFound?: string[] | undefined;
|
|
456
463
|
}
|
|
464
|
+
export interface BatchGetCommandExecutionsInput {
|
|
465
|
+
sandboxId: string | undefined;
|
|
466
|
+
commandExecutionIds: string[] | undefined;
|
|
467
|
+
}
|
|
468
|
+
export declare const CommandType: {
|
|
469
|
+
readonly SHELL: "SHELL";
|
|
470
|
+
};
|
|
471
|
+
export type CommandType = (typeof CommandType)[keyof typeof CommandType];
|
|
472
|
+
export interface CommandExecution {
|
|
473
|
+
id?: string | undefined;
|
|
474
|
+
sandboxId?: string | undefined;
|
|
475
|
+
submitTime?: Date | undefined;
|
|
476
|
+
startTime?: Date | undefined;
|
|
477
|
+
endTime?: Date | undefined;
|
|
478
|
+
status?: string | undefined;
|
|
479
|
+
command?: string | undefined;
|
|
480
|
+
type?: CommandType | undefined;
|
|
481
|
+
exitCode?: string | undefined;
|
|
482
|
+
standardOutputContent?: string | undefined;
|
|
483
|
+
standardErrContent?: string | undefined;
|
|
484
|
+
logs?: LogsLocation | undefined;
|
|
485
|
+
sandboxArn?: string | undefined;
|
|
486
|
+
}
|
|
487
|
+
export interface BatchGetCommandExecutionsOutput {
|
|
488
|
+
commandExecutions?: CommandExecution[] | undefined;
|
|
489
|
+
commandExecutionsNotFound?: string[] | undefined;
|
|
490
|
+
}
|
|
457
491
|
export interface BatchGetFleetsInput {
|
|
458
492
|
names: string[] | undefined;
|
|
459
493
|
}
|
|
@@ -779,6 +813,54 @@ export interface BatchGetReportsOutput {
|
|
|
779
813
|
reports?: Report[] | undefined;
|
|
780
814
|
reportsNotFound?: string[] | undefined;
|
|
781
815
|
}
|
|
816
|
+
export interface BatchGetSandboxesInput {
|
|
817
|
+
ids: string[] | undefined;
|
|
818
|
+
}
|
|
819
|
+
export interface SandboxSessionPhase {
|
|
820
|
+
phaseType?: string | undefined;
|
|
821
|
+
phaseStatus?: StatusType | undefined;
|
|
822
|
+
startTime?: Date | undefined;
|
|
823
|
+
endTime?: Date | undefined;
|
|
824
|
+
durationInSeconds?: number | undefined;
|
|
825
|
+
contexts?: PhaseContext[] | undefined;
|
|
826
|
+
}
|
|
827
|
+
export interface SandboxSession {
|
|
828
|
+
id?: string | undefined;
|
|
829
|
+
status?: string | undefined;
|
|
830
|
+
startTime?: Date | undefined;
|
|
831
|
+
endTime?: Date | undefined;
|
|
832
|
+
currentPhase?: string | undefined;
|
|
833
|
+
phases?: SandboxSessionPhase[] | undefined;
|
|
834
|
+
resolvedSourceVersion?: string | undefined;
|
|
835
|
+
logs?: LogsLocation | undefined;
|
|
836
|
+
networkInterface?: NetworkInterface | undefined;
|
|
837
|
+
}
|
|
838
|
+
export interface Sandbox {
|
|
839
|
+
id?: string | undefined;
|
|
840
|
+
arn?: string | undefined;
|
|
841
|
+
projectName?: string | undefined;
|
|
842
|
+
requestTime?: Date | undefined;
|
|
843
|
+
startTime?: Date | undefined;
|
|
844
|
+
endTime?: Date | undefined;
|
|
845
|
+
status?: string | undefined;
|
|
846
|
+
source?: ProjectSource | undefined;
|
|
847
|
+
sourceVersion?: string | undefined;
|
|
848
|
+
secondarySources?: ProjectSource[] | undefined;
|
|
849
|
+
secondarySourceVersions?: ProjectSourceVersion[] | undefined;
|
|
850
|
+
environment?: ProjectEnvironment | undefined;
|
|
851
|
+
fileSystemLocations?: ProjectFileSystemLocation[] | undefined;
|
|
852
|
+
timeoutInMinutes?: number | undefined;
|
|
853
|
+
queuedTimeoutInMinutes?: number | undefined;
|
|
854
|
+
vpcConfig?: VpcConfig | undefined;
|
|
855
|
+
logConfig?: LogsConfig | undefined;
|
|
856
|
+
encryptionKey?: string | undefined;
|
|
857
|
+
serviceRole?: string | undefined;
|
|
858
|
+
currentSession?: SandboxSession | undefined;
|
|
859
|
+
}
|
|
860
|
+
export interface BatchGetSandboxesOutput {
|
|
861
|
+
sandboxes?: Sandbox[] | undefined;
|
|
862
|
+
sandboxesNotFound?: string[] | undefined;
|
|
863
|
+
}
|
|
782
864
|
export interface BuildBatchFilter {
|
|
783
865
|
status?: StatusType | undefined;
|
|
784
866
|
}
|
|
@@ -1071,6 +1153,16 @@ export interface ListBuildsForProjectOutput {
|
|
|
1071
1153
|
ids?: string[] | undefined;
|
|
1072
1154
|
nextToken?: string | undefined;
|
|
1073
1155
|
}
|
|
1156
|
+
export interface ListCommandExecutionsForSandboxInput {
|
|
1157
|
+
sandboxId: string | undefined;
|
|
1158
|
+
maxResults?: number | undefined;
|
|
1159
|
+
sortOrder?: SortOrderType | undefined;
|
|
1160
|
+
nextToken?: string | undefined;
|
|
1161
|
+
}
|
|
1162
|
+
export interface ListCommandExecutionsForSandboxOutput {
|
|
1163
|
+
commandExecutions?: CommandExecution[] | undefined;
|
|
1164
|
+
nextToken?: string | undefined;
|
|
1165
|
+
}
|
|
1074
1166
|
export interface ListCuratedEnvironmentImagesInput {}
|
|
1075
1167
|
export interface EnvironmentImage {
|
|
1076
1168
|
name?: string | undefined;
|
|
@@ -1182,6 +1274,25 @@ export interface ListReportsForReportGroupOutput {
|
|
|
1182
1274
|
nextToken?: string | undefined;
|
|
1183
1275
|
reports?: string[] | undefined;
|
|
1184
1276
|
}
|
|
1277
|
+
export interface ListSandboxesInput {
|
|
1278
|
+
maxResults?: number | undefined;
|
|
1279
|
+
sortOrder?: SortOrderType | undefined;
|
|
1280
|
+
nextToken?: string | undefined;
|
|
1281
|
+
}
|
|
1282
|
+
export interface ListSandboxesOutput {
|
|
1283
|
+
ids?: string[] | undefined;
|
|
1284
|
+
nextToken?: string | undefined;
|
|
1285
|
+
}
|
|
1286
|
+
export interface ListSandboxesForProjectInput {
|
|
1287
|
+
projectName: string | undefined;
|
|
1288
|
+
maxResults?: number | undefined;
|
|
1289
|
+
sortOrder?: SortOrderType | undefined;
|
|
1290
|
+
nextToken?: string | undefined;
|
|
1291
|
+
}
|
|
1292
|
+
export interface ListSandboxesForProjectOutput {
|
|
1293
|
+
ids?: string[] | undefined;
|
|
1294
|
+
nextToken?: string | undefined;
|
|
1295
|
+
}
|
|
1185
1296
|
export declare const SharedResourceSortByType: {
|
|
1186
1297
|
readonly ARN: "ARN";
|
|
1187
1298
|
readonly MODIFIED_TIME: "MODIFIED_TIME";
|
|
@@ -1320,6 +1431,32 @@ export interface StartBuildBatchInput {
|
|
|
1320
1431
|
export interface StartBuildBatchOutput {
|
|
1321
1432
|
buildBatch?: BuildBatch | undefined;
|
|
1322
1433
|
}
|
|
1434
|
+
export interface StartCommandExecutionInput {
|
|
1435
|
+
sandboxId: string | undefined;
|
|
1436
|
+
command: string | undefined;
|
|
1437
|
+
type?: CommandType | undefined;
|
|
1438
|
+
}
|
|
1439
|
+
export interface StartCommandExecutionOutput {
|
|
1440
|
+
commandExecution?: CommandExecution | undefined;
|
|
1441
|
+
}
|
|
1442
|
+
export interface StartSandboxInput {
|
|
1443
|
+
projectName?: string | undefined;
|
|
1444
|
+
idempotencyToken?: string | undefined;
|
|
1445
|
+
}
|
|
1446
|
+
export interface StartSandboxOutput {
|
|
1447
|
+
sandbox?: Sandbox | undefined;
|
|
1448
|
+
}
|
|
1449
|
+
export interface StartSandboxConnectionInput {
|
|
1450
|
+
sandboxId: string | undefined;
|
|
1451
|
+
}
|
|
1452
|
+
export interface SSMSession {
|
|
1453
|
+
sessionId?: string | undefined;
|
|
1454
|
+
tokenValue?: string | undefined;
|
|
1455
|
+
streamUrl?: string | undefined;
|
|
1456
|
+
}
|
|
1457
|
+
export interface StartSandboxConnectionOutput {
|
|
1458
|
+
ssmSession?: SSMSession | undefined;
|
|
1459
|
+
}
|
|
1323
1460
|
export interface StopBuildInput {
|
|
1324
1461
|
id: string | undefined;
|
|
1325
1462
|
}
|
|
@@ -1332,6 +1469,12 @@ export interface StopBuildBatchInput {
|
|
|
1332
1469
|
export interface StopBuildBatchOutput {
|
|
1333
1470
|
buildBatch?: BuildBatch | undefined;
|
|
1334
1471
|
}
|
|
1472
|
+
export interface StopSandboxInput {
|
|
1473
|
+
id: string | undefined;
|
|
1474
|
+
}
|
|
1475
|
+
export interface StopSandboxOutput {
|
|
1476
|
+
sandbox?: Sandbox | undefined;
|
|
1477
|
+
}
|
|
1335
1478
|
export interface UpdateFleetInput {
|
|
1336
1479
|
arn: string | undefined;
|
|
1337
1480
|
baseCapacity?: number | undefined;
|
|
@@ -1404,9 +1547,33 @@ export interface UpdateWebhookInput {
|
|
|
1404
1547
|
export interface UpdateWebhookOutput {
|
|
1405
1548
|
webhook?: Webhook | undefined;
|
|
1406
1549
|
}
|
|
1550
|
+
export declare const CommandExecutionFilterSensitiveLog: (
|
|
1551
|
+
obj: CommandExecution
|
|
1552
|
+
) => any;
|
|
1553
|
+
export declare const BatchGetCommandExecutionsOutputFilterSensitiveLog: (
|
|
1554
|
+
obj: BatchGetCommandExecutionsOutput
|
|
1555
|
+
) => any;
|
|
1407
1556
|
export declare const ImportSourceCredentialsInputFilterSensitiveLog: (
|
|
1408
1557
|
obj: ImportSourceCredentialsInput
|
|
1409
1558
|
) => any;
|
|
1559
|
+
export declare const ListCommandExecutionsForSandboxInputFilterSensitiveLog: (
|
|
1560
|
+
obj: ListCommandExecutionsForSandboxInput
|
|
1561
|
+
) => any;
|
|
1562
|
+
export declare const ListCommandExecutionsForSandboxOutputFilterSensitiveLog: (
|
|
1563
|
+
obj: ListCommandExecutionsForSandboxOutput
|
|
1564
|
+
) => any;
|
|
1410
1565
|
export declare const ListFleetsInputFilterSensitiveLog: (
|
|
1411
1566
|
obj: ListFleetsInput
|
|
1412
1567
|
) => any;
|
|
1568
|
+
export declare const ListSandboxesForProjectInputFilterSensitiveLog: (
|
|
1569
|
+
obj: ListSandboxesForProjectInput
|
|
1570
|
+
) => any;
|
|
1571
|
+
export declare const StartCommandExecutionInputFilterSensitiveLog: (
|
|
1572
|
+
obj: StartCommandExecutionInput
|
|
1573
|
+
) => any;
|
|
1574
|
+
export declare const StartCommandExecutionOutputFilterSensitiveLog: (
|
|
1575
|
+
obj: StartCommandExecutionOutput
|
|
1576
|
+
) => any;
|
|
1577
|
+
export declare const StartSandboxInputFilterSensitiveLog: (
|
|
1578
|
+
obj: StartSandboxInput
|
|
1579
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCommandExecutionsForSandboxCommandInput,
|
|
4
|
+
ListCommandExecutionsForSandboxCommandOutput,
|
|
5
|
+
} from "../commands/ListCommandExecutionsForSandboxCommand";
|
|
6
|
+
import { CodeBuildPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListCommandExecutionsForSandbox: (
|
|
8
|
+
config: CodeBuildPaginationConfiguration,
|
|
9
|
+
input: ListCommandExecutionsForSandboxCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCommandExecutionsForSandboxCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSandboxesForProjectCommandInput,
|
|
4
|
+
ListSandboxesForProjectCommandOutput,
|
|
5
|
+
} from "../commands/ListSandboxesForProjectCommand";
|
|
6
|
+
import { CodeBuildPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListSandboxesForProject: (
|
|
8
|
+
config: CodeBuildPaginationConfiguration,
|
|
9
|
+
input: ListSandboxesForProjectCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSandboxesForProjectCommandOutput>;
|