Skip to content

Commit

Permalink
AWS CodeBuild Update: Adding support for BuildBatch, and CodeCoverage…
Browse files Browse the repository at this point in the history
… APIs. BuildBatch allows you to model your project environment in source, and helps start multiple builds with a single API call. CodeCoverage allows you to track your code coverage using AWS CodeBuild.
  • Loading branch information
AWS committed Jul 30, 2020
1 parent 4ef7c41 commit cea70c4
Show file tree
Hide file tree
Showing 3 changed files with 980 additions and 29 deletions.
5 changes: 5 additions & 0 deletions .changes/next-release/feature-AWSCodeBuild-c0cb78d.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "feature",
"category": "AWS CodeBuild",
"description": "Adding support for BuildBatch, and CodeCoverage APIs. BuildBatch allows you to model your project environment in source, and helps start multiple builds with a single API call. CodeCoverage allows you to track your code coverage using AWS CodeBuild."
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,29 @@
{
"pagination": {
"DescribeCodeCoverages": {
"input_token": "nextToken",
"limit_key": "maxResults",
"output_token": "nextToken",
"result_key": "codeCoverages"
},
"DescribeTestCases": {
"input_token": "nextToken",
"limit_key": "maxResults",
"output_token": "nextToken",
"result_key": "testCases"
},
"ListBuildBatches": {
"input_token": "nextToken",
"limit_key": "maxResults",
"output_token": "nextToken",
"result_key": "ids"
},
"ListBuildBatchesForProject": {
"input_token": "nextToken",
"limit_key": "maxResults",
"output_token": "nextToken",
"result_key": "ids"
},
"ListBuilds": {
"input_token": "nextToken",
"output_token": "nextToken",
Expand Down
Loading

0 comments on commit cea70c4

Please sign in to comment.