Create or replace a benchmark by its id.
PUT/report/benchmark/:benchmark
Create or replace a benchmark by its id.
Request​
Path Parameters
benchmark stringrequired
The ID of the benchmark.
Example: aws_cis_1_5
- application/json
Body
The benchmark to replace.
title string
The title of this check collection
description string
The description of this check collection
documentation string
The documentation of this check collection
checks string[]
Ids of checks in this collection
children array
Ids of child collections
id string
The id of this benchmark
framework string
The framework of this benchmark
version string
The version of this benchmark
clouds string[]
The clouds relevant for this benchmark
Responses​
- 200
The benchmark.
- application/json
- Schema
- Example (from schema)
Schema
title string
The title of this check collection
description string
The description of this check collection
documentation string
The documentation of this check collection
checks string[]
Ids of checks in this collection
children array
Ids of child collections
id string
The id of this benchmark
framework string
The framework of this benchmark
version string
The version of this benchmark
clouds string[]
The clouds relevant for this benchmark
{
"id": "string",
"framework": "string",
"version": "string",
"clouds": [
"string"
],
"title": "string",
"description": "string",
"documentation": "string",
"checks": [
"string"
],
"children": [
null
]
}
Loading...