Replace a configuration validation with given id​
Experimental: This API is not stable and might be subject of change.
Replace a configuration validation identified by id with provided value.
Path Parameters
- config_id string required
the identifier of the configuration validation to replace.
- application/json
Request Body
- id string
The identifier of the related configuration.
- external_validation boolean
True, if an external entity should validate a config change. In this case resotocore is emitting a task on the task queue of type validate_config. It expectes a listener to pickup this task and report back, if the configuration is valid or not.
- 200
The configuration validation.
- application/json
- Schema
- Example (from schema)
Schema
- id string
The identifier of the related configuration.
- external_validation boolean
True, if an external entity should validate a config change. In this case resotocore is emitting a task on the task queue of type validate_config. It expectes a listener to pickup this task and report back, if the configuration is valid or not.
{
"id": "string",
"external_validation": true
}