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.
64755
+
properties:
64756
+
id:
64757
+
description: The ID of the Datadog user.
64758
+
example: ""
64759
+
format: uuid
64760
+
type: string
64761
+
type:
64762
+
$ref: "#/components/schemas/StatusPagesUserType"
64763
+
required:
64764
+
- type
64765
+
- id
64766
+
type: object
64647
64767
MaintenanceWindow:
64648
64768
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.
64649
64769
properties:
@@ -80206,6 +80326,9 @@ components:
80206
80326
PatchMaintenanceRequestDataAttributes:
80207
80327
description: The supported attributes for updating a maintenance.
80208
80328
properties:
80329
+
canceled_description:
80330
+
description: The description shown when the maintenance is canceled.
80331
+
type: string
80209
80332
completed_date:
80210
80333
description: Timestamp of when the maintenance was completed.
80211
80334
format: date-time
@@ -80354,6 +80477,50 @@ components:
80354
80477
type: string
80355
80478
x-enum-varnames:
80356
80479
- MAINTENANCE_TEMPLATES
80480
+
PatchMaintenanceUpdateRequest:
80481
+
description: Request object for editing a maintenance update.
80482
+
example:
80483
+
data:
80484
+
attributes:
80485
+
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.
203806
+
operationId: PatchMaintenanceUpdate
203807
+
parameters:
203808
+
- description: The ID of the status page.
203809
+
in: path
203810
+
name: page_id
203811
+
required: true
203812
+
schema:
203813
+
format: uuid
203814
+
type: string
203815
+
- description: The ID of the maintenance.
203816
+
in: path
203817
+
name: maintenance_id
203818
+
required: true
203819
+
schema:
203820
+
format: uuid
203821
+
type: string
203822
+
- description: The ID of the maintenance update.
203823
+
in: path
203824
+
name: update_id
203825
+
required: true
203826
+
schema:
203827
+
format: uuid
203828
+
type: string
203829
+
requestBody:
203830
+
content:
203831
+
application/json:
203832
+
examples:
203833
+
default:
203834
+
value:
203835
+
data:
203836
+
attributes:
203837
+
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.
And request contains "page_id" parameter from "REPLACE.ME"
143
+
And request contains "maintenance_id" parameter from "REPLACE.ME"
144
+
And request contains "update_id" parameter from "REPLACE.ME"
145
+
And body with value {"data": {"attributes": {"description": "We have completed maintenance on the API to improve performance."}, "id": "00000000-0000-0000-0000-000000000000", "type": "maintenance_updates"}}
0 commit comments