Update constructor logging settings
All changes in the specified object are applied to the logging settings for this constructor instance according to the JSON Merge Patch processing rules. Omitting existing fields causes the same values to be reapplied. Specifying a null
value reverts the field to the default value, or removes the field when no default value exists.
Path parameters
-
Identifier for the constructor
PATCH /platform/infrastructure/constructors/{constructor_id}/logging_settings
curl \
-X PATCH https://{{hostname}}/api/v1/platform/infrastructure/constructors/{constructor_id}/logging_settings \
-d '"string"'
Request examples
string
Response examples (200)
# Headers
x-cloud-resource-version: string
x-cloud-resource-created: string
x-cloud-resource-last-modified: string
# Payload
{
"logging_levels": {
"additionalProperty1": "string",
"additionalProperty2": "string"
}
}
Response examples (400)
# Headers
x-cloud-error-codes: patch.request_malformed
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}
Response examples (404)
# Headers
x-cloud-error-codes: constructors.logging_settings.not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}