Properties
| Name | Type | Description |
|---|---|---|
| type | string | Type of terminal action: Update Release. |
| updateAtFirstMaintenanceCall | boolean | Boolean flag that tells if the terminal should update at the first next maintenance call. If false, terminal will update on its configured reboot time. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReleaseUpdateDetails",
"title": "ReleaseUpdateDetails",
"additionalProperties": false,
"properties": {
"type": {
"default": "ReleaseUpdate",
"description": "Type of terminal action: Update Release.",
"enum": [
"ReleaseUpdate"
],
"type": "string"
},
"updateAtFirstMaintenanceCall": {
"description": "Boolean flag that tells if the terminal should update at the first next maintenance call. If false, terminal will update on its configured reboot time.",
"type": "boolean"
}
},
"type": "object"
}