Acronis · Schema

AgentUpdateSettings

Configuration for automatic agent updates

CybersecurityData ProtectionEndpoint Management

Properties

Name Type Description
update_channel string Update channel to use
automatic boolean Whether updates should be applied automatically
maintenance_window object
View JSON Schema on GitHub

JSON Schema

acronis-agentupdatesettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AgentUpdateSettings",
  "title": "AgentUpdateSettings",
  "type": "object",
  "description": "Configuration for automatic agent updates",
  "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"
    }
  }
}