Acronis · JSON Structure

Agent Management Agent Update Settings Structure

Configuration for automatic agent updates

Type: object Properties: 3
CybersecurityData ProtectionEndpoint Management

AgentUpdateSettings is a JSON Structure definition published by Acronis, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

update_channel automatic maintenance_window

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/acronis/refs/heads/main/json-structure/agent-management-agent-update-settings-structure.json",
  "description": "Configuration for automatic agent updates",
  "type": "object",
  "properties": {
    "update_channel": {
      "type": "string",
      "enum": [
        "CURRENT",
        "STABLE"
      ],
      "description": "Update channel to use",
      "example": "STABLE"
    },
    "automatic": {
      "type": "boolean",
      "description": "Whether updates should be applied automatically",
      "example": true
    },
    "maintenance_window": {
      "$ref": "#/components/schemas/MaintenanceWindow"
    }
  },
  "name": "AgentUpdateSettings"
}