@aws-sdk/client-codebuild 3.296.0 → 3.297.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-types/CodeBuild.d.ts +46 -0
- package/dist-types/CodeBuildClient.d.ts +24 -4
- package/dist-types/commands/BatchDeleteBuildsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetBuildBatchesCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetBuildsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetProjectsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetReportGroupsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetReportsCommand.d.ts +16 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +16 -0
- package/dist-types/commands/CreateReportGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateWebhookCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBuildBatchCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +16 -0
- package/dist-types/commands/DeleteReportCommand.d.ts +16 -0
- package/dist-types/commands/DeleteReportGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSourceCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWebhookCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCodeCoveragesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTestCasesCommand.d.ts +16 -0
- package/dist-types/commands/GetReportGroupTrendCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/ImportSourceCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/InvalidateProjectCacheCommand.d.ts +16 -0
- package/dist-types/commands/ListBuildBatchesCommand.d.ts +16 -0
- package/dist-types/commands/ListBuildBatchesForProjectCommand.d.ts +16 -0
- package/dist-types/commands/ListBuildsCommand.d.ts +16 -0
- package/dist-types/commands/ListBuildsForProjectCommand.d.ts +16 -0
- package/dist-types/commands/ListCuratedEnvironmentImagesCommand.d.ts +16 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +16 -0
- package/dist-types/commands/ListReportGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListReportsCommand.d.ts +16 -0
- package/dist-types/commands/ListReportsForReportGroupCommand.d.ts +16 -0
- package/dist-types/commands/ListSharedProjectsCommand.d.ts +16 -0
- package/dist-types/commands/ListSharedReportGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListSourceCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/RetryBuildBatchCommand.d.ts +16 -0
- package/dist-types/commands/RetryBuildCommand.d.ts +16 -0
- package/dist-types/commands/StartBuildBatchCommand.d.ts +16 -0
- package/dist-types/commands/StartBuildCommand.d.ts +16 -0
- package/dist-types/commands/StopBuildBatchCommand.d.ts +16 -0
- package/dist-types/commands/StopBuildCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProjectVisibilityCommand.d.ts +16 -0
- package/dist-types/commands/UpdateReportGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWebhookCommand.d.ts +16 -0
- package/dist-types/models/CodeBuildServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +444 -2
- package/dist-types/pagination/DescribeCodeCoveragesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeTestCasesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListBuildBatchesForProjectPaginator.d.ts +3 -0
- package/dist-types/pagination/ListBuildBatchesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListBuildsForProjectPaginator.d.ts +3 -0
- package/dist-types/pagination/ListBuildsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProjectsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListReportGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListReportsForReportGroupPaginator.d.ts +3 -0
- package/dist-types/pagination/ListReportsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSharedProjectsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSharedReportGroupsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { ListReportsForReportGroupInput, ListReportsForReportGroupOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListReportsForReportGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListReportsForReportGroupCommandInput extends ListReportsForReportGroupInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListReportsForReportGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListReportsForReportGroupCommandOutput extends ListReportsForReportGroupOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Returns a list of ARNs for the reports that belong to a <code>ReportGroup</code>.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface ListReportsForReportGroupCommandOutput extends ListReportsForRe
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListReportsForReportGroupCommandInput - {@link ListReportsForReportGroupCommandInput}
|
|
36
|
+
* @returns {@link ListReportsForReportGroupCommandOutput}
|
|
30
37
|
* @see {@link ListReportsForReportGroupCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListReportsForReportGroupCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface ListReportsForReportGroupCommandOutput extends ListReportsForRe
|
|
|
42
49
|
export declare class ListReportsForReportGroupCommand extends $Command<ListReportsForReportGroupCommandInput, ListReportsForReportGroupCommandOutput, CodeBuildClientResolvedConfig> {
|
|
43
50
|
readonly input: ListReportsForReportGroupCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: ListReportsForReportGroupCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListReportsForReportGroupCommandInput, ListReportsForReportGroupCommandOutput>;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
50
63
|
private serialize;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
51
67
|
private deserialize;
|
|
52
68
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { ListSharedProjectsInput, ListSharedProjectsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSharedProjectsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSharedProjectsCommandInput extends ListSharedProjectsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSharedProjectsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSharedProjectsCommandOutput extends ListSharedProjectsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets a list of projects that are shared with other Amazon Web Services accounts or users. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListSharedProjectsCommandOutput extends ListSharedProjectsOutpu
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListSharedProjectsCommandInput - {@link ListSharedProjectsCommandInput}
|
|
34
|
+
* @returns {@link ListSharedProjectsCommandOutput}
|
|
28
35
|
* @see {@link ListSharedProjectsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListSharedProjectsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface ListSharedProjectsCommandOutput extends ListSharedProjectsOutpu
|
|
|
37
44
|
export declare class ListSharedProjectsCommand extends $Command<ListSharedProjectsCommandInput, ListSharedProjectsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
38
45
|
readonly input: ListSharedProjectsCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: ListSharedProjectsCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSharedProjectsCommandInput, ListSharedProjectsCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { ListSharedReportGroupsInput, ListSharedReportGroupsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSharedReportGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSharedReportGroupsCommandInput extends ListSharedReportGroupsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSharedReportGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSharedReportGroupsCommandOutput extends ListSharedReportGroupsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets a list of report groups that are shared with other Amazon Web Services accounts or users.
|
|
18
23
|
* </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListSharedReportGroupsCommandOutput extends ListSharedReportGro
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListSharedReportGroupsCommandInput - {@link ListSharedReportGroupsCommandInput}
|
|
35
|
+
* @returns {@link ListSharedReportGroupsCommandOutput}
|
|
29
36
|
* @see {@link ListSharedReportGroupsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListSharedReportGroupsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -38,11 +45,20 @@ export interface ListSharedReportGroupsCommandOutput extends ListSharedReportGro
|
|
|
38
45
|
export declare class ListSharedReportGroupsCommand extends $Command<ListSharedReportGroupsCommandInput, ListSharedReportGroupsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
39
46
|
readonly input: ListSharedReportGroupsCommandInput;
|
|
40
47
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
41
51
|
constructor(input: ListSharedReportGroupsCommandInput);
|
|
42
52
|
/**
|
|
43
53
|
* @internal
|
|
44
54
|
*/
|
|
45
55
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSharedReportGroupsCommandInput, ListSharedReportGroupsCommandOutput>;
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
46
59
|
private serialize;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
47
63
|
private deserialize;
|
|
48
64
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { ListSourceCredentialsInput, ListSourceCredentialsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSourceCredentialsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSourceCredentialsCommandInput extends ListSourceCredentialsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSourceCredentialsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSourceCredentialsCommandOutput extends ListSourceCredentialsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns a list of <code>SourceCredentialsInfo</code> objects. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListSourceCredentialsCommandOutput extends ListSourceCredential
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListSourceCredentialsCommandInput - {@link ListSourceCredentialsCommandInput}
|
|
34
|
+
* @returns {@link ListSourceCredentialsCommandOutput}
|
|
28
35
|
* @see {@link ListSourceCredentialsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListSourceCredentialsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -37,11 +44,20 @@ export interface ListSourceCredentialsCommandOutput extends ListSourceCredential
|
|
|
37
44
|
export declare class ListSourceCredentialsCommand extends $Command<ListSourceCredentialsCommandInput, ListSourceCredentialsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
38
45
|
readonly input: ListSourceCredentialsCommandInput;
|
|
39
46
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
40
50
|
constructor(input: ListSourceCredentialsCommandInput);
|
|
41
51
|
/**
|
|
42
52
|
* @internal
|
|
43
53
|
*/
|
|
44
54
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSourceCredentialsCommandInput, ListSourceCredentialsCommandOutput>;
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
45
58
|
private serialize;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
46
62
|
private deserialize;
|
|
47
63
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { PutResourcePolicyInput, PutResourcePolicyOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutResourcePolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutResourcePolicyCommandInput extends PutResourcePolicyInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutResourcePolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Stores a resource policy for the ARN of a <code>Project</code> or
|
|
18
23
|
* <code>ReportGroup</code> object. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param PutResourcePolicyCommandInput - {@link PutResourcePolicyCommandInput}
|
|
35
|
+
* @returns {@link PutResourcePolicyCommandOutput}
|
|
29
36
|
* @see {@link PutResourcePolicyCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link PutResourcePolicyCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput,
|
|
|
41
48
|
export declare class PutResourcePolicyCommand extends $Command<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, CodeBuildClientResolvedConfig> {
|
|
42
49
|
readonly input: PutResourcePolicyCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: PutResourcePolicyCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { RetryBuildBatchInput, RetryBuildBatchOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RetryBuildBatchCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RetryBuildBatchCommandInput extends RetryBuildBatchInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RetryBuildBatchCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RetryBuildBatchCommandOutput extends RetryBuildBatchOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Restarts a failed batch build. Only batch builds that have failed can be retried.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface RetryBuildBatchCommandOutput extends RetryBuildBatchOutput, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RetryBuildBatchCommandInput - {@link RetryBuildBatchCommandInput}
|
|
34
|
+
* @returns {@link RetryBuildBatchCommandOutput}
|
|
28
35
|
* @see {@link RetryBuildBatchCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RetryBuildBatchCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface RetryBuildBatchCommandOutput extends RetryBuildBatchOutput, __M
|
|
|
40
47
|
export declare class RetryBuildBatchCommand extends $Command<RetryBuildBatchCommandInput, RetryBuildBatchCommandOutput, CodeBuildClientResolvedConfig> {
|
|
41
48
|
readonly input: RetryBuildBatchCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: RetryBuildBatchCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RetryBuildBatchCommandInput, RetryBuildBatchCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { RetryBuildInput, RetryBuildOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RetryBuildCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RetryBuildCommandInput extends RetryBuildInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RetryBuildCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RetryBuildCommandOutput extends RetryBuildOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Restarts a build.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface RetryBuildCommandOutput extends RetryBuildOutput, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RetryBuildCommandInput - {@link RetryBuildCommandInput}
|
|
34
|
+
* @returns {@link RetryBuildCommandOutput}
|
|
28
35
|
* @see {@link RetryBuildCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RetryBuildCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface RetryBuildCommandOutput extends RetryBuildOutput, __MetadataBea
|
|
|
43
50
|
export declare class RetryBuildCommand extends $Command<RetryBuildCommandInput, RetryBuildCommandOutput, CodeBuildClientResolvedConfig> {
|
|
44
51
|
readonly input: RetryBuildCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: RetryBuildCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RetryBuildCommandInput, RetryBuildCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { StartBuildBatchInput, StartBuildBatchOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartBuildBatchCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartBuildBatchCommandInput extends StartBuildBatchInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartBuildBatchCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts a batch build for a project.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartBuildBatchCommandInput - {@link StartBuildBatchCommandInput}
|
|
34
|
+
* @returns {@link StartBuildBatchCommandOutput}
|
|
28
35
|
* @see {@link StartBuildBatchCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartBuildBatchCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
|
|
|
40
47
|
export declare class StartBuildBatchCommand extends $Command<StartBuildBatchCommandInput, StartBuildBatchCommandOutput, CodeBuildClientResolvedConfig> {
|
|
41
48
|
readonly input: StartBuildBatchCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: StartBuildBatchCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartBuildBatchCommandInput, StartBuildBatchCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { StartBuildInput, StartBuildOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartBuildCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartBuildCommandInput extends StartBuildInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartBuildCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts running a build.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StartBuildCommandInput - {@link StartBuildCommandInput}
|
|
34
|
+
* @returns {@link StartBuildCommandOutput}
|
|
28
35
|
* @see {@link StartBuildCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StartBuildCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface StartBuildCommandOutput extends StartBuildOutput, __MetadataBea
|
|
|
43
50
|
export declare class StartBuildCommand extends $Command<StartBuildCommandInput, StartBuildCommandOutput, CodeBuildClientResolvedConfig> {
|
|
44
51
|
readonly input: StartBuildCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: StartBuildCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartBuildCommandInput, StartBuildCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { StopBuildBatchInput, StopBuildBatchOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopBuildBatchCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopBuildBatchCommandInput extends StopBuildBatchInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopBuildBatchCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopBuildBatchCommandOutput extends StopBuildBatchOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Stops a running batch build.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StopBuildBatchCommandOutput extends StopBuildBatchOutput, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StopBuildBatchCommandInput - {@link StopBuildBatchCommandInput}
|
|
34
|
+
* @returns {@link StopBuildBatchCommandOutput}
|
|
28
35
|
* @see {@link StopBuildBatchCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StopBuildBatchCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface StopBuildBatchCommandOutput extends StopBuildBatchOutput, __Met
|
|
|
40
47
|
export declare class StopBuildBatchCommand extends $Command<StopBuildBatchCommandInput, StopBuildBatchCommandOutput, CodeBuildClientResolvedConfig> {
|
|
41
48
|
readonly input: StopBuildBatchCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: StopBuildBatchCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopBuildBatchCommandInput, StopBuildBatchCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { StopBuildInput, StopBuildOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopBuildCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopBuildCommandInput extends StopBuildInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopBuildCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopBuildCommandOutput extends StopBuildOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Attempts to stop running a build.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface StopBuildCommandOutput extends StopBuildOutput, __MetadataBeare
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param StopBuildCommandInput - {@link StopBuildCommandInput}
|
|
34
|
+
* @returns {@link StopBuildCommandOutput}
|
|
28
35
|
* @see {@link StopBuildCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link StopBuildCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface StopBuildCommandOutput extends StopBuildOutput, __MetadataBeare
|
|
|
40
47
|
export declare class StopBuildCommand extends $Command<StopBuildCommandInput, StopBuildCommandOutput, CodeBuildClientResolvedConfig> {
|
|
41
48
|
readonly input: StopBuildCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: StopBuildCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopBuildCommandInput, StopBuildCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { UpdateProjectInput, UpdateProjectOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateProjectCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateProjectCommandInput extends UpdateProjectInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateProjectCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Changes the settings of a build project.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateProjectCommandInput - {@link UpdateProjectCommandInput}
|
|
34
|
+
* @returns {@link UpdateProjectCommandOutput}
|
|
28
35
|
* @see {@link UpdateProjectCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateProjectCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface UpdateProjectCommandOutput extends UpdateProjectOutput, __Metad
|
|
|
40
47
|
export declare class UpdateProjectCommand extends $Command<UpdateProjectCommandInput, UpdateProjectCommandOutput, CodeBuildClientResolvedConfig> {
|
|
41
48
|
readonly input: UpdateProjectCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: UpdateProjectCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateProjectCommandInput, UpdateProjectCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient";
|
|
5
5
|
import { UpdateProjectVisibilityInput, UpdateProjectVisibilityOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateProjectVisibilityCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateProjectVisibilityCommandInput extends UpdateProjectVisibilityInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateProjectVisibilityCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateProjectVisibilityCommandOutput extends UpdateProjectVisibilityOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Changes the public visibility for a project. The project's build results, logs, and
|
|
18
23
|
* artifacts are available to the general public. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/public-builds.html">Public build
|
|
19
24
|
* projects</a> in the <i>CodeBuild User Guide</i>.</p>
|
|
@@ -62,6 +67,8 @@ export interface UpdateProjectVisibilityCommandOutput extends UpdateProjectVisib
|
|
|
62
67
|
* const response = await client.send(command);
|
|
63
68
|
* ```
|
|
64
69
|
*
|
|
70
|
+
* @param UpdateProjectVisibilityCommandInput - {@link UpdateProjectVisibilityCommandInput}
|
|
71
|
+
* @returns {@link UpdateProjectVisibilityCommandOutput}
|
|
65
72
|
* @see {@link UpdateProjectVisibilityCommandInput} for command's `input` shape.
|
|
66
73
|
* @see {@link UpdateProjectVisibilityCommandOutput} for command's `response` shape.
|
|
67
74
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
@@ -77,11 +84,20 @@ export interface UpdateProjectVisibilityCommandOutput extends UpdateProjectVisib
|
|
|
77
84
|
export declare class UpdateProjectVisibilityCommand extends $Command<UpdateProjectVisibilityCommandInput, UpdateProjectVisibilityCommandOutput, CodeBuildClientResolvedConfig> {
|
|
78
85
|
readonly input: UpdateProjectVisibilityCommandInput;
|
|
79
86
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
80
90
|
constructor(input: UpdateProjectVisibilityCommandInput);
|
|
81
91
|
/**
|
|
82
92
|
* @internal
|
|
83
93
|
*/
|
|
84
94
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeBuildClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateProjectVisibilityCommandInput, UpdateProjectVisibilityCommandOutput>;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
85
98
|
private serialize;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
86
102
|
private deserialize;
|
|
87
103
|
}
|