Skip to content

Commit 7e91040

Browse files
author
awstools
committed
feat(client-codebuild): Adding "reportArns" field in output of BatchGetBuildBatches API. "reportArns" is an array that contains the ARNs of reports created by merging reports from builds associated with the batch build.
1 parent ff74907 commit 7e91040

File tree

7 files changed

+25
-0
lines changed

7 files changed

+25
-0
lines changed

clients/client-codebuild/src/commands/BatchGetBuildBatchesCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,9 @@ export interface BatchGetBuildBatchesCommandOutput extends BatchGetBuildBatchesO
267267
* // },
268268
* // ],
269269
* // debugSessionEnabled: true || false,
270+
* // reportArns: [ // BuildReportArns
271+
* // "STRING_VALUE",
272+
* // ],
270273
* // },
271274
* // ],
272275
* // buildBatchesNotFound: [ // BuildBatchIds

clients/client-codebuild/src/commands/RetryBuildBatchCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,9 @@ export interface RetryBuildBatchCommandOutput extends RetryBuildBatchOutput, __M
266266
* // },
267267
* // ],
268268
* // debugSessionEnabled: true || false,
269+
* // reportArns: [ // BuildReportArns
270+
* // "STRING_VALUE",
271+
* // ],
269272
* // },
270273
* // };
271274
*

clients/client-codebuild/src/commands/StartBuildBatchCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,9 @@ export interface StartBuildBatchCommandOutput extends StartBuildBatchOutput, __M
390390
* // },
391391
* // ],
392392
* // debugSessionEnabled: true || false,
393+
* // reportArns: [ // BuildReportArns
394+
* // "STRING_VALUE",
395+
* // ],
393396
* // },
394397
* // };
395398
*

clients/client-codebuild/src/commands/StopBuildBatchCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,9 @@ export interface StopBuildBatchCommandOutput extends StopBuildBatchOutput, __Met
264264
* // },
265265
* // ],
266266
* // debugSessionEnabled: true || false,
267+
* // reportArns: [ // BuildReportArns
268+
* // "STRING_VALUE",
269+
* // ],
267270
* // },
268271
* // };
269272
*

clients/client-codebuild/src/models/models_0.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2196,6 +2196,12 @@ export interface BuildBatch {
21962196
* @public
21972197
*/
21982198
debugSessionEnabled?: boolean | undefined;
2199+
2200+
/**
2201+
* <p>An array that contains the ARNs of reports created by merging reports from builds associated with this batch build.</p>
2202+
* @public
2203+
*/
2204+
reportArns?: string[] | undefined;
21992205
}
22002206

22012207
/**

clients/client-codebuild/src/protocols/Aws_json1_1.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2438,6 +2438,7 @@ const de_BuildBatch = (output: any, context: __SerdeContext): BuildBatch => {
24382438
phases: (_: any) => de_BuildBatchPhases(_, context),
24392439
projectName: __expectString,
24402440
queuedTimeoutInMinutes: __expectInt32,
2441+
reportArns: _json,
24412442
resolvedSourceVersion: __expectString,
24422443
secondaryArtifacts: _json,
24432444
secondarySourceVersions: _json,

codegen/sdk-codegen/aws-models/codebuild.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1035,6 +1035,12 @@
10351035
"traits": {
10361036
"smithy.api#documentation": "<p>Specifies if session debugging is enabled for this batch build. For more information, see\n <a href=\"https://docs.aws.amazon.com/codebuild/latest/userguide/session-manager.html\">Viewing a running build in Session Manager</a>. Batch session debugging is not supported for matrix batch builds.</p>"
10371037
}
1038+
},
1039+
"reportArns": {
1040+
"target": "com.amazonaws.codebuild#BuildReportArns",
1041+
"traits": {
1042+
"smithy.api#documentation": "<p>An array that contains the ARNs of reports created by merging reports from builds associated with this batch build.</p>"
1043+
}
10381044
}
10391045
},
10401046
"traits": {

0 commit comments

Comments
 (0)