update_maintenance_window
Modify selected fields of a maintenance window (title, start/end, recurrence, description) while keeping unspecified values intact.
Instructions
Update a maintenance window (PATCH semantics — only provided fields change).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uid | Yes | Maintenance window UID (required). | |
| endAt | No | New end (RFC3339, must be later than startAt). | |
| title | No | New title for the maintenance window. | |
| startAt | No | New start (RFC3339, e.g. "2026-05-03T22:00:00Z"). | |
| recurrence | No | One of "none", "daily", "weekly", or "monthly". The cadence is anchored to startAt: "daily" repeats startAt's time-of-day every day; "weekly" repeats on startAt's weekday; "monthly" repeats on startAt's day-of-month (clamped to the last day of shorter months). Each occurrence lasts endAt - startAt. Omit (or "none") for a one-off window. iCalendar RRULE strings are NOT supported. Pass an empty string to clear (make it one-off). | |
| description | No | New free-text description shown in the UI. | |
| recurrenceEnd | No | New RFC3339 recurrence end timestamp. |