Lists all upcoming maintenance events for the given cluster
Successfully retrieved maintenance events
Bad Request
Not Authorized
Forbidden
Resource not found
Unsupported media type: returned when the payload is in an unsupported format.
Too many requests: returned when more than 35 requests per second are being received by your user.
{- "maintenanceEvents": [
- {
- "id": "ff4fccf3-2ac0-494b-9f40-e95288dd752d",
- "clusterId": "af4fccf3-2ac0-494b-9f40-e95288dd752d",
- "description": "Upgrade Debian on nodes to 11.3",
- "scheduledStartTime": "2021-12-21T11:00:00Z",
- "scheduledEndTime": "2021-12-21T13:00:00Z",
- "scheduledStartTimeMin": "2021-12-21T11:00:00Z",
- "scheduledStartTimeMax": "2021-12-21T11:00:00Z",
- "isFinalized": false
}
]
}
Lists all in progress maintenance events for the given cluster
Successfully retrieved in progress maintenance events
Bad Request
Not Authorized
Forbidden
Resource not found
Unsupported media type: returned when the payload is in an unsupported format.
Too many requests: returned when more than 35 requests per second are being received by your user.
{- "maintenanceEvents": [
- {
- "id": "ff4fccf3-2ac0-494b-9f40-e95288dd752d",
- "clusterId": "af4fccf3-2ac0-494b-9f40-e95288dd752d",
- "description": "Upgrade Debian on nodes to 11.3",
- "startTime": "2021-12-21T11:03:32Z",
- "endTime": "2021-12-21T11:03:32Z",
- "outcome": "COMPLETED"
}
]
}
Lists of past maintenance events for the given cluster
Successfully retrieved past maintenance events
Bad Request
Not Authorized
Forbidden
Resource not found
Unsupported media type: returned when the payload is in an unsupported format.
Too many requests: returned when more than 35 requests per second are being received by your user.
{- "maintenanceEvents": [
- {
- "id": "ff4fccf3-2ac0-494b-9f40-e95288dd752d",
- "clusterId": "af4fccf3-2ac0-494b-9f40-e95288dd752d",
- "description": "Upgrade Debian on nodes to 11.3",
- "startTime": "2021-12-21T11:03:32Z",
- "endTime": "2021-12-21T11:03:32Z",
- "outcome": "COMPLETED"
}
]
}
Reschedules a maintenance event schedule to the given start time.
Successfully updated maintenance event
Bad Request
Not Authorized
Forbidden
Resource not found
Unsupported media type: returned when the payload is in an unsupported format.
Too many requests: returned when more than 35 requests per second are being received by your user.
{- "scheduledStartTime": "2021-12-21T11:00:00Z",
- "validationMessages": {
- "property1": "string",
- "property2": "string"
}
}
{- "id": "ff4fccf3-2ac0-494b-9f40-e95288dd752d",
- "clusterId": "af4fccf3-2ac0-494b-9f40-e95288dd752d",
- "description": "Upgrade Debian on nodes to 11.3",
- "scheduledStartTime": "2021-12-21T11:00:00Z",
- "scheduledEndTime": "2021-12-21T13:00:00Z",
- "scheduledStartTimeMin": "2021-12-21T11:00:00Z",
- "scheduledStartTimeMax": "2021-12-21T11:00:00Z",
- "isFinalized": false
}
Lists all exclusion windows (times when maintenance events cannot be performed) for the given cluster
Successfully retrieved exclusion windows
Bad Request
Not Authorized
Forbidden
Resource not found
Unsupported media type: returned when the payload is in an unsupported format.
Too many requests: returned when more than 35 requests per second are being received by your user.
{- "exclusionWindows": [
- {
- "id": "af4fccf3-2ac0-494b-9f40-e95288dd752d",
- "clusterId": "cf4fccf3-2ac0-494b-9f40-e95288dd752d",
- "dayOfWeek": "TUESDAY",
- "startHour": 14,
- "durationInHours": 6
}
]
}
Creates a new exclusion window (time when maintenance events cannot be performed) for the given cluster
Successfully created exclusion window
Bad Request
Not Authorized
Forbidden
Resource not found
Unsupported media type: returned when the payload is in an unsupported format.
Too many requests: returned when more than 35 requests per second are being received by your user.
{- "clusterId": "cf4fccf3-2ac0-494b-9f40-e95288dd752d",
- "dayOfWeek": "TUESDAY",
- "startHour": 14,
- "durationInHours": 6,
- "validationMessages": {
- "property1": "string",
- "property2": "string"
}
}
{- "id": "af4fccf3-2ac0-494b-9f40-e95288dd752d"
}
Removes an exclusion window
Successfully deleted exclusion window
Bad Request
Not Authorized
Forbidden
Resource not found
Unsupported media type: returned when the payload is in an unsupported format.
Too many requests: returned when more than 35 requests per second are being received by your user.
{- "status": 0,
- "message": "string",
- "errorDetails": { },
- "code": 0,
- "link": "string"
}