You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: The data object identifying a Datadog user linked to a maintenance update.
64804
+
properties:
64805
+
id:
64806
+
description: The ID of the Datadog user.
64807
+
example: ""
64808
+
format: uuid
64809
+
type: string
64810
+
type:
64811
+
$ref: "#/components/schemas/StatusPagesUserType"
64812
+
required:
64813
+
- type
64814
+
- id
64815
+
type: object
64696
64816
MaintenanceWindow:
64697
64817
description: A maintenance window that defines a scheduled time period during which case-related notifications and automation rules are suppressed. Each maintenance window applies to cases matching a specified query.
64698
64818
properties:
@@ -80255,6 +80375,9 @@ components:
80255
80375
PatchMaintenanceRequestDataAttributes:
80256
80376
description: The supported attributes for updating a maintenance.
80257
80377
properties:
80378
+
canceled_description:
80379
+
description: The description shown when the maintenance is canceled.
80380
+
type: string
80258
80381
completed_date:
80259
80382
description: Timestamp of when the maintenance was completed.
80260
80383
format: date-time
@@ -80403,6 +80526,50 @@ components:
80403
80526
type: string
80404
80527
x-enum-varnames:
80405
80528
- MAINTENANCE_TEMPLATES
80529
+
PatchMaintenanceUpdateRequest:
80530
+
description: Request object for editing a maintenance update.
80531
+
example:
80532
+
data:
80533
+
attributes:
80534
+
description: We have completed maintenance on the API to improve performance.
description: Edits the message of a specific maintenance update. Editing is allowed regardless of the parent maintenance's status, including completed and canceled maintenances.
204167
+
operationId: PatchMaintenanceUpdate
204168
+
parameters:
204169
+
- description: The ID of the status page.
204170
+
in: path
204171
+
name: page_id
204172
+
required: true
204173
+
schema:
204174
+
format: uuid
204175
+
type: string
204176
+
- description: The ID of the maintenance.
204177
+
in: path
204178
+
name: maintenance_id
204179
+
required: true
204180
+
schema:
204181
+
format: uuid
204182
+
type: string
204183
+
- description: The ID of the maintenance update.
204184
+
in: path
204185
+
name: update_id
204186
+
required: true
204187
+
schema:
204188
+
format: uuid
204189
+
type: string
204190
+
requestBody:
204191
+
content:
204192
+
application/json:
204193
+
examples:
204194
+
default:
204195
+
value:
204196
+
data:
204197
+
attributes:
204198
+
description: We have completed maintenance on the API to improve performance.
description: Publishes a status page. For pages of type `public`, makes the status page available on the public internet and requires the `status_pages_public_page_publish` permission. For pages of type `internal`, makes the status page available under the `status-pages/$domain_prefix/view` route within the Datadog organization and requires the `status_pages_internal_page_publish` permission. The `status_pages_settings_write` permission is temporarily honored as we migrate publishing functionality from the update status page endpoint to the publish status page endpoint.
0 commit comments