Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204350,7 +204350,7 @@ paths:
- status_pages_incident_write
/api/v2/statuspages/{page_id}/publish:
post:
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.
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.
operationId: PublishStatusPage
parameters:
- description: The ID of the status page.
Expand All @@ -204371,19 +204371,17 @@ paths:
- AuthZ:
- status_pages_internal_page_publish
- status_pages_public_page_publish
- status_pages_settings_write
summary: Publish status page
tags:
- Status Pages
x-permission:
operator: OR
permissions:
- status_pages_settings_write
- status_pages_public_page_publish
- status_pages_internal_page_publish
/api/v2/statuspages/{page_id}/unpublish:
post:
description: Unpublishes a status page. For pages of type `public`, removes the status page from the public internet and requires the `status_pages_public_page_publish` permission. For pages of type `internal`, removes the `status-pages/$domain_prefix/view` route from the Datadog organization and requires the `status_pages_internal_page_publish` permission. The `status_pages_settings_write` permission is temporarily honored as we migrate unpublishing functionality from the update status page endpoint to the unpublish status page endpoint.
description: Unpublishes a status page. For pages of type `public`, removes the status page from the public internet and requires the `status_pages_public_page_publish` permission. For pages of type `internal`, removes the `status-pages/$domain_prefix/view` route from the Datadog organization and requires the `status_pages_internal_page_publish` permission.
operationId: UnpublishStatusPage
parameters:
- description: The ID of the status page.
Expand All @@ -204404,14 +204402,12 @@ paths:
- AuthZ:
- status_pages_internal_page_publish
- status_pages_public_page_publish
- status_pages_settings_write
summary: Unpublish status page
tags:
- Status Pages
x-permission:
operator: OR
permissions:
- status_pages_settings_write
- status_pages_public_page_publish
- status_pages_internal_page_publish
/api/v2/stegadography/get-widgets:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5810,9 +5810,7 @@ public CompletableFuture<Void> publishStatusPageAsync(UUID pageId) {
* on the public internet and requires the <code>status_pages_public_page_publish</code>
* permission. For pages of type <code>internal</code>, makes the status page available under the
* <code>status-pages/$domain_prefix/view</code> route within the Datadog organization and
* requires the <code>status_pages_internal_page_publish</code> permission. The <code>
* status_pages_settings_write</code> permission is temporarily honored as we migrate publishing
* functionality from the update status page endpoint to the publish status page endpoint.
* requires the <code>status_pages_internal_page_publish</code> permission.
*
* @param pageId The ID of the status page. (required)
* @return ApiResponse&lt;Void&gt;
Expand Down Expand Up @@ -6132,9 +6130,7 @@ public CompletableFuture<Void> unpublishStatusPageAsync(UUID pageId) {
* the public internet and requires the <code>status_pages_public_page_publish</code> permission.
* For pages of type <code>internal</code>, removes the <code>status-pages/$domain_prefix/view
* </code> route from the Datadog organization and requires the <code>
* status_pages_internal_page_publish</code> permission. The <code>status_pages_settings_write
* </code> permission is temporarily honored as we migrate unpublishing functionality from the
* update status page endpoint to the unpublish status page endpoint.
* status_pages_internal_page_publish</code> permission.
*
* @param pageId The ID of the status page. (required)
* @return ApiResponse&lt;Void&gt;
Expand Down
Loading