Create or replace a check by its id.
PUT/report/check/:check_id
Create or replace a check by its id.
Request​
Path Parameters
The ID of the check to perform.
- application/json
Body
The check to replace.
The id of this check
The provider of this check
The service of this check
The title of this check
The categories of this check
Possible values: [critical
, high
, medium
, low
, info
]
The severity of this check
detect
The detect expression of this check
remediation
object
The text of the remediation
The url of the remediation
action
Action to remediate the inspected issue
The url of this check
The related checks of this check
The kinds that are returned by this check.
The risk we are taking if we ignore this check
Responses​
- 200
The checks result.
- application/json
- Schema
- Example (from schema)
Schema
The id of this check
The provider of this check
The service of this check
The title of this check
The categories of this check
Possible values: [critical
, high
, medium
, low
, info
]
The severity of this check
detect
The detect expression of this check
remediation
object
The text of the remediation
The url of the remediation
action
Action to remediate the inspected issue
The url of this check
The related checks of this check
The kinds that are returned by this check.
The risk we are taking if we ignore this check
{
"id": "string",
"provider": "string",
"service": "string",
"title": "string",
"categories": [
"string"
],
"severity": "critical",
"remediation": {
"text": "string",
"url": "string"
},
"url": "string",
"related": [
"string"
],
"result_kinds": [
"string"
],
"risk": "string"
}