@aws-sdk/client-codebuild 3.325.0 → 3.326.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/commands/BatchDeleteBuildsCommand.d.ts +14 -0
- package/dist-types/commands/BatchGetBuildBatchesCommand.d.ts +222 -0
- package/dist-types/commands/BatchGetBuildsCommand.d.ts +192 -0
- package/dist-types/commands/BatchGetProjectsCommand.d.ts +196 -0
- package/dist-types/commands/BatchGetReportGroupsCommand.d.ts +35 -0
- package/dist-types/commands/BatchGetReportsCommand.d.ts +47 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +191 -0
- package/dist-types/commands/CreateReportGroupCommand.d.ts +30 -0
- package/dist-types/commands/CreateWebhookCommand.d.ts +22 -0
- package/dist-types/commands/DeleteBuildBatchCommand.d.ts +15 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +4 -0
- package/dist-types/commands/DeleteReportCommand.d.ts +4 -0
- package/dist-types/commands/DeleteReportGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSourceCredentialsCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWebhookCommand.d.ts +4 -0
- package/dist-types/commands/DescribeCodeCoveragesCommand.d.ts +20 -0
- package/dist-types/commands/DescribeTestCasesCommand.d.ts +18 -0
- package/dist-types/commands/GetReportGroupTrendCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +6 -0
- package/dist-types/commands/ImportSourceCredentialsCommand.d.ts +6 -0
- package/dist-types/commands/InvalidateProjectCacheCommand.d.ts +4 -0
- package/dist-types/commands/ListBuildBatchesCommand.d.ts +9 -0
- package/dist-types/commands/ListBuildBatchesForProjectCommand.d.ts +9 -0
- package/dist-types/commands/ListBuildsCommand.d.ts +9 -0
- package/dist-types/commands/ListBuildsForProjectCommand.d.ts +9 -0
- package/dist-types/commands/ListCuratedEnvironmentImagesCommand.d.ts +24 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +9 -0
- package/dist-types/commands/ListReportGroupsCommand.d.ts +9 -0
- package/dist-types/commands/ListReportsCommand.d.ts +9 -0
- package/dist-types/commands/ListReportsForReportGroupCommand.d.ts +9 -0
- package/dist-types/commands/ListSharedProjectsCommand.d.ts +9 -0
- package/dist-types/commands/ListSharedReportGroupsCommand.d.ts +9 -0
- package/dist-types/commands/ListSourceCredentialsCommand.d.ts +12 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +6 -0
- package/dist-types/commands/RetryBuildBatchCommand.d.ts +217 -0
- package/dist-types/commands/RetryBuildCommand.d.ts +187 -0
- package/dist-types/commands/StartBuildBatchCommand.d.ts +217 -0
- package/dist-types/commands/StartBuildCommand.d.ts +187 -0
- package/dist-types/commands/StopBuildBatchCommand.d.ts +217 -0
- package/dist-types/commands/StopBuildCommand.d.ts +187 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +191 -0
- package/dist-types/commands/UpdateProjectVisibilityCommand.d.ts +8 -0
- package/dist-types/commands/UpdateReportGroupCommand.d.ts +30 -0
- package/dist-types/commands/UpdateWebhookCommand.d.ts +22 -0
- package/package.json +3 -3
|
@@ -32,6 +32,8 @@ export interface DeleteReportGroupCommandOutput extends DeleteReportGroupOutput,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteReportGroupCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteReportGroupCommandInput - {@link DeleteReportGroupCommandInput}
|
|
@@ -43,6 +45,8 @@ export interface DeleteReportGroupCommandOutput extends DeleteReportGroupOutput,
|
|
|
43
45
|
* @throws {@link InvalidInputException} (client fault)
|
|
44
46
|
* <p>The input value that was provided is not valid.</p>
|
|
45
47
|
*
|
|
48
|
+
* @throws {@link CodeBuildServiceException}
|
|
49
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
46
50
|
*
|
|
47
51
|
*/
|
|
48
52
|
export declare class DeleteReportGroupCommand extends $Command<DeleteReportGroupCommandInput, DeleteReportGroupCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyO
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteResourcePolicyCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteResourcePolicyCommandInput - {@link DeleteResourcePolicyCommandInput}
|
|
@@ -42,6 +44,8 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyO
|
|
|
42
44
|
* @throws {@link InvalidInputException} (client fault)
|
|
43
45
|
* <p>The input value that was provided is not valid.</p>
|
|
44
46
|
*
|
|
47
|
+
* @throws {@link CodeBuildServiceException}
|
|
48
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
45
49
|
*
|
|
46
50
|
*/
|
|
47
51
|
export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface DeleteSourceCredentialsCommandOutput extends DeleteSourceCreden
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteSourceCredentialsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteSourceCredentialsOutput
|
|
35
|
+
* // arn: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param DeleteSourceCredentialsCommandInput - {@link DeleteSourceCredentialsCommandInput}
|
|
@@ -45,6 +49,8 @@ export interface DeleteSourceCredentialsCommandOutput extends DeleteSourceCreden
|
|
|
45
49
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
50
|
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
47
51
|
*
|
|
52
|
+
* @throws {@link CodeBuildServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
48
54
|
*
|
|
49
55
|
*/
|
|
50
56
|
export declare class DeleteSourceCredentialsCommand extends $Command<DeleteSourceCredentialsCommandInput, DeleteSourceCredentialsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteWebhookCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteWebhookCommandInput - {@link DeleteWebhookCommandInput}
|
|
@@ -50,6 +52,8 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad
|
|
|
50
52
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
53
|
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
52
54
|
*
|
|
55
|
+
* @throws {@link CodeBuildServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
53
57
|
*
|
|
54
58
|
*/
|
|
55
59
|
export declare class DeleteWebhookCommand extends $Command<DeleteWebhookCommandInput, DeleteWebhookCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -37,6 +37,24 @@ export interface DescribeCodeCoveragesCommandOutput extends DescribeCodeCoverage
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DescribeCodeCoveragesCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // DescribeCodeCoveragesOutput
|
|
41
|
+
* // nextToken: "STRING_VALUE",
|
|
42
|
+
* // codeCoverages: [ // CodeCoverages
|
|
43
|
+
* // { // CodeCoverage
|
|
44
|
+
* // id: "STRING_VALUE",
|
|
45
|
+
* // reportARN: "STRING_VALUE",
|
|
46
|
+
* // filePath: "STRING_VALUE",
|
|
47
|
+
* // lineCoveragePercentage: Number("double"),
|
|
48
|
+
* // linesCovered: Number("int"),
|
|
49
|
+
* // linesMissed: Number("int"),
|
|
50
|
+
* // branchCoveragePercentage: Number("double"),
|
|
51
|
+
* // branchesCovered: Number("int"),
|
|
52
|
+
* // branchesMissed: Number("int"),
|
|
53
|
+
* // expired: new Date("TIMESTAMP"),
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
40
58
|
* ```
|
|
41
59
|
*
|
|
42
60
|
* @param DescribeCodeCoveragesCommandInput - {@link DescribeCodeCoveragesCommandInput}
|
|
@@ -48,6 +66,8 @@ export interface DescribeCodeCoveragesCommandOutput extends DescribeCodeCoverage
|
|
|
48
66
|
* @throws {@link InvalidInputException} (client fault)
|
|
49
67
|
* <p>The input value that was provided is not valid.</p>
|
|
50
68
|
*
|
|
69
|
+
* @throws {@link CodeBuildServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
51
71
|
*
|
|
52
72
|
*/
|
|
53
73
|
export declare class DescribeCodeCoveragesCommand extends $Command<DescribeCodeCoveragesCommandInput, DescribeCodeCoveragesCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -39,6 +39,22 @@ export interface DescribeTestCasesCommandOutput extends DescribeTestCasesOutput,
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new DescribeTestCasesCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // DescribeTestCasesOutput
|
|
43
|
+
* // nextToken: "STRING_VALUE",
|
|
44
|
+
* // testCases: [ // TestCases
|
|
45
|
+
* // { // TestCase
|
|
46
|
+
* // reportArn: "STRING_VALUE",
|
|
47
|
+
* // testRawDataPath: "STRING_VALUE",
|
|
48
|
+
* // prefix: "STRING_VALUE",
|
|
49
|
+
* // name: "STRING_VALUE",
|
|
50
|
+
* // status: "STRING_VALUE",
|
|
51
|
+
* // durationInNanoSeconds: Number("long"),
|
|
52
|
+
* // message: "STRING_VALUE",
|
|
53
|
+
* // expired: new Date("TIMESTAMP"),
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
42
58
|
* ```
|
|
43
59
|
*
|
|
44
60
|
* @param DescribeTestCasesCommandInput - {@link DescribeTestCasesCommandInput}
|
|
@@ -53,6 +69,8 @@ export interface DescribeTestCasesCommandOutput extends DescribeTestCasesOutput,
|
|
|
53
69
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
54
70
|
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
55
71
|
*
|
|
72
|
+
* @throws {@link CodeBuildServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
56
74
|
*
|
|
57
75
|
*/
|
|
58
76
|
export declare class DescribeTestCasesCommand extends $Command<DescribeTestCasesCommandInput, DescribeTestCasesCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface GetReportGroupTrendCommandOutput extends GetReportGroupTrendOut
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetReportGroupTrendCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetReportGroupTrendOutput
|
|
37
|
+
* // stats: { // ReportGroupTrendStats
|
|
38
|
+
* // average: "STRING_VALUE",
|
|
39
|
+
* // max: "STRING_VALUE",
|
|
40
|
+
* // min: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // rawData: [ // ReportGroupTrendRawDataList
|
|
43
|
+
* // { // ReportWithRawData
|
|
44
|
+
* // reportArn: "STRING_VALUE",
|
|
45
|
+
* // data: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param GetReportGroupTrendCommandInput - {@link GetReportGroupTrendCommandInput}
|
|
@@ -47,6 +61,8 @@ export interface GetReportGroupTrendCommandOutput extends GetReportGroupTrendOut
|
|
|
47
61
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
62
|
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
49
63
|
*
|
|
64
|
+
* @throws {@link CodeBuildServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
50
66
|
*
|
|
51
67
|
*/
|
|
52
68
|
export declare class GetReportGroupTrendCommand extends $Command<GetReportGroupTrendCommandInput, GetReportGroupTrendCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyOutput,
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetResourcePolicyCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetResourcePolicyOutput
|
|
35
|
+
* // policy: "STRING_VALUE",
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param GetResourcePolicyCommandInput - {@link GetResourcePolicyCommandInput}
|
|
@@ -45,6 +49,8 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyOutput,
|
|
|
45
49
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
50
|
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
47
51
|
*
|
|
52
|
+
* @throws {@link CodeBuildServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
48
54
|
*
|
|
49
55
|
*/
|
|
50
56
|
export declare class GetResourcePolicyCommand extends $Command<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -36,6 +36,10 @@ export interface ImportSourceCredentialsCommandOutput extends ImportSourceCreden
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ImportSourceCredentialsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ImportSourceCredentialsOutput
|
|
40
|
+
* // arn: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
39
43
|
* ```
|
|
40
44
|
*
|
|
41
45
|
* @param ImportSourceCredentialsCommandInput - {@link ImportSourceCredentialsCommandInput}
|
|
@@ -54,6 +58,8 @@ export interface ImportSourceCredentialsCommandOutput extends ImportSourceCreden
|
|
|
54
58
|
* <p>The specified Amazon Web Services resource cannot be created, because an Amazon Web Services resource with the same
|
|
55
59
|
* settings already exists.</p>
|
|
56
60
|
*
|
|
61
|
+
* @throws {@link CodeBuildServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
57
63
|
*
|
|
58
64
|
*/
|
|
59
65
|
export declare class ImportSourceCredentialsCommand extends $Command<ImportSourceCredentialsCommandInput, ImportSourceCredentialsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface InvalidateProjectCacheCommandOutput extends InvalidateProjectCa
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new InvalidateProjectCacheCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param InvalidateProjectCacheCommandInput - {@link InvalidateProjectCacheCommandInput}
|
|
@@ -45,6 +47,8 @@ export interface InvalidateProjectCacheCommandOutput extends InvalidateProjectCa
|
|
|
45
47
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
48
|
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
47
49
|
*
|
|
50
|
+
* @throws {@link CodeBuildServiceException}
|
|
51
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
48
52
|
*
|
|
49
53
|
*/
|
|
50
54
|
export declare class InvalidateProjectCacheCommand extends $Command<InvalidateProjectCacheCommandInput, InvalidateProjectCacheCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -36,6 +36,13 @@ export interface ListBuildBatchesCommandOutput extends ListBuildBatchesOutput, _
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListBuildBatchesCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListBuildBatchesOutput
|
|
40
|
+
* // ids: [ // BuildBatchIds
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // nextToken: "STRING_VALUE",
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
39
46
|
* ```
|
|
40
47
|
*
|
|
41
48
|
* @param ListBuildBatchesCommandInput - {@link ListBuildBatchesCommandInput}
|
|
@@ -47,6 +54,8 @@ export interface ListBuildBatchesCommandOutput extends ListBuildBatchesOutput, _
|
|
|
47
54
|
* @throws {@link InvalidInputException} (client fault)
|
|
48
55
|
* <p>The input value that was provided is not valid.</p>
|
|
49
56
|
*
|
|
57
|
+
* @throws {@link CodeBuildServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
50
59
|
*
|
|
51
60
|
*/
|
|
52
61
|
export declare class ListBuildBatchesCommand extends $Command<ListBuildBatchesCommandInput, ListBuildBatchesCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -37,6 +37,13 @@ export interface ListBuildBatchesForProjectCommandOutput extends ListBuildBatche
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListBuildBatchesForProjectCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ListBuildBatchesForProjectOutput
|
|
41
|
+
* // ids: [ // BuildBatchIds
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // nextToken: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
40
47
|
* ```
|
|
41
48
|
*
|
|
42
49
|
* @param ListBuildBatchesForProjectCommandInput - {@link ListBuildBatchesForProjectCommandInput}
|
|
@@ -51,6 +58,8 @@ export interface ListBuildBatchesForProjectCommandOutput extends ListBuildBatche
|
|
|
51
58
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
59
|
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
53
60
|
*
|
|
61
|
+
* @throws {@link CodeBuildServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
54
63
|
*
|
|
55
64
|
*/
|
|
56
65
|
export declare class ListBuildBatchesForProjectCommand extends $Command<ListBuildBatchesForProjectCommandInput, ListBuildBatchesForProjectCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -32,6 +32,13 @@ export interface ListBuildsCommandOutput extends ListBuildsOutput, __MetadataBea
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListBuildsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListBuildsOutput
|
|
36
|
+
* // ids: [ // BuildIds
|
|
37
|
+
* // "STRING_VALUE",
|
|
38
|
+
* // ],
|
|
39
|
+
* // nextToken: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
35
42
|
* ```
|
|
36
43
|
*
|
|
37
44
|
* @param ListBuildsCommandInput - {@link ListBuildsCommandInput}
|
|
@@ -43,6 +50,8 @@ export interface ListBuildsCommandOutput extends ListBuildsOutput, __MetadataBea
|
|
|
43
50
|
* @throws {@link InvalidInputException} (client fault)
|
|
44
51
|
* <p>The input value that was provided is not valid.</p>
|
|
45
52
|
*
|
|
53
|
+
* @throws {@link CodeBuildServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
46
55
|
*
|
|
47
56
|
*/
|
|
48
57
|
export declare class ListBuildsCommand extends $Command<ListBuildsCommandInput, ListBuildsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -34,6 +34,13 @@ export interface ListBuildsForProjectCommandOutput extends ListBuildsForProjectO
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListBuildsForProjectCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListBuildsForProjectOutput
|
|
38
|
+
* // ids: [ // BuildIds
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // nextToken: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
37
44
|
* ```
|
|
38
45
|
*
|
|
39
46
|
* @param ListBuildsForProjectCommandInput - {@link ListBuildsForProjectCommandInput}
|
|
@@ -48,6 +55,8 @@ export interface ListBuildsForProjectCommandOutput extends ListBuildsForProjectO
|
|
|
48
55
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
56
|
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
50
57
|
*
|
|
58
|
+
* @throws {@link CodeBuildServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
51
60
|
*
|
|
52
61
|
*/
|
|
53
62
|
export declare class ListBuildsForProjectCommand extends $Command<ListBuildsForProjectCommandInput, ListBuildsForProjectCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -29,6 +29,28 @@ export interface ListCuratedEnvironmentImagesCommandOutput extends ListCuratedEn
|
|
|
29
29
|
* const input = {};
|
|
30
30
|
* const command = new ListCuratedEnvironmentImagesCommand(input);
|
|
31
31
|
* const response = await client.send(command);
|
|
32
|
+
* // { // ListCuratedEnvironmentImagesOutput
|
|
33
|
+
* // platforms: [ // EnvironmentPlatforms
|
|
34
|
+
* // { // EnvironmentPlatform
|
|
35
|
+
* // platform: "STRING_VALUE",
|
|
36
|
+
* // languages: [ // EnvironmentLanguages
|
|
37
|
+
* // { // EnvironmentLanguage
|
|
38
|
+
* // language: "STRING_VALUE",
|
|
39
|
+
* // images: [ // EnvironmentImages
|
|
40
|
+
* // { // EnvironmentImage
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // description: "STRING_VALUE",
|
|
43
|
+
* // versions: [ // ImageVersions
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
32
54
|
* ```
|
|
33
55
|
*
|
|
34
56
|
* @param ListCuratedEnvironmentImagesCommandInput - {@link ListCuratedEnvironmentImagesCommandInput}
|
|
@@ -37,6 +59,8 @@ export interface ListCuratedEnvironmentImagesCommandOutput extends ListCuratedEn
|
|
|
37
59
|
* @see {@link ListCuratedEnvironmentImagesCommandOutput} for command's `response` shape.
|
|
38
60
|
* @see {@link CodeBuildClientResolvedConfig | config} for CodeBuildClient's `config` shape.
|
|
39
61
|
*
|
|
62
|
+
* @throws {@link CodeBuildServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
40
64
|
*
|
|
41
65
|
*/
|
|
42
66
|
export declare class ListCuratedEnvironmentImagesCommand extends $Command<ListCuratedEnvironmentImagesCommandInput, ListCuratedEnvironmentImagesCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -34,6 +34,13 @@ export interface ListProjectsCommandOutput extends ListProjectsOutput, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListProjectsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListProjectsOutput
|
|
38
|
+
* // nextToken: "STRING_VALUE",
|
|
39
|
+
* // projects: [ // ProjectNames
|
|
40
|
+
* // "STRING_VALUE",
|
|
41
|
+
* // ],
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
37
44
|
* ```
|
|
38
45
|
*
|
|
39
46
|
* @param ListProjectsCommandInput - {@link ListProjectsCommandInput}
|
|
@@ -45,6 +52,8 @@ export interface ListProjectsCommandOutput extends ListProjectsOutput, __Metadat
|
|
|
45
52
|
* @throws {@link InvalidInputException} (client fault)
|
|
46
53
|
* <p>The input value that was provided is not valid.</p>
|
|
47
54
|
*
|
|
55
|
+
* @throws {@link CodeBuildServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
48
57
|
*
|
|
49
58
|
*/
|
|
50
59
|
export declare class ListProjectsCommand extends $Command<ListProjectsCommandInput, ListProjectsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -36,6 +36,13 @@ export interface ListReportGroupsCommandOutput extends ListReportGroupsOutput, _
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListReportGroupsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListReportGroupsOutput
|
|
40
|
+
* // nextToken: "STRING_VALUE",
|
|
41
|
+
* // reportGroups: [ // ReportGroupArns
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
39
46
|
* ```
|
|
40
47
|
*
|
|
41
48
|
* @param ListReportGroupsCommandInput - {@link ListReportGroupsCommandInput}
|
|
@@ -47,6 +54,8 @@ export interface ListReportGroupsCommandOutput extends ListReportGroupsOutput, _
|
|
|
47
54
|
* @throws {@link InvalidInputException} (client fault)
|
|
48
55
|
* <p>The input value that was provided is not valid.</p>
|
|
49
56
|
*
|
|
57
|
+
* @throws {@link CodeBuildServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
50
59
|
*
|
|
51
60
|
*/
|
|
52
61
|
export declare class ListReportGroupsCommand extends $Command<ListReportGroupsCommandInput, ListReportGroupsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -38,6 +38,13 @@ export interface ListReportsCommandOutput extends ListReportsOutput, __MetadataB
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListReportsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListReportsOutput
|
|
42
|
+
* // nextToken: "STRING_VALUE",
|
|
43
|
+
* // reports: [ // ReportArns
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
41
48
|
* ```
|
|
42
49
|
*
|
|
43
50
|
* @param ListReportsCommandInput - {@link ListReportsCommandInput}
|
|
@@ -49,6 +56,8 @@ export interface ListReportsCommandOutput extends ListReportsOutput, __MetadataB
|
|
|
49
56
|
* @throws {@link InvalidInputException} (client fault)
|
|
50
57
|
* <p>The input value that was provided is not valid.</p>
|
|
51
58
|
*
|
|
59
|
+
* @throws {@link CodeBuildServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
52
61
|
*
|
|
53
62
|
*/
|
|
54
63
|
export declare class ListReportsCommand extends $Command<ListReportsCommandInput, ListReportsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -39,6 +39,13 @@ export interface ListReportsForReportGroupCommandOutput extends ListReportsForRe
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new ListReportsForReportGroupCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // ListReportsForReportGroupOutput
|
|
43
|
+
* // nextToken: "STRING_VALUE",
|
|
44
|
+
* // reports: [ // ReportArns
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
42
49
|
* ```
|
|
43
50
|
*
|
|
44
51
|
* @param ListReportsForReportGroupCommandInput - {@link ListReportsForReportGroupCommandInput}
|
|
@@ -53,6 +60,8 @@ export interface ListReportsForReportGroupCommandOutput extends ListReportsForRe
|
|
|
53
60
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
54
61
|
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
55
62
|
*
|
|
63
|
+
* @throws {@link CodeBuildServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
56
65
|
*
|
|
57
66
|
*/
|
|
58
67
|
export declare class ListReportsForReportGroupCommand extends $Command<ListReportsForReportGroupCommandInput, ListReportsForReportGroupCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -34,6 +34,13 @@ export interface ListSharedProjectsCommandOutput extends ListSharedProjectsOutpu
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListSharedProjectsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListSharedProjectsOutput
|
|
38
|
+
* // nextToken: "STRING_VALUE",
|
|
39
|
+
* // projects: [ // ProjectArns
|
|
40
|
+
* // "STRING_VALUE",
|
|
41
|
+
* // ],
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
37
44
|
* ```
|
|
38
45
|
*
|
|
39
46
|
* @param ListSharedProjectsCommandInput - {@link ListSharedProjectsCommandInput}
|
|
@@ -45,6 +52,8 @@ export interface ListSharedProjectsCommandOutput extends ListSharedProjectsOutpu
|
|
|
45
52
|
* @throws {@link InvalidInputException} (client fault)
|
|
46
53
|
* <p>The input value that was provided is not valid.</p>
|
|
47
54
|
*
|
|
55
|
+
* @throws {@link CodeBuildServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
48
57
|
*
|
|
49
58
|
*/
|
|
50
59
|
export declare class ListSharedProjectsCommand extends $Command<ListSharedProjectsCommandInput, ListSharedProjectsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -35,6 +35,13 @@ export interface ListSharedReportGroupsCommandOutput extends ListSharedReportGro
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListSharedReportGroupsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListSharedReportGroupsOutput
|
|
39
|
+
* // nextToken: "STRING_VALUE",
|
|
40
|
+
* // reportGroups: [ // ReportGroupArns
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
38
45
|
* ```
|
|
39
46
|
*
|
|
40
47
|
* @param ListSharedReportGroupsCommandInput - {@link ListSharedReportGroupsCommandInput}
|
|
@@ -46,6 +53,8 @@ export interface ListSharedReportGroupsCommandOutput extends ListSharedReportGro
|
|
|
46
53
|
* @throws {@link InvalidInputException} (client fault)
|
|
47
54
|
* <p>The input value that was provided is not valid.</p>
|
|
48
55
|
*
|
|
56
|
+
* @throws {@link CodeBuildServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
49
58
|
*
|
|
50
59
|
*/
|
|
51
60
|
export declare class ListSharedReportGroupsCommand extends $Command<ListSharedReportGroupsCommandInput, ListSharedReportGroupsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -29,6 +29,16 @@ export interface ListSourceCredentialsCommandOutput extends ListSourceCredential
|
|
|
29
29
|
* const input = {};
|
|
30
30
|
* const command = new ListSourceCredentialsCommand(input);
|
|
31
31
|
* const response = await client.send(command);
|
|
32
|
+
* // { // ListSourceCredentialsOutput
|
|
33
|
+
* // sourceCredentialsInfos: [ // SourceCredentialsInfos
|
|
34
|
+
* // { // SourceCredentialsInfo
|
|
35
|
+
* // arn: "STRING_VALUE",
|
|
36
|
+
* // serverType: "STRING_VALUE",
|
|
37
|
+
* // authType: "STRING_VALUE",
|
|
38
|
+
* // },
|
|
39
|
+
* // ],
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
32
42
|
* ```
|
|
33
43
|
*
|
|
34
44
|
* @param ListSourceCredentialsCommandInput - {@link ListSourceCredentialsCommandInput}
|
|
@@ -40,6 +50,8 @@ export interface ListSourceCredentialsCommandOutput extends ListSourceCredential
|
|
|
40
50
|
* @throws {@link InvalidInputException} (client fault)
|
|
41
51
|
* <p>The input value that was provided is not valid.</p>
|
|
42
52
|
*
|
|
53
|
+
* @throws {@link CodeBuildServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
43
55
|
*
|
|
44
56
|
*/
|
|
45
57
|
export declare class ListSourceCredentialsCommand extends $Command<ListSourceCredentialsCommandInput, ListSourceCredentialsCommandOutput, CodeBuildClientResolvedConfig> {
|
|
@@ -33,6 +33,10 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput,
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new PutResourcePolicyCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // PutResourcePolicyOutput
|
|
37
|
+
* // resourceArn: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param PutResourcePolicyCommandInput - {@link PutResourcePolicyCommandInput}
|
|
@@ -47,6 +51,8 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyOutput,
|
|
|
47
51
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
52
|
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
49
53
|
*
|
|
54
|
+
* @throws {@link CodeBuildServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from CodeBuild service.</p>
|
|
50
56
|
*
|
|
51
57
|
*/
|
|
52
58
|
export declare class PutResourcePolicyCommand extends $Command<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, CodeBuildClientResolvedConfig> {
|