diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 911cd63bb0..45672b441b 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -107213,7 +107213,7 @@ paths: permissions: - status_pages_settings_read post: - description: Creates a new status page. + description: "Creates a new status page. **Note**: Publishing a status page on creation via the `enabled` property will be deprecated. Use the dedicated [publish](#publish-status-page) status page endpoint after creation instead." operationId: CreateStatusPage parameters: - description: "Comma-separated list of resources to include. Supported values: created_by_user, last_modified_by_user." @@ -107428,7 +107428,7 @@ paths: permissions: - status_pages_settings_read patch: - description: Updates an existing status page's attributes. + description: "Updates an existing status page's attributes. **Note**: Publishing and unpublishing via the `enabled` property will be deprecated on this endpoint. Use the dedicated [publish](#publish-status-page) and [unpublish](#unpublish-status-page) status page endpoints instead." operationId: UpdateStatusPage parameters: - description: Whether to delete existing subscribers when updating a status page's type. @@ -108027,6 +108027,66 @@ paths: operator: AND permissions: - 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. + operationId: PublishStatusPage + parameters: + - description: The ID of the status page. + in: path + name: page_id + required: true + schema: + format: uuid + type: string + responses: + "204": + description: No Content + "429": + $ref: "#/components/responses/TooManyRequestsResponse" + security: + - apiKeyAuth: [] + appKeyAuth: [] + - AuthZ: [] + 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. + operationId: UnpublishStatusPage + parameters: + - description: The ID of the status page. + in: path + name: page_id + required: true + schema: + format: uuid + type: string + responses: + "204": + description: No Content + "429": + $ref: "#/components/responses/TooManyRequestsResponse" + security: + - apiKeyAuth: [] + appKeyAuth: [] + - AuthZ: [] + 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/synthetics/api-multistep/subtests/{public_id}: get: description: |- diff --git a/examples/v2/status-pages/PublishStatusPage.py b/examples/v2/status-pages/PublishStatusPage.py new file mode 100644 index 0000000000..6f5428342c --- /dev/null +++ b/examples/v2/status-pages/PublishStatusPage.py @@ -0,0 +1,17 @@ +""" +Publish status page returns "No Content" response +""" + +from os import environ +from datadog_api_client import ApiClient, Configuration +from datadog_api_client.v2.api.status_pages_api import StatusPagesApi + +# there is a valid "unpublished_status_page" in the system +UNPUBLISHED_STATUS_PAGE_DATA_ID = environ["UNPUBLISHED_STATUS_PAGE_DATA_ID"] + +configuration = Configuration() +with ApiClient(configuration) as api_client: + api_instance = StatusPagesApi(api_client) + api_instance.publish_status_page( + page_id=UNPUBLISHED_STATUS_PAGE_DATA_ID, + ) diff --git a/examples/v2/status-pages/UnpublishStatusPage.py b/examples/v2/status-pages/UnpublishStatusPage.py new file mode 100644 index 0000000000..84e02e5870 --- /dev/null +++ b/examples/v2/status-pages/UnpublishStatusPage.py @@ -0,0 +1,17 @@ +""" +Unpublish status page returns "No Content" response +""" + +from os import environ +from datadog_api_client import ApiClient, Configuration +from datadog_api_client.v2.api.status_pages_api import StatusPagesApi + +# there is a valid "status_page" in the system +STATUS_PAGE_DATA_ID = environ["STATUS_PAGE_DATA_ID"] + +configuration = Configuration() +with ApiClient(configuration) as api_client: + api_instance = StatusPagesApi(api_client) + api_instance.unpublish_status_page( + page_id=STATUS_PAGE_DATA_ID, + ) diff --git a/src/datadog_api_client/v2/api/status_pages_api.py b/src/datadog_api_client/v2/api/status_pages_api.py index b942be25e5..25a9f35362 100644 --- a/src/datadog_api_client/v2/api/status_pages_api.py +++ b/src/datadog_api_client/v2/api/status_pages_api.py @@ -533,6 +533,52 @@ def __init__(self, api_client=None): api_client=api_client, ) + self._publish_status_page_endpoint = _Endpoint( + settings={ + "response_type": None, + "auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"], + "endpoint_path": "/api/v2/statuspages/{page_id}/publish", + "operation_id": "publish_status_page", + "http_method": "POST", + "version": "v2", + }, + params_map={ + "page_id": { + "required": True, + "openapi_types": (UUID,), + "attribute": "page_id", + "location": "path", + }, + }, + headers_map={ + "accept": ["*/*"], + }, + api_client=api_client, + ) + + self._unpublish_status_page_endpoint = _Endpoint( + settings={ + "response_type": None, + "auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"], + "endpoint_path": "/api/v2/statuspages/{page_id}/unpublish", + "operation_id": "unpublish_status_page", + "http_method": "POST", + "version": "v2", + }, + params_map={ + "page_id": { + "required": True, + "openapi_types": (UUID,), + "attribute": "page_id", + "location": "path", + }, + }, + headers_map={ + "accept": ["*/*"], + }, + api_client=api_client, + ) + self._update_component_endpoint = _Endpoint( settings={ "response_type": (StatusPagesComponent,), @@ -794,7 +840,7 @@ def create_status_page( ) -> StatusPage: """Create status page. - Creates a new status page. + Creates a new status page. **Note** : Publishing a status page on creation via the ``enabled`` property will be deprecated. Use the dedicated `publish <#publish-status-page>`_ status page endpoint after creation instead. :type body: CreateStatusPageRequest :param include: Comma-separated list of resources to include. Supported values: created_by_user, last_modified_by_user. @@ -1134,6 +1180,40 @@ def list_status_pages( return self._list_status_pages_endpoint.call_with_http_info(**kwargs) + def publish_status_page( + self, + page_id: UUID, + ) -> None: + """Publish status page. + + 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. + + :param page_id: The ID of the status page. + :type page_id: UUID + :rtype: None + """ + kwargs: Dict[str, Any] = {} + kwargs["page_id"] = page_id + + return self._publish_status_page_endpoint.call_with_http_info(**kwargs) + + def unpublish_status_page( + self, + page_id: UUID, + ) -> None: + """Unpublish status page. + + 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. + + :param page_id: The ID of the status page. + :type page_id: UUID + :rtype: None + """ + kwargs: Dict[str, Any] = {} + kwargs["page_id"] = page_id + + return self._unpublish_status_page_endpoint.call_with_http_info(**kwargs) + def update_component( self, page_id: UUID, @@ -1255,7 +1335,7 @@ def update_status_page( ) -> StatusPage: """Update status page. - Updates an existing status page's attributes. + Updates an existing status page's attributes. **Note** : Publishing and unpublishing via the ``enabled`` property will be deprecated on this endpoint. Use the dedicated `publish <#publish-status-page>`_ and `unpublish <#unpublish-status-page>`_ status page endpoints instead. :param page_id: The ID of the status page. :type page_id: UUID diff --git a/tests/v2/cassettes/test_scenarios/test_create_component_returns_created_response.frozen b/tests/v2/cassettes/test_scenarios/test_create_component_returns_created_response.frozen index 8f678f2dbe..747c38975b 100644 --- a/tests/v2/cassettes/test_scenarios/test_create_component_returns_created_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_create_component_returns_created_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:35.997Z \ No newline at end of file +2026-03-31T18:43:45.443Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_create_component_returns_created_response.yaml b/tests/v2/cassettes/test_scenarios/test_create_component_returns_created_response.yaml index 9333f12c8b..0885e25947 100644 --- a/tests/v2/cassettes/test_scenarios/test_create_component_returns_created_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_create_component_returns_created_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"df531f11f71a2e23","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"9dbd15ff66733c82","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"3483924e-54de-4b7f-9177-56f224f8c6e6","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"d03bffa2-720c-4f82-871e-3f1599d38089","name":"Application","type":"group","position":0,"components":[{"id":"6fe382cb-5309-49bf-b56b-c9921a7d8153","name":"Login","type":"component","status":"operational","position":0},{"id":"b8a9ac5d-2470-4c43-b90d-817ba996822c","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:36.165599Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"df531f11f71a2e23","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:36.165599Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/3483924e-54de-4b7f-9177-56f224f8c6e6/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"daae96b1-2114-4979-8668-2f782fe4a82b","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"0827c72a-5886-4850-b9a0-3c0b62fd5cbd","name":"Application","type":"group","position":0,"components":[{"id":"2944ac68-cc1f-43bc-9950-a81912daf613","name":"Login","type":"component","status":"operational","position":0},{"id":"7374a8e5-7d66-43be-83f0-4337a739bdfb","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:43:45.548049Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"9dbd15ff66733c82","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:43:45.548049Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/daae96b1-2114-4979-8668-2f782fe4a82b/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -27,10 +27,10 @@ interactions: content-type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/statuspages/3483924e-54de-4b7f-9177-56f224f8c6e6/components + uri: https://api.datadoghq.com/api/v2/statuspages/daae96b1-2114-4979-8668-2f782fe4a82b/components response: body: - string: '{"data":{"id":"060dba63-7f63-4d0f-9278-aecabc6f9c30","type":"components","attributes":{"created_at":"2026-02-24T17:00:36.79986Z","modified_at":"2026-02-24T17:00:36.79986Z","name":"Logs","position":0,"status":"operational","type":"component"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"group":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"3483924e-54de-4b7f-9177-56f224f8c6e6","type":"status_pages"}}}}}' + string: '{"data":{"id":"dc1f6182-86a0-4f18-a4de-78f99ff1455f","type":"components","attributes":{"created_at":"2026-03-31T18:43:46.083871Z","modified_at":"2026-03-31T18:43:46.083871Z","name":"Logs","position":0,"status":"operational","type":"component"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"group":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"daae96b1-2114-4979-8668-2f782fe4a82b","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -43,7 +43,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/3483924e-54de-4b7f-9177-56f224f8c6e6/components/060dba63-7f63-4d0f-9278-aecabc6f9c30 + uri: https://api.datadoghq.com/api/v2/statuspages/daae96b1-2114-4979-8668-2f782fe4a82b/components/dc1f6182-86a0-4f18-a4de-78f99ff1455f response: body: string: '' @@ -57,7 +57,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/3483924e-54de-4b7f-9177-56f224f8c6e6 + uri: https://api.datadoghq.com/api/v2/statuspages/daae96b1-2114-4979-8668-2f782fe4a82b response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_create_degradation_returns_created_response.frozen b/tests/v2/cassettes/test_scenarios/test_create_degradation_returns_created_response.frozen index c66cc9f8a5..507afe517f 100644 --- a/tests/v2/cassettes/test_scenarios/test_create_degradation_returns_created_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_create_degradation_returns_created_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:37.682Z \ No newline at end of file +2026-03-31T18:43:46.834Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_create_degradation_returns_created_response.yaml b/tests/v2/cassettes/test_scenarios/test_create_degradation_returns_created_response.yaml index 0ae6ba4e42..dbbaf59f8b 100644 --- a/tests/v2/cassettes/test_scenarios/test_create_degradation_returns_created_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_create_degradation_returns_created_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"b1d19e0dbe588b0a","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"5ddb4afc3c8db319","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"a86d9d70-4879-411d-9690-c9887c7b7d55","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"f3f5c039-10f7-4a11-a3bc-c6c84fed4e15","name":"Application","type":"group","position":0,"components":[{"id":"e2599d98-53df-4bff-addb-61ef4f07d5ca","name":"Login","type":"component","status":"operational","position":0},{"id":"1c5904fb-16f8-4be8-ae85-b426908e324a","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:37.855421Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"b1d19e0dbe588b0a","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:37.855421Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/a86d9d70-4879-411d-9690-c9887c7b7d55/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"8c7a1055-f55b-49de-a9d0-f6ab38d62627","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"b8a1027c-f5f9-4fc9-8cb7-94412286e410","name":"Application","type":"group","position":0,"components":[{"id":"e92b23fc-fc4e-4f12-b1a7-66a78f4b950e","name":"Login","type":"component","status":"operational","position":0},{"id":"18cca9eb-d603-4051-806f-18557d6669b7","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:43:46.876375Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"5ddb4afc3c8db319","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:43:46.876375Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/8c7a1055-f55b-49de-a9d0-f6ab38d62627/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -20,7 +20,7 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"components_affected":[{"id":"e2599d98-53df-4bff-addb-61ef4f07d5ca","status":"major_outage"}],"description":"Our + body: '{"data":{"attributes":{"components_affected":[{"id":"e92b23fc-fc4e-4f12-b1a7-66a78f4b950e","status":"major_outage"}],"description":"Our API is experiencing elevated latency. We are investigating the issue.","status":"investigating","title":"Elevated API Latency"},"type":"degradations"}}' headers: @@ -29,13 +29,13 @@ interactions: content-type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/statuspages/a86d9d70-4879-411d-9690-c9887c7b7d55/degradations + uri: https://api.datadoghq.com/api/v2/statuspages/8c7a1055-f55b-49de-a9d0-f6ab38d62627/degradations response: body: - string: '{"data":{"id":"124bcf90-cf17-4c2a-81b8-089b419fc384","type":"degradations","attributes":{"components_affected":[{"id":"e2599d98-53df-4bff-addb-61ef4f07d5ca","name":"Login","status":"major_outage"}],"created_at":"2026-02-24T17:00:39.142715Z","description":"Our - API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-02-24T17:00:39.142715Z","status":"investigating","title":"Elevated - API Latency","updates":[{"id":"7d3f2ccb-619c-428a-ba44-fb91aa290211","created_at":"2026-02-24T17:00:39.142715Z","modified_at":"2026-02-24T17:00:39.142715Z","status":"investigating","description":"Our - API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"e2599d98-53df-4bff-addb-61ef4f07d5ca","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"a86d9d70-4879-411d-9690-c9887c7b7d55","type":"status_pages"}}}}}' + string: '{"data":{"id":"461d1f73-cfa7-4d35-a7c9-7335243f5d71","type":"degradations","attributes":{"components_affected":[{"id":"e92b23fc-fc4e-4f12-b1a7-66a78f4b950e","name":"Login","status":"major_outage"}],"created_at":"2026-03-31T18:43:47.589302Z","description":"Our + API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-03-31T18:43:47.589302Z","status":"investigating","title":"Elevated + API Latency","updates":[{"id":"4917a25f-2e54-43c5-bf9c-58002b97e464","created_at":"2026-03-31T18:43:47.589302Z","modified_at":"2026-03-31T18:43:47.589302Z","started_at":"2026-03-31T18:43:47.589302Z","status":"investigating","description":"Our + API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"e92b23fc-fc4e-4f12-b1a7-66a78f4b950e","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"8c7a1055-f55b-49de-a9d0-f6ab38d62627","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -48,7 +48,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/a86d9d70-4879-411d-9690-c9887c7b7d55/degradations/124bcf90-cf17-4c2a-81b8-089b419fc384 + uri: https://api.datadoghq.com/api/v2/statuspages/8c7a1055-f55b-49de-a9d0-f6ab38d62627/degradations/461d1f73-cfa7-4d35-a7c9-7335243f5d71 response: body: string: '' @@ -62,7 +62,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/a86d9d70-4879-411d-9690-c9887c7b7d55 + uri: https://api.datadoghq.com/api/v2/statuspages/8c7a1055-f55b-49de-a9d0-f6ab38d62627 response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_create_maintenance_returns_created_response.frozen b/tests/v2/cassettes/test_scenarios/test_create_maintenance_returns_created_response.frozen index 8574777f1a..e094809259 100644 --- a/tests/v2/cassettes/test_scenarios/test_create_maintenance_returns_created_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_create_maintenance_returns_created_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:40.396Z \ No newline at end of file +2026-03-31T18:43:48.523Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_create_maintenance_returns_created_response.yaml b/tests/v2/cassettes/test_scenarios/test_create_maintenance_returns_created_response.yaml index f91f7bdc3c..784053ffa3 100644 --- a/tests/v2/cassettes/test_scenarios/test_create_maintenance_returns_created_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_create_maintenance_returns_created_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"8e5ffe347d1751cc","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"72e5c18ca6f45f5a","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"bb1ed843-423e-4577-bf20-b904ddc3b28b","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"32226fbd-8de2-4786-91f6-86dddc2e59f6","name":"Application","type":"group","position":0,"components":[{"id":"b0c6ef86-fc2e-4b1c-ad79-c71abdf9764c","name":"Login","type":"component","status":"operational","position":0},{"id":"6c7b103c-d834-42f8-9646-63c842bf3005","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:40.572564Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"8e5ffe347d1751cc","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:40.572564Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/bb1ed843-423e-4577-bf20-b904ddc3b28b/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"e9314866-e3ff-41e5-937e-086e5b83dace","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"f91084ae-8238-443f-89e6-8ab671cfaa99","name":"Application","type":"group","position":0,"components":[{"id":"e3f8e669-7fca-434c-a79b-9e8bbbf1817a","name":"Login","type":"component","status":"operational","position":0},{"id":"348da805-3f66-4fe2-8a3c-d4397865f659","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:43:48.622034Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"72e5c18ca6f45f5a","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:43:48.622034Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/e9314866-e3ff-41e5-937e-086e5b83dace/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -20,10 +20,10 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"completed_date":"2026-02-24T19:00:40.396Z","completed_description":"We - have completed maintenance on the API to improve performance.","components_affected":[{"id":"b0c6ef86-fc2e-4b1c-ad79-c71abdf9764c","status":"operational"}],"in_progress_description":"We + body: '{"data":{"attributes":{"completed_date":"2026-03-31T20:43:48.523Z","completed_description":"We + have completed maintenance on the API to improve performance.","components_affected":[{"id":"e3f8e669-7fca-434c-a79b-9e8bbbf1817a","status":"operational"}],"in_progress_description":"We are currently performing maintenance on the API to improve performance.","scheduled_description":"We - will be performing maintenance on the API to improve performance.","start_date":"2026-02-24T18:00:40.396Z","title":"API + will be performing maintenance on the API to improve performance.","start_date":"2026-03-31T19:43:48.523Z","title":"API Maintenance"},"type":"maintenances"}}' headers: accept: @@ -31,15 +31,15 @@ interactions: content-type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/statuspages/bb1ed843-423e-4577-bf20-b904ddc3b28b/maintenances + uri: https://api.datadoghq.com/api/v2/statuspages/e9314866-e3ff-41e5-937e-086e5b83dace/maintenances response: body: - string: '{"data":{"id":"245cefbb-b4dc-49a0-aeac-1a0be682399f","type":"maintenances","attributes":{"completed_date":"2026-02-24T19:00:40.396Z","completed_description":"We - have completed maintenance on the API to improve performance.","components_affected":[{"id":"b0c6ef86-fc2e-4b1c-ad79-c71abdf9764c","name":"Login","status":"operational"}],"in_progress_description":"We - are currently performing maintenance on the API to improve performance.","modified_at":"2026-02-24T17:00:41.347226Z","published_date":"2026-02-24T17:00:41.347226Z","scheduled_description":"We - will be performing maintenance on the API to improve performance.","start_date":"2026-02-24T18:00:40.396Z","status":"scheduled","title":"API - Maintenance","updates":[{"id":"a166b22f-dc12-4e94-82ae-46c8b969484f","created_at":"2026-02-24T17:00:41.347226Z","modified_at":"2026-02-24T17:00:41.347226Z","started_at":"2026-02-24T17:00:41.347226Z","manual_transition":false,"status":"scheduled","description":"We - will be performing maintenance on the API to improve performance.","components_affected":[{"id":"b0c6ef86-fc2e-4b1c-ad79-c71abdf9764c","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"bb1ed843-423e-4577-bf20-b904ddc3b28b","type":"status_pages"}}}}}' + string: '{"data":{"id":"9090b224-a95c-4979-9a8b-ebe20687b00b","type":"maintenances","attributes":{"completed_date":"2026-03-31T20:43:48.523Z","completed_description":"We + have completed maintenance on the API to improve performance.","components_affected":[{"id":"e3f8e669-7fca-434c-a79b-9e8bbbf1817a","name":"Login","status":"operational"}],"in_progress_description":"We + are currently performing maintenance on the API to improve performance.","modified_at":"2026-03-31T18:43:49.356503Z","published_date":"2026-03-31T18:43:49.356503Z","scheduled_description":"We + will be performing maintenance on the API to improve performance.","start_date":"2026-03-31T19:43:48.523Z","status":"scheduled","title":"API + Maintenance","updates":[{"id":"adf33dfb-dea7-43d5-85fa-abdffc648b1c","created_at":"2026-03-31T18:43:49.356503Z","modified_at":"2026-03-31T18:43:49.356503Z","started_at":"2026-03-31T18:43:49.356503Z","manual_transition":false,"status":"scheduled","description":"We + will be performing maintenance on the API to improve performance.","components_affected":[{"id":"e3f8e669-7fca-434c-a79b-9e8bbbf1817a","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"e9314866-e3ff-41e5-937e-086e5b83dace","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -52,7 +52,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/bb1ed843-423e-4577-bf20-b904ddc3b28b + uri: https://api.datadoghq.com/api/v2/statuspages/e9314866-e3ff-41e5-937e-086e5b83dace response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_create_status_page_returns_created_response.frozen b/tests/v2/cassettes/test_scenarios/test_create_status_page_returns_created_response.frozen index 96ef50a180..dcbb334c7c 100644 --- a/tests/v2/cassettes/test_scenarios/test_create_status_page_returns_created_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_create_status_page_returns_created_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:42.403Z \ No newline at end of file +2026-03-31T18:43:49.996Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_create_status_page_returns_created_response.yaml b/tests/v2/cassettes/test_scenarios/test_create_status_page_returns_created_response.yaml index 2e6defab06..b0ff110bf1 100644 --- a/tests/v2/cassettes/test_scenarios/test_create_status_page_returns_created_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_create_status_page_returns_created_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"domain_prefix":"d579fbd5fd5aa108","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"domain_prefix":"1d150abe1922b587","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"9de0c787-c9ad-4f5d-b9d1-ec67791d7b22","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"fe44d53f-3411-4bd0-b5d3-df10d1fa4f52","name":"Login","type":"component","status":"operational","position":0},{"id":"ba4c1000-398f-4fd9-8594-82ad0b3be9e3","name":"Settings","type":"component","status":"operational","position":1}],"created_at":"2026-02-24T17:00:42.565108Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"d579fbd5fd5aa108","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:42.565108Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/9de0c787-c9ad-4f5d-b9d1-ec67791d7b22/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"e96eb4f1-3c07-47b9-af87-40f05d32f7b9","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"329fb4d6-34ab-4308-909d-bdd002e7b593","name":"Login","type":"component","status":"operational","position":0},{"id":"88c01589-2b00-4f6d-b7d0-b8c5ae5ee135","name":"Settings","type":"component","status":"operational","position":1}],"created_at":"2026-03-31T18:43:50.09773Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"1d150abe1922b587","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:43:50.09773Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/e96eb4f1-3c07-47b9-af87-40f05d32f7b9/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -25,7 +25,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/9de0c787-c9ad-4f5d-b9d1-ec67791d7b22 + uri: https://api.datadoghq.com/api/v2/statuspages/e96eb4f1-3c07-47b9-af87-40f05d32f7b9 response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_delete_component_returns_no_content_response.frozen b/tests/v2/cassettes/test_scenarios/test_delete_component_returns_no_content_response.frozen index c37e85d764..e07b8a5227 100644 --- a/tests/v2/cassettes/test_scenarios/test_delete_component_returns_no_content_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_delete_component_returns_no_content_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:43.840Z \ No newline at end of file +2026-03-31T18:43:51.034Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_delete_component_returns_no_content_response.yaml b/tests/v2/cassettes/test_scenarios/test_delete_component_returns_no_content_response.yaml index cba333a70e..1ab67445e5 100644 --- a/tests/v2/cassettes/test_scenarios/test_delete_component_returns_no_content_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_delete_component_returns_no_content_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"a48fef969e3afb8e","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"6f1e861977724f65","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"4cf573f8-ff26-4341-ac7a-420666af5d24","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"a8afd2dd-96bc-4f57-b445-9b92eb1b0a11","name":"Application","type":"group","position":0,"components":[{"id":"035ec25d-e999-4ab2-a7ce-cc49847dfd17","name":"Login","type":"component","status":"operational","position":0},{"id":"8c607c78-9856-421b-9f78-5a241f59e8b3","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:44.021412Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"a48fef969e3afb8e","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:44.021412Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/4cf573f8-ff26-4341-ac7a-420666af5d24/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"fa8844ec-7117-4c8c-8193-46cc5d833667","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"f20633b6-a8ce-4c0f-a80c-3113474176bb","name":"Application","type":"group","position":0,"components":[{"id":"4cccaaaf-f2c0-4c8e-ac55-a74ed099254c","name":"Login","type":"component","status":"operational","position":0},{"id":"324697fb-844d-4bff-be9d-b97a70737f34","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:43:51.115721Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"6f1e861977724f65","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:43:51.115721Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/fa8844ec-7117-4c8c-8193-46cc5d833667/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -25,7 +25,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/4cf573f8-ff26-4341-ac7a-420666af5d24/components/a8afd2dd-96bc-4f57-b445-9b92eb1b0a11 + uri: https://api.datadoghq.com/api/v2/statuspages/fa8844ec-7117-4c8c-8193-46cc5d833667/components/f20633b6-a8ce-4c0f-a80c-3113474176bb response: body: string: '' @@ -39,7 +39,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/4cf573f8-ff26-4341-ac7a-420666af5d24 + uri: https://api.datadoghq.com/api/v2/statuspages/fa8844ec-7117-4c8c-8193-46cc5d833667 response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_delete_degradation_returns_no_content_response.frozen b/tests/v2/cassettes/test_scenarios/test_delete_degradation_returns_no_content_response.frozen index 1b367f7523..e4863bea8f 100644 --- a/tests/v2/cassettes/test_scenarios/test_delete_degradation_returns_no_content_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_delete_degradation_returns_no_content_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:45.450Z \ No newline at end of file +2026-03-31T18:43:52.332Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_delete_degradation_returns_no_content_response.yaml b/tests/v2/cassettes/test_scenarios/test_delete_degradation_returns_no_content_response.yaml index 278ad0d041..f90fa54fb1 100644 --- a/tests/v2/cassettes/test_scenarios/test_delete_degradation_returns_no_content_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_delete_degradation_returns_no_content_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"24a63c7404e92b00","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"a323216379b4501f","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"529f8f23-0634-4cdf-8a81-cb7b82e19afc","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"27026121-0156-435f-8958-3fc3ebe1c01e","name":"Application","type":"group","position":0,"components":[{"id":"3b64fcd0-eec2-44dd-a84d-c186ccbd2b33","name":"Login","type":"component","status":"operational","position":0},{"id":"feab19f6-1213-4352-96e9-04558f2f3f38","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:45.630576Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"24a63c7404e92b00","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:45.630576Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/529f8f23-0634-4cdf-8a81-cb7b82e19afc/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"701e6c9d-fef2-42ef-8d32-327ffb77c2a2","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"469fc4eb-9361-4dc7-8545-709c588bd33c","name":"Application","type":"group","position":0,"components":[{"id":"1cf901d9-0103-403d-9c44-2ba849b9d683","name":"Login","type":"component","status":"operational","position":0},{"id":"4cd1e7ae-40c3-4d24-9056-fff3ab4541bb","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:43:52.426512Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"a323216379b4501f","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:43:52.426512Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/701e6c9d-fef2-42ef-8d32-327ffb77c2a2/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -20,7 +20,7 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"components_affected":[{"id":"3b64fcd0-eec2-44dd-a84d-c186ccbd2b33","status":"major_outage"}],"description":"Our + body: '{"data":{"attributes":{"components_affected":[{"id":"1cf901d9-0103-403d-9c44-2ba849b9d683","status":"major_outage"}],"description":"Our API is experiencing elevated latency. We are investigating the issue.","status":"investigating","title":"Elevated API Latency"},"type":"degradations"}}' headers: @@ -29,13 +29,13 @@ interactions: content-type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/statuspages/529f8f23-0634-4cdf-8a81-cb7b82e19afc/degradations + uri: https://api.datadoghq.com/api/v2/statuspages/701e6c9d-fef2-42ef-8d32-327ffb77c2a2/degradations response: body: - string: '{"data":{"id":"fd0a3e7a-d068-46cd-b870-40ec57c47a6b","type":"degradations","attributes":{"components_affected":[{"id":"3b64fcd0-eec2-44dd-a84d-c186ccbd2b33","name":"Login","status":"major_outage"}],"created_at":"2026-02-24T17:00:46.292177Z","description":"Our - API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-02-24T17:00:46.292177Z","status":"investigating","title":"Elevated - API Latency","updates":[{"id":"70f8b89d-ed88-46c0-91e2-2fd80aa1af38","created_at":"2026-02-24T17:00:46.292177Z","modified_at":"2026-02-24T17:00:46.292177Z","status":"investigating","description":"Our - API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"3b64fcd0-eec2-44dd-a84d-c186ccbd2b33","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"529f8f23-0634-4cdf-8a81-cb7b82e19afc","type":"status_pages"}}}}}' + string: '{"data":{"id":"a06c7407-b174-467a-9539-bd8aaec07847","type":"degradations","attributes":{"components_affected":[{"id":"1cf901d9-0103-403d-9c44-2ba849b9d683","name":"Login","status":"major_outage"}],"created_at":"2026-03-31T18:43:53.025569Z","description":"Our + API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-03-31T18:43:53.025569Z","status":"investigating","title":"Elevated + API Latency","updates":[{"id":"9836b41c-69f8-4516-83f3-b3315c8c31b1","created_at":"2026-03-31T18:43:53.025569Z","modified_at":"2026-03-31T18:43:53.025569Z","started_at":"2026-03-31T18:43:53.025569Z","status":"investigating","description":"Our + API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"1cf901d9-0103-403d-9c44-2ba849b9d683","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"701e6c9d-fef2-42ef-8d32-327ffb77c2a2","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -48,7 +48,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/529f8f23-0634-4cdf-8a81-cb7b82e19afc/degradations/fd0a3e7a-d068-46cd-b870-40ec57c47a6b + uri: https://api.datadoghq.com/api/v2/statuspages/701e6c9d-fef2-42ef-8d32-327ffb77c2a2/degradations/a06c7407-b174-467a-9539-bd8aaec07847 response: body: string: '' @@ -62,7 +62,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/529f8f23-0634-4cdf-8a81-cb7b82e19afc/degradations/fd0a3e7a-d068-46cd-b870-40ec57c47a6b + uri: https://api.datadoghq.com/api/v2/statuspages/701e6c9d-fef2-42ef-8d32-327ffb77c2a2/degradations/a06c7407-b174-467a-9539-bd8aaec07847 response: body: string: '{"errors":[{"title":"Generic Error","detail":"degradation not found"}]}' @@ -78,7 +78,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/529f8f23-0634-4cdf-8a81-cb7b82e19afc + uri: https://api.datadoghq.com/api/v2/statuspages/701e6c9d-fef2-42ef-8d32-327ffb77c2a2 response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_delete_status_page_returns_no_content_response.frozen b/tests/v2/cassettes/test_scenarios/test_delete_status_page_returns_no_content_response.frozen index 306938fc49..1704e49e94 100644 --- a/tests/v2/cassettes/test_scenarios/test_delete_status_page_returns_no_content_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_delete_status_page_returns_no_content_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:47.555Z \ No newline at end of file +2026-03-31T18:43:54.035Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_delete_status_page_returns_no_content_response.yaml b/tests/v2/cassettes/test_scenarios/test_delete_status_page_returns_no_content_response.yaml index 3d0e5cb8fc..6adc8d4c7b 100644 --- a/tests/v2/cassettes/test_scenarios/test_delete_status_page_returns_no_content_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_delete_status_page_returns_no_content_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"9289de40ecee7851","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"c81d3d5745f1e8f3","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"5fee28e5-913c-4c8e-b043-d580d3f99848","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"787b5f03-cbdf-40ce-b1da-75943e70dc1d","name":"Application","type":"group","position":0,"components":[{"id":"a646452b-3e0d-4a0f-be71-234237dd6b4f","name":"Login","type":"component","status":"operational","position":0},{"id":"1501d5e7-2576-4d6e-ab2c-9197f75e3210","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:47.709256Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"9289de40ecee7851","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:47.709256Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/5fee28e5-913c-4c8e-b043-d580d3f99848/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"7b6df653-3340-420d-a9e3-6791da941b56","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"5b5184fd-760b-4c00-8aa0-d1a0dc131465","name":"Application","type":"group","position":0,"components":[{"id":"0ed286ee-7b9c-4874-82ff-c3df16b85322","name":"Login","type":"component","status":"operational","position":0},{"id":"a6447a85-68a1-473f-a7a0-252588ac5482","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:43:54.133043Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"c81d3d5745f1e8f3","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:43:54.133043Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/7b6df653-3340-420d-a9e3-6791da941b56/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -25,7 +25,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/5fee28e5-913c-4c8e-b043-d580d3f99848 + uri: https://api.datadoghq.com/api/v2/statuspages/7b6df653-3340-420d-a9e3-6791da941b56 response: body: string: '' @@ -39,7 +39,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/5fee28e5-913c-4c8e-b043-d580d3f99848 + uri: https://api.datadoghq.com/api/v2/statuspages/7b6df653-3340-420d-a9e3-6791da941b56 response: body: string: '{"errors":[{"title":"Generic Error","detail":"status page not found"}]}' diff --git a/tests/v2/cassettes/test_scenarios/test_get_component_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_get_component_returns_ok_response.frozen index 1014028adc..4f4165b87c 100644 --- a/tests/v2/cassettes/test_scenarios/test_get_component_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_get_component_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:48.945Z \ No newline at end of file +2026-03-31T18:43:55.364Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_get_component_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_get_component_returns_ok_response.yaml index b6e41e2c02..86f2122458 100644 --- a/tests/v2/cassettes/test_scenarios/test_get_component_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_get_component_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"16dcaf5cdc284a4a","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"3d45028fbe6feef3","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"b6c8b2cd-36bb-41aa-8f27-1fd891a0f961","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"1cea8878-7fc8-4397-babc-8c41d90aeaa7","name":"Application","type":"group","position":0,"components":[{"id":"04bd30db-9a97-4088-8f16-694b87389cbb","name":"Login","type":"component","status":"operational","position":0},{"id":"4c111b7d-1cef-4233-8041-a519567a86b8","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:49.120106Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"16dcaf5cdc284a4a","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:49.120106Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/b6c8b2cd-36bb-41aa-8f27-1fd891a0f961/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"43888a42-0e4d-4180-ba7d-7c6f1ce381f1","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"65154ed0-293e-4d00-9535-07a6ca0bd66f","name":"Application","type":"group","position":0,"components":[{"id":"8b2f14d2-f892-442a-9d7e-927d56e6839a","name":"Login","type":"component","status":"operational","position":0},{"id":"50fc27af-f71b-425c-8f50-b0050f71aa16","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:43:55.533175Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"3d45028fbe6feef3","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:43:55.533175Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/43888a42-0e4d-4180-ba7d-7c6f1ce381f1/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -25,10 +25,10 @@ interactions: accept: - application/json method: GET - uri: https://api.datadoghq.com/api/v2/statuspages/b6c8b2cd-36bb-41aa-8f27-1fd891a0f961/components/1cea8878-7fc8-4397-babc-8c41d90aeaa7 + uri: https://api.datadoghq.com/api/v2/statuspages/43888a42-0e4d-4180-ba7d-7c6f1ce381f1/components/65154ed0-293e-4d00-9535-07a6ca0bd66f response: body: - string: '{"data":{"id":"1cea8878-7fc8-4397-babc-8c41d90aeaa7","type":"components","attributes":{"components":[{"id":"04bd30db-9a97-4088-8f16-694b87389cbb","name":"Login","type":"component","status":"operational","position":0},{"id":"4c111b7d-1cef-4233-8041-a519567a86b8","name":"Settings","type":"component","status":"operational","position":1}],"created_at":"2026-02-24T17:00:49.120106Z","modified_at":"2026-02-24T17:00:49.120106Z","name":"Application","position":0,"type":"group"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"group":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"b6c8b2cd-36bb-41aa-8f27-1fd891a0f961","type":"status_pages"}}}}}' + string: '{"data":{"id":"65154ed0-293e-4d00-9535-07a6ca0bd66f","type":"components","attributes":{"components":[{"id":"8b2f14d2-f892-442a-9d7e-927d56e6839a","name":"Login","type":"component","status":"operational","position":0},{"id":"50fc27af-f71b-425c-8f50-b0050f71aa16","name":"Settings","type":"component","status":"operational","position":1}],"created_at":"2026-03-31T18:43:55.533175Z","modified_at":"2026-03-31T18:43:55.533175Z","name":"Application","position":0,"type":"group"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"group":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"43888a42-0e4d-4180-ba7d-7c6f1ce381f1","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -41,7 +41,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/b6c8b2cd-36bb-41aa-8f27-1fd891a0f961 + uri: https://api.datadoghq.com/api/v2/statuspages/43888a42-0e4d-4180-ba7d-7c6f1ce381f1 response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_get_degradation_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_get_degradation_returns_ok_response.frozen index 0d6725b772..ab60f38390 100644 --- a/tests/v2/cassettes/test_scenarios/test_get_degradation_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_get_degradation_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:50.355Z \ No newline at end of file +2026-03-31T18:43:56.714Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_get_degradation_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_get_degradation_returns_ok_response.yaml index 063851089c..575abd7cee 100644 --- a/tests/v2/cassettes/test_scenarios/test_get_degradation_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_get_degradation_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"12fd9e2fcfbad77b","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"3551e2cf855f99bb","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"317cba21-cebc-4436-94df-09bbdf3d4cb6","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"c5589831-a633-4f87-87c7-6abb7404ba5d","name":"Application","type":"group","position":0,"components":[{"id":"c8bfec42-82a6-43cd-bf99-23de9c2f72a8","name":"Login","type":"component","status":"operational","position":0},{"id":"5a6c8210-7239-42ae-b7ae-396b26cf21b5","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:50.525032Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"12fd9e2fcfbad77b","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:50.525032Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/317cba21-cebc-4436-94df-09bbdf3d4cb6/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"6ee7eadf-16dc-477e-bf6f-5041d4244734","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"27e6d118-4b66-4634-a139-d661b812d987","name":"Application","type":"group","position":0,"components":[{"id":"f4b8cafc-177c-4553-8ee3-30a299c148a9","name":"Login","type":"component","status":"operational","position":0},{"id":"8294743b-4836-4607-9a9f-d00b83a426ee","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:43:56.804056Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"3551e2cf855f99bb","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:43:56.804056Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/6ee7eadf-16dc-477e-bf6f-5041d4244734/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -20,7 +20,7 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"components_affected":[{"id":"c8bfec42-82a6-43cd-bf99-23de9c2f72a8","status":"major_outage"}],"description":"Our + body: '{"data":{"attributes":{"components_affected":[{"id":"f4b8cafc-177c-4553-8ee3-30a299c148a9","status":"major_outage"}],"description":"Our API is experiencing elevated latency. We are investigating the issue.","status":"investigating","title":"Elevated API Latency"},"type":"degradations"}}' headers: @@ -29,13 +29,13 @@ interactions: content-type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/statuspages/317cba21-cebc-4436-94df-09bbdf3d4cb6/degradations + uri: https://api.datadoghq.com/api/v2/statuspages/6ee7eadf-16dc-477e-bf6f-5041d4244734/degradations response: body: - string: '{"data":{"id":"3199b71f-e5a6-4651-8498-bb27cf7389f8","type":"degradations","attributes":{"components_affected":[{"id":"c8bfec42-82a6-43cd-bf99-23de9c2f72a8","name":"Login","status":"major_outage"}],"created_at":"2026-02-24T17:00:51.138156Z","description":"Our - API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-02-24T17:00:51.138156Z","status":"investigating","title":"Elevated - API Latency","updates":[{"id":"6755caad-fc13-4d65-8ed8-0468c38dac6d","created_at":"2026-02-24T17:00:51.138156Z","modified_at":"2026-02-24T17:00:51.138156Z","status":"investigating","description":"Our - API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"c8bfec42-82a6-43cd-bf99-23de9c2f72a8","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"317cba21-cebc-4436-94df-09bbdf3d4cb6","type":"status_pages"}}}}}' + string: '{"data":{"id":"e18320c6-88ff-4b06-a0a8-df88e78ec972","type":"degradations","attributes":{"components_affected":[{"id":"f4b8cafc-177c-4553-8ee3-30a299c148a9","name":"Login","status":"major_outage"}],"created_at":"2026-03-31T18:43:57.629751Z","description":"Our + API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-03-31T18:43:57.629751Z","status":"investigating","title":"Elevated + API Latency","updates":[{"id":"36dbb568-d081-4901-a0d2-f6f9556c1ff6","created_at":"2026-03-31T18:43:57.629751Z","modified_at":"2026-03-31T18:43:57.629751Z","started_at":"2026-03-31T18:43:57.629751Z","status":"investigating","description":"Our + API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"f4b8cafc-177c-4553-8ee3-30a299c148a9","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"6ee7eadf-16dc-477e-bf6f-5041d4244734","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -48,13 +48,13 @@ interactions: accept: - application/json method: GET - uri: https://api.datadoghq.com/api/v2/statuspages/317cba21-cebc-4436-94df-09bbdf3d4cb6/degradations/3199b71f-e5a6-4651-8498-bb27cf7389f8 + uri: https://api.datadoghq.com/api/v2/statuspages/6ee7eadf-16dc-477e-bf6f-5041d4244734/degradations/e18320c6-88ff-4b06-a0a8-df88e78ec972 response: body: - string: '{"data":{"id":"3199b71f-e5a6-4651-8498-bb27cf7389f8","type":"degradations","attributes":{"components_affected":[{"id":"c8bfec42-82a6-43cd-bf99-23de9c2f72a8","name":"Login","status":"major_outage"}],"created_at":"2026-02-24T17:00:51.138156Z","description":"Our - API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-02-24T17:00:51.138156Z","status":"investigating","title":"Elevated - API Latency","updates":[{"id":"6755caad-fc13-4d65-8ed8-0468c38dac6d","created_at":"2026-02-24T17:00:51.138156Z","modified_at":"2026-02-24T17:00:51.138156Z","status":"investigating","description":"Our - API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"c8bfec42-82a6-43cd-bf99-23de9c2f72a8","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"317cba21-cebc-4436-94df-09bbdf3d4cb6","type":"status_pages"}}}}}' + string: '{"data":{"id":"e18320c6-88ff-4b06-a0a8-df88e78ec972","type":"degradations","attributes":{"components_affected":[{"id":"f4b8cafc-177c-4553-8ee3-30a299c148a9","name":"Login","status":"major_outage"}],"created_at":"2026-03-31T18:43:57.629751Z","description":"Our + API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-03-31T18:43:57.629751Z","status":"investigating","title":"Elevated + API Latency","updates":[{"id":"36dbb568-d081-4901-a0d2-f6f9556c1ff6","created_at":"2026-03-31T18:43:57.629751Z","modified_at":"2026-03-31T18:43:57.629751Z","started_at":"2026-03-31T18:43:57.629751Z","status":"investigating","description":"Our + API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"f4b8cafc-177c-4553-8ee3-30a299c148a9","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"6ee7eadf-16dc-477e-bf6f-5041d4244734","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -67,7 +67,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/317cba21-cebc-4436-94df-09bbdf3d4cb6/degradations/3199b71f-e5a6-4651-8498-bb27cf7389f8 + uri: https://api.datadoghq.com/api/v2/statuspages/6ee7eadf-16dc-477e-bf6f-5041d4244734/degradations/e18320c6-88ff-4b06-a0a8-df88e78ec972 response: body: string: '' @@ -81,7 +81,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/317cba21-cebc-4436-94df-09bbdf3d4cb6 + uri: https://api.datadoghq.com/api/v2/statuspages/6ee7eadf-16dc-477e-bf6f-5041d4244734 response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_get_maintenance_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_get_maintenance_returns_ok_response.frozen index a1a3177748..305e50ded8 100644 --- a/tests/v2/cassettes/test_scenarios/test_get_maintenance_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_get_maintenance_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:52.135Z \ No newline at end of file +2026-03-31T18:43:58.660Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_get_maintenance_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_get_maintenance_returns_ok_response.yaml index 385373cec6..3295587bbc 100644 --- a/tests/v2/cassettes/test_scenarios/test_get_maintenance_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_get_maintenance_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"9aed0f41362f59e0","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"1abcffd6cf16459e","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"8d1daf4d-e7de-4722-9130-9034915b2bbb","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"8558c72b-733f-42ab-8fb5-bd58c4e7f7e5","name":"Application","type":"group","position":0,"components":[{"id":"0c8fbd54-bdca-4093-970d-7ead0275b092","name":"Login","type":"component","status":"operational","position":0},{"id":"57c87ddd-e27a-4617-a7b3-2114c3a88c51","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:52.289454Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"9aed0f41362f59e0","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:52.289454Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/8d1daf4d-e7de-4722-9130-9034915b2bbb/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"a3f37f49-7dd9-4eaa-96c7-e274fa73ad68","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"de3c3f87-8534-40db-bdc4-9e4cce07e94a","name":"Application","type":"group","position":0,"components":[{"id":"961b7857-5f48-4cbb-8daa-d103d4e4722d","name":"Login","type":"component","status":"operational","position":0},{"id":"81b6ec9d-2881-43aa-8e5d-29eef9ba9d31","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:43:58.744798Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"1abcffd6cf16459e","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:43:58.744798Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/a3f37f49-7dd9-4eaa-96c7-e274fa73ad68/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -20,10 +20,10 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"completed_date":"2026-02-24T19:00:52.135Z","completed_description":"We - have completed maintenance on the API to improve performance.","components_affected":[{"id":"0c8fbd54-bdca-4093-970d-7ead0275b092","status":"operational"}],"in_progress_description":"We + body: '{"data":{"attributes":{"completed_date":"2026-03-31T20:43:58.660Z","completed_description":"We + have completed maintenance on the API to improve performance.","components_affected":[{"id":"961b7857-5f48-4cbb-8daa-d103d4e4722d","status":"operational"}],"in_progress_description":"We are currently performing maintenance on the API to improve performance.","scheduled_description":"We - will be performing maintenance on the API to improve performance.","start_date":"2026-02-24T18:00:52.135Z","title":"API + will be performing maintenance on the API to improve performance.","start_date":"2026-03-31T19:43:58.660Z","title":"API Maintenance"},"type":"maintenances"}}' headers: accept: @@ -31,15 +31,15 @@ interactions: content-type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/statuspages/8d1daf4d-e7de-4722-9130-9034915b2bbb/maintenances + uri: https://api.datadoghq.com/api/v2/statuspages/a3f37f49-7dd9-4eaa-96c7-e274fa73ad68/maintenances response: body: - string: '{"data":{"id":"bfd8dc52-55d6-4868-b64a-d13a6bd401fd","type":"maintenances","attributes":{"completed_date":"2026-02-24T19:00:52.135Z","completed_description":"We - have completed maintenance on the API to improve performance.","components_affected":[{"id":"0c8fbd54-bdca-4093-970d-7ead0275b092","name":"Login","status":"operational"}],"in_progress_description":"We - are currently performing maintenance on the API to improve performance.","modified_at":"2026-02-24T17:00:53.019047Z","published_date":"2026-02-24T17:00:53.019047Z","scheduled_description":"We - will be performing maintenance on the API to improve performance.","start_date":"2026-02-24T18:00:52.135Z","status":"scheduled","title":"API - Maintenance","updates":[{"id":"2edf855a-3c89-4425-8295-13b7b882e942","created_at":"2026-02-24T17:00:53.019047Z","modified_at":"2026-02-24T17:00:53.019047Z","started_at":"2026-02-24T17:00:53.019047Z","manual_transition":false,"status":"scheduled","description":"We - will be performing maintenance on the API to improve performance.","components_affected":[{"id":"0c8fbd54-bdca-4093-970d-7ead0275b092","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"8d1daf4d-e7de-4722-9130-9034915b2bbb","type":"status_pages"}}}}}' + string: '{"data":{"id":"6a647e94-a2f8-4469-9c21-d4a75a2ecd39","type":"maintenances","attributes":{"completed_date":"2026-03-31T20:43:58.66Z","completed_description":"We + have completed maintenance on the API to improve performance.","components_affected":[{"id":"961b7857-5f48-4cbb-8daa-d103d4e4722d","name":"Login","status":"operational"}],"in_progress_description":"We + are currently performing maintenance on the API to improve performance.","modified_at":"2026-03-31T18:43:59.331709Z","published_date":"2026-03-31T18:43:59.331709Z","scheduled_description":"We + will be performing maintenance on the API to improve performance.","start_date":"2026-03-31T19:43:58.66Z","status":"scheduled","title":"API + Maintenance","updates":[{"id":"b53298a6-257c-4360-ae12-8a7c73723110","created_at":"2026-03-31T18:43:59.331709Z","modified_at":"2026-03-31T18:43:59.331709Z","started_at":"2026-03-31T18:43:59.331709Z","manual_transition":false,"status":"scheduled","description":"We + will be performing maintenance on the API to improve performance.","components_affected":[{"id":"961b7857-5f48-4cbb-8daa-d103d4e4722d","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"a3f37f49-7dd9-4eaa-96c7-e274fa73ad68","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -52,15 +52,15 @@ interactions: accept: - application/json method: GET - uri: https://api.datadoghq.com/api/v2/statuspages/8d1daf4d-e7de-4722-9130-9034915b2bbb/maintenances/bfd8dc52-55d6-4868-b64a-d13a6bd401fd + uri: https://api.datadoghq.com/api/v2/statuspages/a3f37f49-7dd9-4eaa-96c7-e274fa73ad68/maintenances/6a647e94-a2f8-4469-9c21-d4a75a2ecd39 response: body: - string: '{"data":{"id":"bfd8dc52-55d6-4868-b64a-d13a6bd401fd","type":"maintenances","attributes":{"completed_date":"2026-02-24T19:00:52.135Z","completed_description":"We - have completed maintenance on the API to improve performance.","components_affected":[{"id":"0c8fbd54-bdca-4093-970d-7ead0275b092","name":"Login","status":"operational"}],"in_progress_description":"We - are currently performing maintenance on the API to improve performance.","modified_at":"2026-02-24T17:00:53.019047Z","published_date":"2026-02-24T17:00:53.019047Z","scheduled_description":"We - will be performing maintenance on the API to improve performance.","start_date":"2026-02-24T18:00:52.135Z","status":"scheduled","title":"API - Maintenance","updates":[{"id":"2edf855a-3c89-4425-8295-13b7b882e942","created_at":"2026-02-24T17:00:53.019047Z","modified_at":"2026-02-24T17:00:53.019047Z","started_at":"2026-02-24T17:00:53.019047Z","manual_transition":false,"status":"scheduled","description":"We - will be performing maintenance on the API to improve performance.","components_affected":[{"id":"0c8fbd54-bdca-4093-970d-7ead0275b092","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"8d1daf4d-e7de-4722-9130-9034915b2bbb","type":"status_pages"}}}}}' + string: '{"data":{"id":"6a647e94-a2f8-4469-9c21-d4a75a2ecd39","type":"maintenances","attributes":{"completed_date":"2026-03-31T20:43:58.66Z","completed_description":"We + have completed maintenance on the API to improve performance.","components_affected":[{"id":"961b7857-5f48-4cbb-8daa-d103d4e4722d","name":"Login","status":"operational"}],"in_progress_description":"We + are currently performing maintenance on the API to improve performance.","modified_at":"2026-03-31T18:43:59.331709Z","published_date":"2026-03-31T18:43:59.331709Z","scheduled_description":"We + will be performing maintenance on the API to improve performance.","start_date":"2026-03-31T19:43:58.66Z","status":"scheduled","title":"API + Maintenance","updates":[{"id":"b53298a6-257c-4360-ae12-8a7c73723110","created_at":"2026-03-31T18:43:59.331709Z","modified_at":"2026-03-31T18:43:59.331709Z","started_at":"2026-03-31T18:43:59.331709Z","manual_transition":false,"status":"scheduled","description":"We + will be performing maintenance on the API to improve performance.","components_affected":[{"id":"961b7857-5f48-4cbb-8daa-d103d4e4722d","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"a3f37f49-7dd9-4eaa-96c7-e274fa73ad68","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -73,7 +73,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/8d1daf4d-e7de-4722-9130-9034915b2bbb + uri: https://api.datadoghq.com/api/v2/statuspages/a3f37f49-7dd9-4eaa-96c7-e274fa73ad68 response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_get_status_page_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_get_status_page_returns_ok_response.frozen index 4ba83511b5..2f6991b505 100644 --- a/tests/v2/cassettes/test_scenarios/test_get_status_page_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_get_status_page_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:53.797Z \ No newline at end of file +2026-03-31T18:44:00.174Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_get_status_page_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_get_status_page_returns_ok_response.yaml index 03eb563fae..63a15b6ef4 100644 --- a/tests/v2/cassettes/test_scenarios/test_get_status_page_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_get_status_page_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"8c26840eabe71dc3","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"2d861a54c51993ae","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"ad595545-a10f-4156-86c4-4b7e628a373f","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"bef1338e-b586-4b82-bf51-cd924583b1a4","name":"Application","type":"group","position":0,"components":[{"id":"892f0166-6f66-4113-a4ca-f38ad360853b","name":"Login","type":"component","status":"operational","position":0},{"id":"bc546936-c609-4dff-ac47-cfc73262b9ad","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:53.951086Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"8c26840eabe71dc3","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:53.951086Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/ad595545-a10f-4156-86c4-4b7e628a373f/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"3cd76198-ed6f-43d3-82da-97f5017f31c9","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"72f72b44-082b-4eee-a619-54f6ec6b27db","name":"Application","type":"group","position":0,"components":[{"id":"7126cd27-4c74-4196-8759-3f060b76034b","name":"Login","type":"component","status":"operational","position":0},{"id":"c91b0e4a-9cfd-47f9-a78f-41ecdc0b5dcf","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:00.265912Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"2d861a54c51993ae","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:00.265912Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/3cd76198-ed6f-43d3-82da-97f5017f31c9/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -25,11 +25,11 @@ interactions: accept: - application/json method: GET - uri: https://api.datadoghq.com/api/v2/statuspages/ad595545-a10f-4156-86c4-4b7e628a373f + uri: https://api.datadoghq.com/api/v2/statuspages/3cd76198-ed6f-43d3-82da-97f5017f31c9 response: body: - string: '{"data":{"id":"ad595545-a10f-4156-86c4-4b7e628a373f","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"bef1338e-b586-4b82-bf51-cd924583b1a4","name":"Application","type":"group","position":0,"components":[{"id":"892f0166-6f66-4113-a4ca-f38ad360853b","name":"Login","type":"component","status":"operational","position":0},{"id":"bc546936-c609-4dff-ac47-cfc73262b9ad","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:53.951086Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"8c26840eabe71dc3","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:53.951086Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/ad595545-a10f-4156-86c4-4b7e628a373f/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"3cd76198-ed6f-43d3-82da-97f5017f31c9","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"72f72b44-082b-4eee-a619-54f6ec6b27db","name":"Application","type":"group","position":0,"components":[{"id":"7126cd27-4c74-4196-8759-3f060b76034b","name":"Login","type":"component","status":"operational","position":0},{"id":"c91b0e4a-9cfd-47f9-a78f-41ecdc0b5dcf","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:00.265912Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"2d861a54c51993ae","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:00.265912Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/3cd76198-ed6f-43d3-82da-97f5017f31c9/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -42,7 +42,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/ad595545-a10f-4156-86c4-4b7e628a373f + uri: https://api.datadoghq.com/api/v2/statuspages/3cd76198-ed6f-43d3-82da-97f5017f31c9 response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_list_components_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_list_components_returns_ok_response.frozen index 6ba76149ba..0ebcc8383a 100644 --- a/tests/v2/cassettes/test_scenarios/test_list_components_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_list_components_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:55.477Z \ No newline at end of file +2026-03-31T18:44:01.629Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_list_components_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_list_components_returns_ok_response.yaml index 23ac4e3e4e..100a0167dc 100644 --- a/tests/v2/cassettes/test_scenarios/test_list_components_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_list_components_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"c498abdeba4af7af","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"c8606a241b31538e","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"b7030ed3-627b-4172-a1db-ed4844518d9a","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"15c02806-5062-4a31-b92e-1156869483e4","name":"Application","type":"group","position":0,"components":[{"id":"b8dcb280-a392-4a53-873e-3303732ffa56","name":"Login","type":"component","status":"operational","position":0},{"id":"96014dbf-2729-404f-99f8-6988e13fd8c6","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:55.643889Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"c498abdeba4af7af","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:55.643889Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/b7030ed3-627b-4172-a1db-ed4844518d9a/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"c4d249f8-24f3-436d-ae84-7afd6862114e","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"57d907b2-4797-4db9-9deb-fe06bbc31da3","name":"Application","type":"group","position":0,"components":[{"id":"3cd0f94d-68a6-4093-84b3-04bfc84a9598","name":"Login","type":"component","status":"operational","position":0},{"id":"dfdcd5ae-8f05-4c96-b51e-ac10d42268f6","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:01.716141Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"c8606a241b31538e","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:01.716141Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/c4d249f8-24f3-436d-ae84-7afd6862114e/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -25,10 +25,10 @@ interactions: accept: - application/json method: GET - uri: https://api.datadoghq.com/api/v2/statuspages/b7030ed3-627b-4172-a1db-ed4844518d9a/components + uri: https://api.datadoghq.com/api/v2/statuspages/c4d249f8-24f3-436d-ae84-7afd6862114e/components response: body: - string: '{"data":[{"id":"15c02806-5062-4a31-b92e-1156869483e4","type":"components","attributes":{"components":[{"id":"b8dcb280-a392-4a53-873e-3303732ffa56","name":"Login","type":"component","status":"operational","position":0},{"id":"96014dbf-2729-404f-99f8-6988e13fd8c6","name":"Settings","type":"component","status":"operational","position":1}],"created_at":"2026-02-24T17:00:55.643889Z","modified_at":"2026-02-24T17:00:55.643889Z","name":"Application","position":0,"type":"group"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"group":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"b7030ed3-627b-4172-a1db-ed4844518d9a","type":"status_pages"}}}}]}' + string: '{"data":[{"id":"57d907b2-4797-4db9-9deb-fe06bbc31da3","type":"components","attributes":{"components":[{"id":"3cd0f94d-68a6-4093-84b3-04bfc84a9598","name":"Login","type":"component","status":"operational","position":0},{"id":"dfdcd5ae-8f05-4c96-b51e-ac10d42268f6","name":"Settings","type":"component","status":"operational","position":1}],"created_at":"2026-03-31T18:44:01.716141Z","modified_at":"2026-03-31T18:44:01.716141Z","name":"Application","position":0,"type":"group"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"group":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"c4d249f8-24f3-436d-ae84-7afd6862114e","type":"status_pages"}}}}]}' headers: content-type: - application/vnd.api+json @@ -41,7 +41,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/b7030ed3-627b-4172-a1db-ed4844518d9a + uri: https://api.datadoghq.com/api/v2/statuspages/c4d249f8-24f3-436d-ae84-7afd6862114e response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_list_degradations_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_list_degradations_returns_ok_response.frozen index da44433f24..da65f38ca9 100644 --- a/tests/v2/cassettes/test_scenarios/test_list_degradations_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_list_degradations_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:56.828Z \ No newline at end of file +2026-03-31T18:44:02.929Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_list_degradations_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_list_degradations_returns_ok_response.yaml index 05ee5bf98e..f653833eef 100644 --- a/tests/v2/cassettes/test_scenarios/test_list_degradations_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_list_degradations_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"4cbed4a1e7e245cd","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"7ed55ec2d58bcd2f","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"db7b590d-cced-4b48-a7fa-a8cad2ffe6d2","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"33943b97-35dc-45b5-821e-cd61b65a6a8b","name":"Application","type":"group","position":0,"components":[{"id":"05dbb51c-56b3-4a3a-a051-cf44128af296","name":"Login","type":"component","status":"operational","position":0},{"id":"b39e6a73-07f2-4174-a023-328400524a64","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:57.01904Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"4cbed4a1e7e245cd","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:57.01904Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/db7b590d-cced-4b48-a7fa-a8cad2ffe6d2/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"b06157ae-2b55-44e9-bcbb-4bf96055fc66","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"83b1bbab-4ea5-4103-a2b9-dda7abdc8e05","name":"Application","type":"group","position":0,"components":[{"id":"d73e2857-3e73-46a9-b577-95e371f40fd6","name":"Login","type":"component","status":"operational","position":0},{"id":"fd0b1426-d566-4e3b-bccf-03e57bbea6a3","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:03.017398Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7ed55ec2d58bcd2f","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:03.017398Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/b06157ae-2b55-44e9-bcbb-4bf96055fc66/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -20,7 +20,7 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"components_affected":[{"id":"05dbb51c-56b3-4a3a-a051-cf44128af296","status":"major_outage"}],"description":"Our + body: '{"data":{"attributes":{"components_affected":[{"id":"d73e2857-3e73-46a9-b577-95e371f40fd6","status":"major_outage"}],"description":"Our API is experiencing elevated latency. We are investigating the issue.","status":"investigating","title":"Elevated API Latency"},"type":"degradations"}}' headers: @@ -29,13 +29,13 @@ interactions: content-type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/statuspages/db7b590d-cced-4b48-a7fa-a8cad2ffe6d2/degradations + uri: https://api.datadoghq.com/api/v2/statuspages/b06157ae-2b55-44e9-bcbb-4bf96055fc66/degradations response: body: - string: '{"data":{"id":"6d7edbfb-18e5-4c65-90c8-905841616f10","type":"degradations","attributes":{"components_affected":[{"id":"05dbb51c-56b3-4a3a-a051-cf44128af296","name":"Login","status":"major_outage"}],"created_at":"2026-02-24T17:00:57.665863Z","description":"Our - API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-02-24T17:00:57.665863Z","status":"investigating","title":"Elevated - API Latency","updates":[{"id":"8fa25e63-3621-4d63-bc04-7b89a5469968","created_at":"2026-02-24T17:00:57.665863Z","modified_at":"2026-02-24T17:00:57.665863Z","status":"investigating","description":"Our - API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"05dbb51c-56b3-4a3a-a051-cf44128af296","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"db7b590d-cced-4b48-a7fa-a8cad2ffe6d2","type":"status_pages"}}}}}' + string: '{"data":{"id":"69ec0272-0b19-4b76-b46d-1bff243bf815","type":"degradations","attributes":{"components_affected":[{"id":"d73e2857-3e73-46a9-b577-95e371f40fd6","name":"Login","status":"major_outage"}],"created_at":"2026-03-31T18:44:03.716424Z","description":"Our + API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-03-31T18:44:03.716424Z","status":"investigating","title":"Elevated + API Latency","updates":[{"id":"4015e2c8-11f7-4dda-924c-d602b6b54c9b","created_at":"2026-03-31T18:44:03.716424Z","modified_at":"2026-03-31T18:44:03.716424Z","started_at":"2026-03-31T18:44:03.716424Z","status":"investigating","description":"Our + API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"d73e2857-3e73-46a9-b577-95e371f40fd6","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"b06157ae-2b55-44e9-bcbb-4bf96055fc66","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -51,10 +51,10 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages/degradations response: body: - string: '{"data":[{"id":"6d7edbfb-18e5-4c65-90c8-905841616f10","type":"degradations","attributes":{"components_affected":[{"id":"05dbb51c-56b3-4a3a-a051-cf44128af296","name":"Login","status":"major_outage"}],"created_at":"2026-02-24T17:00:57.665863Z","description":"Our - API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-02-24T17:00:57.665863Z","status":"investigating","title":"Elevated - API Latency","updates":[{"id":"8fa25e63-3621-4d63-bc04-7b89a5469968","created_at":"2026-02-24T17:00:57.665863Z","modified_at":"2026-02-24T17:00:57.665863Z","status":"investigating","description":"Our - API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"05dbb51c-56b3-4a3a-a051-cf44128af296","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"db7b590d-cced-4b48-a7fa-a8cad2ffe6d2","type":"status_pages"}}}}],"meta":{"page":{"type":"offset_limit","offset":0,"limit":50,"total":1,"first_offset":0,"prev_offset":null,"next_offset":null,"last_offset":0}}}' + string: '{"data":[{"id":"69ec0272-0b19-4b76-b46d-1bff243bf815","type":"degradations","attributes":{"components_affected":[{"id":"d73e2857-3e73-46a9-b577-95e371f40fd6","name":"Login","status":"major_outage"}],"created_at":"2026-03-31T18:44:03.716424Z","description":"Our + API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-03-31T18:44:03.716424Z","status":"investigating","title":"Elevated + API Latency","updates":[{"id":"4015e2c8-11f7-4dda-924c-d602b6b54c9b","created_at":"2026-03-31T18:44:03.716424Z","modified_at":"2026-03-31T18:44:03.716424Z","started_at":"2026-03-31T18:44:03.716424Z","status":"investigating","description":"Our + API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"d73e2857-3e73-46a9-b577-95e371f40fd6","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"b06157ae-2b55-44e9-bcbb-4bf96055fc66","type":"status_pages"}}}}],"meta":{"page":{"type":"offset_limit","offset":0,"limit":50,"total":1,"first_offset":0,"prev_offset":null,"next_offset":null,"last_offset":0}}}' headers: content-type: - application/vnd.api+json @@ -67,7 +67,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/db7b590d-cced-4b48-a7fa-a8cad2ffe6d2/degradations/6d7edbfb-18e5-4c65-90c8-905841616f10 + uri: https://api.datadoghq.com/api/v2/statuspages/b06157ae-2b55-44e9-bcbb-4bf96055fc66/degradations/69ec0272-0b19-4b76-b46d-1bff243bf815 response: body: string: '' @@ -81,7 +81,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/db7b590d-cced-4b48-a7fa-a8cad2ffe6d2 + uri: https://api.datadoghq.com/api/v2/statuspages/b06157ae-2b55-44e9-bcbb-4bf96055fc66 response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_list_maintenances_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_list_maintenances_returns_ok_response.frozen index e9663eb859..9cdd326939 100644 --- a/tests/v2/cassettes/test_scenarios/test_list_maintenances_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_list_maintenances_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:00:58.632Z \ No newline at end of file +2026-03-31T18:44:04.615Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_list_maintenances_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_list_maintenances_returns_ok_response.yaml index 8a6580ac55..5dbfd58b78 100644 --- a/tests/v2/cassettes/test_scenarios/test_list_maintenances_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_list_maintenances_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"7461571be4b904a2","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"46940f15b5dcfa5b","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"4386413c-88e0-46d1-9492-4907633ed575","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"58972a8d-82b7-4de0-9889-8c6c3f4dfc95","name":"Application","type":"group","position":0,"components":[{"id":"89f770b5-8612-41ef-a35d-e325503b4aff","name":"Login","type":"component","status":"operational","position":0},{"id":"b05bdb74-2754-4255-a51d-a67ae3c853f5","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:00:58.794069Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7461571be4b904a2","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:00:58.794069Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/4386413c-88e0-46d1-9492-4907633ed575/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"5495fa79-fc9e-44cb-a8ef-dfc7be629e87","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"e1fb0fdf-8523-4636-a6a6-0f6867273a15","name":"Application","type":"group","position":0,"components":[{"id":"62baea3f-f4fa-46c1-be01-dce9eab7156a","name":"Login","type":"component","status":"operational","position":0},{"id":"465fe00b-7b35-4ca6-b132-e27dc311fb69","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:04.703972Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"46940f15b5dcfa5b","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:04.703972Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/5495fa79-fc9e-44cb-a8ef-dfc7be629e87/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -20,10 +20,10 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"completed_date":"2026-02-24T19:00:58.632Z","completed_description":"We - have completed maintenance on the API to improve performance.","components_affected":[{"id":"89f770b5-8612-41ef-a35d-e325503b4aff","status":"operational"}],"in_progress_description":"We + body: '{"data":{"attributes":{"completed_date":"2026-03-31T20:44:04.615Z","completed_description":"We + have completed maintenance on the API to improve performance.","components_affected":[{"id":"62baea3f-f4fa-46c1-be01-dce9eab7156a","status":"operational"}],"in_progress_description":"We are currently performing maintenance on the API to improve performance.","scheduled_description":"We - will be performing maintenance on the API to improve performance.","start_date":"2026-02-24T18:00:58.632Z","title":"API + will be performing maintenance on the API to improve performance.","start_date":"2026-03-31T19:44:04.615Z","title":"API Maintenance"},"type":"maintenances"}}' headers: accept: @@ -31,15 +31,15 @@ interactions: content-type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/statuspages/4386413c-88e0-46d1-9492-4907633ed575/maintenances + uri: https://api.datadoghq.com/api/v2/statuspages/5495fa79-fc9e-44cb-a8ef-dfc7be629e87/maintenances response: body: - string: '{"data":{"id":"137fffe3-bfe1-471f-ad23-565105cd30f8","type":"maintenances","attributes":{"completed_date":"2026-02-24T19:00:58.632Z","completed_description":"We - have completed maintenance on the API to improve performance.","components_affected":[{"id":"89f770b5-8612-41ef-a35d-e325503b4aff","name":"Login","status":"operational"}],"in_progress_description":"We - are currently performing maintenance on the API to improve performance.","modified_at":"2026-02-24T17:00:59.394878Z","published_date":"2026-02-24T17:00:59.394878Z","scheduled_description":"We - will be performing maintenance on the API to improve performance.","start_date":"2026-02-24T18:00:58.632Z","status":"scheduled","title":"API - Maintenance","updates":[{"id":"79051405-03b3-4e9e-9e74-56e2d6593a06","created_at":"2026-02-24T17:00:59.394878Z","modified_at":"2026-02-24T17:00:59.394878Z","started_at":"2026-02-24T17:00:59.394878Z","manual_transition":false,"status":"scheduled","description":"We - will be performing maintenance on the API to improve performance.","components_affected":[{"id":"89f770b5-8612-41ef-a35d-e325503b4aff","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"4386413c-88e0-46d1-9492-4907633ed575","type":"status_pages"}}}}}' + string: '{"data":{"id":"ca51ee9c-ab27-496d-94b0-b57814d8bc0a","type":"maintenances","attributes":{"completed_date":"2026-03-31T20:44:04.615Z","completed_description":"We + have completed maintenance on the API to improve performance.","components_affected":[{"id":"62baea3f-f4fa-46c1-be01-dce9eab7156a","name":"Login","status":"operational"}],"in_progress_description":"We + are currently performing maintenance on the API to improve performance.","modified_at":"2026-03-31T18:44:05.32151Z","published_date":"2026-03-31T18:44:05.32151Z","scheduled_description":"We + will be performing maintenance on the API to improve performance.","start_date":"2026-03-31T19:44:04.615Z","status":"scheduled","title":"API + Maintenance","updates":[{"id":"81e0134c-091b-405e-9525-f7645a4b0914","created_at":"2026-03-31T18:44:05.32151Z","modified_at":"2026-03-31T18:44:05.32151Z","started_at":"2026-03-31T18:44:05.32151Z","manual_transition":false,"status":"scheduled","description":"We + will be performing maintenance on the API to improve performance.","components_affected":[{"id":"62baea3f-f4fa-46c1-be01-dce9eab7156a","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"5495fa79-fc9e-44cb-a8ef-dfc7be629e87","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -281,12 +281,12 @@ interactions: have completed maintenance on the API to improve performance.","components_affected":[{"id":"ca2479b6-c0fb-4926-8c05-38814139de99","name":"Login","status":"operational"}]},{"id":"edfa4c0e-fd91-47a4-8a3c-fe1085f4964f","created_at":"2026-02-19T23:08:26.917491Z","modified_at":"2026-02-19T23:08:26.917491Z","started_at":"2026-02-19T23:08:26.917491Z","manual_transition":false,"status":"in_progress","description":"We are currently performing maintenance on the API to improve performance for 40 minutes.","components_affected":[{"id":"ca2479b6-c0fb-4926-8c05-38814139de99","name":"Login","status":"maintenance"}]},{"id":"aea79e6d-bfcd-455d-8be5-19513813b166","created_at":"2026-02-19T22:08:16.214384Z","modified_at":"2026-02-19T22:08:16.214384Z","started_at":"2026-02-19T22:08:16.214384Z","manual_transition":false,"status":"scheduled","description":"We - will be performing maintenance on the API to improve performance.","components_affected":[{"id":"ca2479b6-c0fb-4926-8c05-38814139de99","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"b03f7910-c533-4093-b978-e0f6db6a9af4","type":"users"}},"status_page":{"data":{"id":"0061b471-af16-4c9c-a704-f5fb53ec871e","type":"status_pages"}}}},{"id":"137fffe3-bfe1-471f-ad23-565105cd30f8","type":"maintenances","attributes":{"completed_date":"2026-02-24T19:00:58.632Z","completed_description":"We - have completed maintenance on the API to improve performance.","components_affected":[{"id":"89f770b5-8612-41ef-a35d-e325503b4aff","name":"Login","status":"operational"}],"in_progress_description":"We - are currently performing maintenance on the API to improve performance.","modified_at":"2026-02-24T17:00:59.394878Z","published_date":"2026-02-24T17:00:59.394878Z","scheduled_description":"We - will be performing maintenance on the API to improve performance.","start_date":"2026-02-24T18:00:58.632Z","status":"scheduled","title":"API - Maintenance","updates":[{"id":"79051405-03b3-4e9e-9e74-56e2d6593a06","created_at":"2026-02-24T17:00:59.394878Z","modified_at":"2026-02-24T17:00:59.394878Z","started_at":"2026-02-24T17:00:59.394878Z","manual_transition":false,"status":"scheduled","description":"We - will be performing maintenance on the API to improve performance.","components_affected":[{"id":"89f770b5-8612-41ef-a35d-e325503b4aff","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"4386413c-88e0-46d1-9492-4907633ed575","type":"status_pages"}}}}],"meta":{"page":{"type":"offset_limit","offset":0,"limit":50,"total":31,"first_offset":0,"prev_offset":null,"next_offset":null,"last_offset":0}}}' + will be performing maintenance on the API to improve performance.","components_affected":[{"id":"ca2479b6-c0fb-4926-8c05-38814139de99","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"b03f7910-c533-4093-b978-e0f6db6a9af4","type":"users"}},"status_page":{"data":{"id":"0061b471-af16-4c9c-a704-f5fb53ec871e","type":"status_pages"}}}},{"id":"ca51ee9c-ab27-496d-94b0-b57814d8bc0a","type":"maintenances","attributes":{"completed_date":"2026-03-31T20:44:04.615Z","completed_description":"We + have completed maintenance on the API to improve performance.","components_affected":[{"id":"62baea3f-f4fa-46c1-be01-dce9eab7156a","name":"Login","status":"operational"}],"in_progress_description":"We + are currently performing maintenance on the API to improve performance.","modified_at":"2026-03-31T18:44:05.32151Z","published_date":"2026-03-31T18:44:05.32151Z","scheduled_description":"We + will be performing maintenance on the API to improve performance.","start_date":"2026-03-31T19:44:04.615Z","status":"scheduled","title":"API + Maintenance","updates":[{"id":"81e0134c-091b-405e-9525-f7645a4b0914","created_at":"2026-03-31T18:44:05.32151Z","modified_at":"2026-03-31T18:44:05.32151Z","started_at":"2026-03-31T18:44:05.32151Z","manual_transition":false,"status":"scheduled","description":"We + will be performing maintenance on the API to improve performance.","components_affected":[{"id":"62baea3f-f4fa-46c1-be01-dce9eab7156a","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"5495fa79-fc9e-44cb-a8ef-dfc7be629e87","type":"status_pages"}}}}],"meta":{"page":{"type":"offset_limit","offset":0,"limit":50,"total":31,"first_offset":0,"prev_offset":null,"next_offset":null,"last_offset":0}}}' headers: content-type: - application/vnd.api+json @@ -299,7 +299,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/4386413c-88e0-46d1-9492-4907633ed575 + uri: https://api.datadoghq.com/api/v2/statuspages/5495fa79-fc9e-44cb-a8ef-dfc7be629e87 response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_list_status_pages_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_list_status_pages_returns_ok_response.frozen index f728bf36b2..4c07002a60 100644 --- a/tests/v2/cassettes/test_scenarios/test_list_status_pages_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_list_status_pages_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:01:00.437Z \ No newline at end of file +2026-03-31T18:44:06.069Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_list_status_pages_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_list_status_pages_returns_ok_response.yaml index c78c5562cd..d9c5e495e1 100644 --- a/tests/v2/cassettes/test_scenarios/test_list_status_pages_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_list_status_pages_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"7e8c7b13fd8893b0","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"c311e0ec657bc1ed","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"06fa86aa-c512-4c00-95ee-b1cb5b2cccf1","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"11970522-93b3-4e4a-834b-d0ba5ea329d0","name":"Application","type":"group","position":0,"components":[{"id":"d8053632-57ba-4262-92c0-76a96458c126","name":"Login","type":"component","status":"operational","position":0},{"id":"e0f79c01-0aba-4728-8b72-2923a153d955","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:01:00.593918Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7e8c7b13fd8893b0","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:01:00.593918Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/06fa86aa-c512-4c00-95ee-b1cb5b2cccf1/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"c21d7c2b-4ec7-4faa-a41b-61b20d5c7f36","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"0fae6759-9aa7-41ff-bb7e-e544c270ed9d","name":"Application","type":"group","position":0,"components":[{"id":"d231c795-f187-4f08-9edc-cca953456a09","name":"Login","type":"component","status":"operational","position":0},{"id":"8bbd1f6b-ccc7-4ce7-9dc3-74a5fa88e56e","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:06.154781Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"c311e0ec657bc1ed","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:06.154781Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/c21d7c2b-4ec7-4faa-a41b-61b20d5c7f36/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -28,8 +28,46 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":[{"id":"06fa86aa-c512-4c00-95ee-b1cb5b2cccf1","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"11970522-93b3-4e4a-834b-d0ba5ea329d0","name":"Application","type":"group","position":0,"components":[{"id":"d8053632-57ba-4262-92c0-76a96458c126","name":"Login","type":"component","status":"operational","position":0},{"id":"e0f79c01-0aba-4728-8b72-2923a153d955","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:01:00.593918Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7e8c7b13fd8893b0","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:01:00.593918Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/06fa86aa-c512-4c00-95ee-b1cb5b2cccf1/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"bdf170e4-6689-4c54-96b7-84edac7d652d","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"ef2b536d-55b0-4200-b8aa-94cce005c5e7","name":"Application","type":"group","position":0,"components":[{"id":"dcee6190-c6fc-49a6-af7e-dd3dc1114ad3","name":"Login","type":"component","status":"operational","position":0},{"id":"61b95f10-b197-433a-baed-4513213f8480","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-23T20:35:59.798046Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1771878959","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-23T20:35:59.798046Z","name":"A + string: '{"data":[{"id":"c21d7c2b-4ec7-4faa-a41b-61b20d5c7f36","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"0fae6759-9aa7-41ff-bb7e-e544c270ed9d","name":"Application","type":"group","position":0,"components":[{"id":"d231c795-f187-4f08-9edc-cca953456a09","name":"Login","type":"component","status":"operational","position":0},{"id":"8bbd1f6b-ccc7-4ce7-9dc3-74a5fa88e56e","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:06.154781Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"c311e0ec657bc1ed","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:06.154781Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/c21d7c2b-4ec7-4faa-a41b-61b20d5c7f36/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"ebde4607-45ac-4d55-82d8-7d98c681e482","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"535cb45f-d4c2-46f2-ba15-d050e8fe5e64","name":"Application","type":"group","position":0,"components":[{"id":"d9239132-c0bb-443f-858e-cb457223010d","name":"Login","type":"component","status":"operational","position":0},{"id":"3a7f103e-d568-4fc8-8fed-1cefdc375033","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T12:35:59.782975Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f686b517b27d229d-1774960559","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T12:35:59.782975Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/ebde4607-45ac-4d55-82d8-7d98c681e482/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"dd0f1611-e44e-4c99-b005-68154b7bb254","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"105b4947-2aa6-4aaa-8829-e93de4cf5eed","name":"Application","type":"group","position":0,"components":[{"id":"7c874c2c-f4a6-4ea7-b89c-4d153527c9bd","name":"Login","type":"component","status":"operational","position":0},{"id":"d0e03796-370d-47e2-b9e5-a5a12b67f6d7","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T12:35:59.211461Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"e9081ba5854b239f-1774960558","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T12:35:59.211461Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/dd0f1611-e44e-4c99-b005-68154b7bb254/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"b0c4f3d8-7679-42ab-8957-3d4c35e93975","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"1976f979-d72d-47ac-a031-a1c0dd093e9f","name":"Application","type":"group","position":0,"components":[{"id":"382ac740-0198-4363-a93c-fa4e2fd15339","name":"Login","type":"component","status":"operational","position":0},{"id":"60d8075b-41b3-46f1-b42a-99375974d990","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-30T20:35:59.867894Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1774902959","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-30T20:35:59.867894Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/b0c4f3d8-7679-42ab-8957-3d4c35e93975/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"f0be1781-910a-42b2-808f-93a2ef64ecd3","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"bf706e5d-1161-44a3-8d52-dbaaccba9995","name":"Application","type":"group","position":0,"components":[{"id":"f0e159f3-57dd-4d8b-a09e-a98939ae470a","name":"Login","type":"component","status":"operational","position":0},{"id":"5a24a623-4d02-4e41-a322-3008afedd9e7","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-30T20:35:59.862926Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f686b517b27d229d-1774902959","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-30T20:35:59.862926Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/f0be1781-910a-42b2-808f-93a2ef64ecd3/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"b76d40d7-12a4-49c6-b3ad-b4c1d3c204c2","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"8b78e5c6-ffbe-45f8-810c-3053c3ccb641","name":"Application","type":"group","position":0,"components":[{"id":"bf7253f2-eb30-427f-aa26-1c8bf8c59256","name":"Login","type":"component","status":"operational","position":0},{"id":"93960214-873b-49a3-b0bd-1cb6f764a012","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-30T17:00:21.153047Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"04125106bafd3561","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-30T17:00:21.153047Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/b76d40d7-12a4-49c6-b3ad-b4c1d3c204c2/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"12fb9352-3bca-4c9c-a595-df4dbc6b6bd7","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"2cd0910f-d421-4ec9-8d5d-7750eff65878","name":"Application","type":"group","position":0,"components":[{"id":"41a3f46d-e675-46ec-8e69-c95dc9571608","name":"Login","type":"component","status":"operational","position":0},{"id":"ae00ad87-f903-41b2-a2ec-271064d143df","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-30T00:35:59.784065Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"ef7ad3d3e10f6dee-1774830959","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-30T00:35:59.784065Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/12fb9352-3bca-4c9c-a595-df4dbc6b6bd7/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"937d9e83-273a-437b-9bdf-d084f2502ab7","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"ba89d9fb-0f97-4906-a391-c6a7e0a89547","name":"Application","type":"group","position":0,"components":[{"id":"a52c6ce9-0dd9-4da1-9d9e-30252b46b962","name":"Login","type":"component","status":"operational","position":0},{"id":"37a91092-d06f-4263-9ea3-7c8e04405baa","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-29T00:35:59.788415Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1774744559","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-29T00:35:59.788415Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/937d9e83-273a-437b-9bdf-d084f2502ab7/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"3cecef74-28a0-47be-817a-89cf401450db","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"8ba939b9-1e25-45ba-8845-39809556919e","name":"Application","type":"group","position":0,"components":[{"id":"cc23b574-d957-4be6-b908-c6190d822305","name":"Login","type":"component","status":"operational","position":0},{"id":"ad87afbd-6415-4a96-af46-adad4b19468a","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-27T08:35:59.770119Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1774600559","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-27T08:35:59.770119Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/3cecef74-28a0-47be-817a-89cf401450db/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"5451d34e-b841-401a-ab93-bb7b6811e7b9","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"c078327e-df80-4306-9d77-739fe4c6d6d0","name":"Application","type":"group","position":0,"components":[{"id":"bb78ec19-d1a7-4f11-aef8-810c9cd8e090","name":"Login","type":"component","status":"operational","position":0},{"id":"a09e9f54-f17c-4c9c-a795-a154b1a75bfc","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-26T16:35:59.793599Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f686b517b27d229d-1774542959","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-26T16:35:59.793599Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/5451d34e-b841-401a-ab93-bb7b6811e7b9/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"48baaa11-b36b-42b6-9190-939c1012860f","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"4c3da7e4-231c-43ab-9b5d-2c822ffda6e9","name":"Application","type":"group","position":0,"components":[{"id":"ede5f49e-94c8-4a83-a6a9-43bd6bd22fb3","name":"Login","type":"component","status":"operational","position":0},{"id":"4d2d346b-83e4-4638-92b5-7cbd2a3a4185","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-26T04:36:00.995215Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"db677be68a5fe8ab-1774499760","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-26T04:36:00.995215Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/48baaa11-b36b-42b6-9190-939c1012860f/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"9e612a06-dade-42e1-a9c9-49637389e2bf","type":"status_pages","attributes":{"company_logo":null,"components":[],"created_at":"2026-03-26T00:35:59.761927Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"d461a303628351e1-1774485359","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-26T00:35:59.761927Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/9e612a06-dade-42e1-a9c9-49637389e2bf/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"a30a5c90-0174-418d-830b-ecc754eded5f","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"ca377aa1-bddd-471b-8a8b-cb63923c4fd5","name":"Application","type":"group","position":0,"components":[{"id":"ae938e6d-8e90-4b86-9e7a-42e6bfc9c1c5","name":"Login","type":"component","status":"operational","position":0},{"id":"40a1a812-7c51-498b-b464-e84096da44f7","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-25T20:35:59.905399Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f686b517b27d229d-1774470959","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-25T20:35:59.905399Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/a30a5c90-0174-418d-830b-ecc754eded5f/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"b4fe142e-4f57-473b-afb9-d8b04f0d9ae4","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"8f71a30b-607d-4ee6-aa9d-ccae19726bd9","name":"Application","type":"group","position":0,"components":[{"id":"1f1b2cd1-813d-4bfa-b0f1-f6e5ea5954ce","name":"Login","type":"component","status":"operational","position":0},{"id":"421a1f15-3d7d-4795-8e4f-c27d9ac348fb","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-25T16:35:59.799083Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1774456559","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-25T16:35:59.799083Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/b4fe142e-4f57-473b-afb9-d8b04f0d9ae4/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"8b94ced2-4016-4d22-a2fa-41e51dfef25d","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"6ffabf56-bc2e-42e2-98aa-7dac462fe663","name":"Application","type":"group","position":0,"components":[{"id":"f2d58389-56c5-4f7c-9c7b-5c58db210f64","name":"Login","type":"component","status":"operational","position":0},{"id":"ed93bdd4-a175-4d5c-b58e-eb308e97df20","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-24T20:35:59.762281Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1774384559","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-24T20:35:59.762281Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/8b94ced2-4016-4d22-a2fa-41e51dfef25d/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"87059280-e186-4e8a-afd4-6b339198c553","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"8b8a1931-20b2-4a80-95a9-2f6f4fd485d1","name":"Application","type":"group","position":0,"components":[{"id":"b1e9b7ed-2c78-4ff8-8d3a-de9ead891a8a","name":"Login","type":"component","status":"operational","position":0},{"id":"c368cd0a-0dbf-497b-93a5-6f8a0e076deb","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-24T04:36:01.538275Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"541832b1b0562c8b-1774326961","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-24T04:36:01.538275Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/87059280-e186-4e8a-afd4-6b339198c553/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"137d12f1-b039-4627-9263-9221aeb6b607","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"545c0064-b72e-4488-8364-7840ce61bc01","name":"Application","type":"group","position":0,"components":[{"id":"aa4468d0-2269-473c-9c28-4610e8170b4d","name":"Login","type":"component","status":"operational","position":0},{"id":"93081a32-f13c-4657-aafb-a75f348e33b5","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-23T16:35:59.794617Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f686b517b27d229d-1774283759","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-23T16:35:59.794617Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/137d12f1-b039-4627-9263-9221aeb6b607/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"9692a9dd-c283-477f-9c1d-05babf28280b","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"dd420126-c3c9-4704-82b3-930d72233735","name":"Application","type":"group","position":0,"components":[{"id":"862510aa-7ec9-483c-a0cd-6a173db89aa1","name":"Login","type":"component","status":"operational","position":0},{"id":"c1899098-7838-4d70-b9ec-05795993afe6","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-22T16:35:59.774138Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1774197359","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-22T16:35:59.774138Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/9692a9dd-c283-477f-9c1d-05babf28280b/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"3454a349-8e4d-4f32-92ad-c240b654e28f","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"d4ff4973-faad-43e9-b97a-d5cf3d0d8568","name":"Application","type":"group","position":0,"components":[{"id":"7750b683-8f00-4b10-8433-bf7ea833073e","name":"Login","type":"component","status":"operational","position":0},{"id":"5a0ad189-ec00-4e2c-99ed-1e3ee1e39629","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-19T16:35:59.72562Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"ef7ad3d3e10f6dee-1773938159","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-19T16:35:59.72562Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/3454a349-8e4d-4f32-92ad-c240b654e28f/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"a715d980-bbfe-4980-a3a4-73ddd2d6957d","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"4cf8ab86-0450-4f2d-a5b4-731f2a946645","name":"Application","type":"group","position":0,"components":[{"id":"4dcb2aaf-df20-4077-959c-9e20588d7f44","name":"Login","type":"component","status":"operational","position":0},{"id":"7848968e-618f-4e3d-a436-d79e8d138333","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-18T20:35:59.744295Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f686b517b27d229d-1773866159","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-18T20:35:59.744295Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/a715d980-bbfe-4980-a3a4-73ddd2d6957d/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"865181ce-36ce-403d-82d8-fb749e402e97","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"6ed717db-ecd1-4019-abb5-ef485fa23bcb","name":"Application","type":"group","position":0,"components":[{"id":"216288e0-3f51-40dd-8407-3392efb01ca8","name":"Login","type":"component","status":"operational","position":0},{"id":"36868900-267c-4968-98cf-58b58044ad2c","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-15T12:35:59.72566Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"ef7ad3d3e10f6dee-1773578159","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-15T12:35:59.72566Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/865181ce-36ce-403d-82d8-fb749e402e97/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"b2a0e434-9010-4888-afb7-1b09f880c1d6","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"3729b704-934b-4eb7-9266-db3a97739399","name":"Application","type":"group","position":0,"components":[{"id":"9d425255-cf16-4428-a9fb-7ca6b8592841","name":"Login","type":"component","status":"operational","position":0},{"id":"525186dd-fdac-459f-8f76-14597b07acf6","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-15T08:35:59.717435Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1773563759","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-15T08:35:59.717435Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/b2a0e434-9010-4888-afb7-1b09f880c1d6/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"f7998f51-a5be-4d46-8e1d-35841fcc0af5","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"da0f7429-51e5-46a3-9322-fa96fc3fd10d","name":"Application","type":"group","position":0,"components":[{"id":"54223a83-09b4-4b96-a8f0-33445e11ac2c","name":"Login","type":"component","status":"operational","position":0},{"id":"f6813794-0cc7-459e-a686-bd3f46809f28","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-13T04:36:01.009961Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"db677be68a5fe8ab-1773376560","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-13T04:36:01.009961Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/f7998f51-a5be-4d46-8e1d-35841fcc0af5/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"b3640d73-8475-4b49-a2ba-e5a973414ba8","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"dc1d2bde-4432-4bcf-bca4-70a7e0e336ac","name":"Application","type":"group","position":0,"components":[{"id":"d4f8df00-ccdb-4366-95ee-600b93f2937a","name":"Login","type":"component","status":"operational","position":0},{"id":"96eb72e7-cddb-4eec-b5a9-ee98c7e1e189","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-13T04:35:59.787352Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1773376559","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-13T04:35:59.787352Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/b3640d73-8475-4b49-a2ba-e5a973414ba8/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"38202085-f742-4097-b2f5-33f7c9a14cb8","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"46925792-7298-4f52-8c26-2277fdda9394","name":"Application","type":"group","position":0,"components":[{"id":"85e87add-aec6-4e6b-bcbc-cf3c2fd1cf55","name":"Login","type":"component","status":"operational","position":0},{"id":"3a4607dd-fe5f-421c-ba3e-bd2559dc9720","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-12T16:35:59.744577Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1773333359","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-12T16:35:59.744577Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/38202085-f742-4097-b2f5-33f7c9a14cb8/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"7f65dcb3-bf48-42dd-8455-a0c2c965ef6a","type":"status_pages","attributes":{"company_logo":null,"components":[],"created_at":"2026-03-12T16:35:59.744046Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"d461a303628351e1-1773333359","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-12T16:35:59.744046Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/7f65dcb3-bf48-42dd-8455-a0c2c965ef6a/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"09af86f4-0d6b-4e8e-ab90-174e1627d24f","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"f6e72404-ed69-4627-9ef8-c1cbeaa2f30e","name":"Application","type":"group","position":0,"components":[{"id":"127f1960-cf09-4c45-a76b-b214f4380a75","name":"Login","type":"component","status":"operational","position":0},{"id":"2c481ea3-cfff-416e-ade8-1b96d2b22e11","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-12T16:35:59.144323Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"e9081ba5854b239f-1773333358","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-12T16:35:59.144323Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/09af86f4-0d6b-4e8e-ab90-174e1627d24f/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"e676d1c5-6076-4ec1-a67a-fa12eea85b0e","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"5668f69b-0ad0-4513-a044-eba943571ac2","name":"Application","type":"group","position":0,"components":[{"id":"028e83a5-4816-4879-8884-e30059d91cee","name":"Login","type":"component","status":"operational","position":0},{"id":"df74e090-4be2-4b6d-8e55-06957c3a3e0f","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-12T04:35:59.730984Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f686b517b27d229d-1773290159","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-12T04:35:59.730984Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/e676d1c5-6076-4ec1-a67a-fa12eea85b0e/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"fdd402dd-b89b-49c7-bc6f-53afa7db7e43","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"41569af6-1f6b-442c-b2d6-e482d882e239","name":"Application","type":"group","position":0,"components":[{"id":"98387ad3-14af-4566-9643-686927fa2c2b","name":"Login","type":"component","status":"operational","position":0},{"id":"f4ee8935-da81-4450-ad99-b20ca822b3c3","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-11T12:35:59.7515Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1773232559","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-11T12:35:59.7515Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/fdd402dd-b89b-49c7-bc6f-53afa7db7e43/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"82d18d2b-74d4-4708-a048-9fac477fb14c","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"83c5995c-a9cf-4c30-9b96-c392b9a08139","name":"Application","type":"group","position":0,"components":[{"id":"7486c692-1aaf-49ac-a849-34b6af454a83","name":"Login","type":"component","status":"operational","position":0},{"id":"24ae0999-864a-4dcf-a34d-92fee8be86f1","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-11T08:35:59.751183Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f686b517b27d229d-1773218159","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-11T08:35:59.751183Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/82d18d2b-74d4-4708-a048-9fac477fb14c/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"b500f495-9cbe-4040-ab5e-cf6321393cdf","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"6f1ea70f-087c-457a-ad06-90cadff5f065","name":"Application","type":"group","position":0,"components":[{"id":"225006f9-949a-45b8-a118-7d9e007a0fe4","name":"Login","type":"component","status":"operational","position":0},{"id":"56ed313e-d40f-4dee-8c0b-f736cbc6d50b","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-10T16:35:59.703768Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"ef7ad3d3e10f6dee-1773160559","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-10T16:35:59.703768Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/b500f495-9cbe-4040-ab5e-cf6321393cdf/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"2b33f41c-6590-4496-bd51-0b08011ed9cc","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"8feaaabc-11d0-45a1-b638-67c26c1e5118","name":"Application","type":"group","position":0,"components":[{"id":"dcc7ccd2-8c23-4d40-b06f-dafa88e95fa4","name":"Login","type":"component","status":"operational","position":0},{"id":"e4f0bd5b-6376-41c2-ae6d-fb5ae0393029","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-07T12:35:59.7601Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1772886959","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-07T12:35:59.7601Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/2b33f41c-6590-4496-bd51-0b08011ed9cc/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"0bd67de7-f888-473d-8015-7af50089248e","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"e2672baf-3528-424f-b28b-4f8bde453501","name":"Application","type":"group","position":0,"components":[{"id":"437f8cb9-112c-4f45-94f8-a6842bafbb24","name":"Login","type":"component","status":"operational","position":0},{"id":"7fceff50-6d7b-44db-8076-d3afc451a83a","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-05T00:35:59.772168Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f686b517b27d229d-1772670959","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-05T00:35:59.772168Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/0bd67de7-f888-473d-8015-7af50089248e/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"a0849926-b412-412f-9c06-e11bed1734d2","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"ecb39cd6-7f01-4710-94ba-be7ccfc23f25","name":"Application","type":"group","position":0,"components":[{"id":"c3c56ed1-5488-4f7d-a5ed-bbdb046167ec","name":"Login","type":"component","status":"operational","position":0},{"id":"8955960c-6059-4cdd-8254-c82a097009a7","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-04T20:35:59.779604Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1772656559","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-04T20:35:59.779604Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/a0849926-b412-412f-9c06-e11bed1734d2/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"4b092533-6714-4546-82a0-3b1136c5cca9","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"3363c2f5-ae38-4c17-9b5d-3dd349d6be8c","name":"Application","type":"group","position":0,"components":[{"id":"8eaba27e-149a-432f-b10d-54e0420658a0","name":"Login","type":"component","status":"operational","position":0},{"id":"2c503345-40fe-4cde-b26f-dd79a43b6b46","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-03T04:35:59.749491Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f686b517b27d229d-1772512559","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-03T04:35:59.749491Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/4b092533-6714-4546-82a0-3b1136c5cca9/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"cb5247c6-d073-4b78-a589-4d799b9b791b","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"b0c10839-21e1-42c0-b8df-14442c5e29d6","name":"Application","type":"group","position":0,"components":[{"id":"66b6888c-140f-4e07-a50e-5ba1bc26e058","name":"Login","type":"component","status":"operational","position":0},{"id":"cbe81b6e-a125-41e6-aa7f-5f1b3e3032b9","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-27T00:35:59.796756Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1772152559","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-27T00:35:59.796756Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/cb5247c6-d073-4b78-a589-4d799b9b791b/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"f99899a2-ab0c-4e24-9bb0-663a6ca986dc","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"92b527e8-747b-4208-b0d6-649ec2d843ad","name":"Application","type":"group","position":0,"components":[{"id":"35501f4a-8f62-4610-9568-2cc599ac8547","name":"Login","type":"component","status":"operational","position":0},{"id":"80373574-5fd5-41eb-ad8e-c8e1494f019f","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-26T20:35:59.735571Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1772138159","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-26T20:35:59.735571Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/f99899a2-ab0c-4e24-9bb0-663a6ca986dc/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"e462be19-cc92-4ac2-9c74-c1a09300a492","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"ccc0b616-99a3-4c49-8e1a-e767e4794dfa","name":"Application","type":"group","position":0,"components":[{"id":"23b29d7c-0c83-4837-970e-98bca8c61778","name":"Login","type":"component","status":"operational","position":0},{"id":"e999b821-16b9-4b93-bf76-b9b14d50df33","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-25T12:35:59.903373Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1772022959","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-25T12:35:59.903373Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/e462be19-cc92-4ac2-9c74-c1a09300a492/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"802d3de9-ce98-4b1f-b69d-837e94c099f3","type":"status_pages","attributes":{"company_logo":null,"components":[],"created_at":"2026-02-25T00:35:59.812184Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"d461a303628351e1-1771979759","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-25T00:35:59.812184Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/802d3de9-ce98-4b1f-b69d-837e94c099f3/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"bdf170e4-6689-4c54-96b7-84edac7d652d","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"ef2b536d-55b0-4200-b8aa-94cce005c5e7","name":"Application","type":"group","position":0,"components":[{"id":"dcee6190-c6fc-49a6-af7e-dd3dc1114ad3","name":"Login","type":"component","status":"operational","position":0},{"id":"61b95f10-b197-433a-baed-4513213f8480","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-23T20:35:59.798046Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1771878959","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-23T20:35:59.798046Z","name":"A Status Page","page_url":"https://frog.datadoghq.com/status-pages/bdf170e4-6689-4c54-96b7-84edac7d652d/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"bc07b5b2-3f21-4568-99f3-2d9da89ec99c","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"6a55888b-9bc7-483f-892e-ec0e3e216555","name":"Application","type":"group","position":0,"components":[{"id":"23d8b2d5-e453-4db2-98ea-1891af5e1237","name":"Login","type":"component","status":"operational","position":0},{"id":"02cbda4f-ed23-4fd8-a288-aef9cb4c077c","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-21T00:35:59.809271Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7abf9bc13fcb676d-1771634159","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-21T00:35:59.809271Z","name":"A Status Page","page_url":"https://frog.datadoghq.com/status-pages/bc07b5b2-3f21-4568-99f3-2d9da89ec99c/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"0061b471-af16-4c9c-a704-f5fb53ec871e","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"7530e1c7-fde9-44d5-a685-5f621438ff7b","name":"Application","type":"group","position":0,"components":[{"id":"ca2479b6-c0fb-4926-8c05-38814139de99","name":"Login","type":"component","status":"operational","position":0},{"id":"0f892ec8-4733-4b36-9b73-a8828d7aec77","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T22:08:15.622258Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"268772cff8564d83","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T22:08:15.622258Z","name":"A Status Page","page_url":"https://frog.datadoghq.com/status-pages/0061b471-af16-4c9c-a704-f5fb53ec871e/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"c4269d26-2a7a-48d8-b35c-0d065f5bdbdb","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"b20c2ef6-3416-4bbb-ac51-bc2a20b2dd29","name":"Application","type":"group","position":0,"components":[{"id":"37805b01-c997-40cb-8680-5322c12049de","name":"Login","type":"component","status":"operational","position":0},{"id":"025c4d32-9492-4d85-8b58-3452ff410fbe","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T22:08:14.142145Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"793dc6f684cf74f5","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T22:08:14.142145Z","name":"A @@ -40,45 +78,7 @@ interactions: Status Page","page_url":"https://frog.datadoghq.com/status-pages/e9af0690-5634-4b5a-9a39-0024f5a94c5a/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"5d9fb154-2016-4209-a1aa-ffbb26b834cd","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"6dca35af-75ee-4111-b5d1-9c1b301f6ca0","name":"Application","type":"group","position":0,"components":[{"id":"deb7b997-4f57-48b3-9dbf-4eaee77a8418","name":"Login","type":"component","status":"operational","position":0},{"id":"80159e04-ce47-4f14-9063-7fef16753977","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T21:52:09.320462Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"ef5eb16440f3186e","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T21:52:09.320462Z","name":"A Status Page","page_url":"https://frog.datadoghq.com/status-pages/5d9fb154-2016-4209-a1aa-ffbb26b834cd/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"8d197716-0610-42ec-8bdf-8b571a68bfbe","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"39ad92d7-1344-4e75-a62a-7439b362187b","name":"Application","type":"group","position":0,"components":[{"id":"ff177f6a-17ed-4f5a-85c3-04b43621b282","name":"Login","type":"component","status":"operational","position":0},{"id":"729370f8-4ebd-4577-a2c5-aec917534ed4","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T21:52:08.550943Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"640a4ff7098142e4","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T21:52:08.550943Z","name":"A Status Page","page_url":"https://frog.datadoghq.com/status-pages/8d197716-0610-42ec-8bdf-8b571a68bfbe/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"4d753d2f-1348-486d-afc7-22f3e1759af3","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"67998dd2-0edc-4146-855a-a147f4af1a4d","name":"Application","type":"group","position":0,"components":[{"id":"de9b6f98-2556-44c9-bb88-9d839e1fda62","name":"Login","type":"component","status":"operational","position":0},{"id":"11d95bc8-59eb-451c-ac3c-6b2458c0493a","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T21:06:33.207555Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"cc4b27d85d273270","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T21:06:33.207555Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/4d753d2f-1348-486d-afc7-22f3e1759af3/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"6cb07301-fa51-4113-babd-229a0e86942e","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"4e2b2bbc-cc10-46b7-b323-51d5f1f923d3","name":"Application","type":"group","position":0,"components":[{"id":"9fabc1b3-bfc4-45f5-8fe7-6b284be04d28","name":"Login","type":"component","status":"operational","position":0},{"id":"3a30321a-9a60-4400-82a0-916dba33ba4d","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T21:06:26.507436Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"cd113ddaafbe79f2","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T21:06:26.507436Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/6cb07301-fa51-4113-babd-229a0e86942e/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"0751ca80-99db-4247-ae44-655162fa07a9","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"9d366ce5-00ed-4fc6-8348-44b125a6a65f","name":"Application","type":"group","position":0,"components":[{"id":"63331812-b5a5-422a-889a-f7ca633b2d80","name":"Login","type":"component","status":"operational","position":0},{"id":"8782c501-1741-4bb1-b633-fa09283c5728","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T21:06:20.663002Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"bf3be33fe8d7b262","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T21:06:20.663002Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/0751ca80-99db-4247-ae44-655162fa07a9/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"33c6f810-15d8-4ce2-835b-1ac3a6ca1dbc","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"aef28e84-a82c-4c93-b436-4ba42dbdd4b6","name":"Application","type":"group","position":0,"components":[{"id":"44da03e1-1b23-4100-b26f-68ab4f8ca457","name":"Login","type":"component","status":"operational","position":0},{"id":"e5753320-4de3-44d1-85b6-4775ce235f17","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:44:16.851238Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"af56efb2f5bba226","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:44:16.851238Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/33c6f810-15d8-4ce2-835b-1ac3a6ca1dbc/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"bd3f1d69-4ee1-428d-8ac8-f03f387a7677","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"090535e1-afea-43de-9762-816f7a965a16","name":"Application","type":"group","position":0,"components":[{"id":"d1d9b93d-301d-4dad-8f3b-4475a3fad1b1","name":"Login","type":"component","status":"operational","position":0},{"id":"30dc5823-df1a-43d6-b575-d4a8804ad745","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:44:11.295897Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"1be8518d13b9dd02","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:44:11.295897Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/bd3f1d69-4ee1-428d-8ac8-f03f387a7677/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"016f2768-6987-4a8f-898b-ab94e17b3dd3","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"427a7b30-e308-44a7-9871-a030396ac962","name":"Application","type":"group","position":0,"components":[{"id":"579f0d5c-cce7-4666-98f3-40a696be8cc7","name":"Login","type":"component","status":"operational","position":0},{"id":"77dd3fb9-529a-4900-a5eb-6e0a748cf468","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:44:06.349736Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"a058117186c84e4f","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:44:06.349736Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/016f2768-6987-4a8f-898b-ab94e17b3dd3/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"0e37a7c0-9b0c-4c4e-b315-6b5e145390af","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"73147bd8-26f7-4c57-8557-7fba52d561a4","name":"Application","type":"group","position":0,"components":[{"id":"c4d3a1be-8d3d-4b09-9521-b03d5c1e6fdd","name":"Login","type":"component","status":"operational","position":0},{"id":"15802004-c6e9-4186-ba5c-eb01169569de","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:43:57.756135Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7e7c00468d1b799b","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:43:57.756135Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/0e37a7c0-9b0c-4c4e-b315-6b5e145390af/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"3c7ddb58-a07b-4db7-ade0-31ac925b6597","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"23ec6518-ab99-4382-8d4b-94eef8c84845","name":"Application","type":"group","position":0,"components":[{"id":"cfae542d-147e-4a5f-bd85-b7ad75b9eb88","name":"Login","type":"component","status":"operational","position":0},{"id":"d6d65fe1-f349-43a2-ad39-da38097a1311","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:43:13.751657Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"ec88a3070e186fd2","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:43:13.751657Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/3c7ddb58-a07b-4db7-ade0-31ac925b6597/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"4561e0f5-5a64-4bc9-b16c-654d3d81325a","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"4903f8ce-5d7c-44fe-a9cf-936699d9c67e","name":"Application","type":"group","position":0,"components":[{"id":"03b85dec-3f1c-4bc1-b6a6-c3070e94aaa7","name":"Login","type":"component","status":"operational","position":0},{"id":"e64fdd83-8dc5-4f6e-b527-4c623e6998a6","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:41:17.209814Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"c9a065bd3dc330d7","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:41:17.209814Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/4561e0f5-5a64-4bc9-b16c-654d3d81325a/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"7c3eff68-42fb-4ddb-8761-3e7695d79570","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"603670a3-1893-49a3-93e1-e655c79509d6","name":"Application","type":"group","position":0,"components":[{"id":"862e2d94-1286-423c-86ec-541f5f5aa5e6","name":"Login","type":"component","status":"operational","position":0},{"id":"5fb0fa8a-a9fd-41bd-901c-2577bf1799f4","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:41:11.55184Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"139604cb3deb8bfa","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:41:11.55184Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/7c3eff68-42fb-4ddb-8761-3e7695d79570/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"a8e3fb88-56ee-4f01-8909-734f9a066177","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"ed519647-6f30-42fa-8342-032faa934a68","name":"Application","type":"group","position":0,"components":[{"id":"e19596ba-245c-49dc-9274-5aa1b7e865f5","name":"Login","type":"component","status":"operational","position":0},{"id":"bed4d438-d938-44b4-b3f7-e42f94560d9c","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:41:06.354933Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"c9da05969f090bf2","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:41:06.354933Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/a8e3fb88-56ee-4f01-8909-734f9a066177/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"93fc2aa2-cb3e-4ef9-bc09-4ac0dfba45c4","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"34b8d16f-f477-499d-b099-79b45a32b4f1","name":"Application","type":"group","position":0,"components":[{"id":"e5c3b642-9d15-44ac-9766-a108cf3908d9","name":"Login","type":"component","status":"operational","position":0},{"id":"490c2714-a0ce-4962-b169-c327b1160a10","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:40:54.111832Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"a1c16169acd25c7f","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:40:54.111832Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/93fc2aa2-cb3e-4ef9-bc09-4ac0dfba45c4/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"7e1c914a-7b5d-4928-9603-2c231f4e27b5","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"7a833ed9-561d-472b-a821-c1272f1ace34","name":"Application","type":"group","position":0,"components":[{"id":"222ce53c-1646-45bc-a5d4-27e0a4eb0313","name":"Login","type":"component","status":"operational","position":0},{"id":"44672e6c-dd99-4ed1-8ecc-7715e0625a01","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:26:47.706539Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"ccf251964a09e006","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:26:47.706539Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/7e1c914a-7b5d-4928-9603-2c231f4e27b5/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"d3167fc5-957d-4ec6-a55d-d75a5eb1926a","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"a0e49fa5-3555-4202-8cee-e6c3be83a6f0","name":"Application","type":"group","position":0,"components":[{"id":"eb5ff7d4-3faa-4216-9141-b616ecfa29a7","name":"Login","type":"component","status":"operational","position":0},{"id":"a7b1111a-43d9-4d27-827a-d5f9ec23e1d3","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:26:42.040089Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"48333a37cbd28f23","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:26:42.040089Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/d3167fc5-957d-4ec6-a55d-d75a5eb1926a/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"ef7f6596-79dd-4f10-9e02-96047289e678","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"70276684-f206-4d50-b890-1c20a5303ee4","name":"Application","type":"group","position":0,"components":[{"id":"2a064c38-b34c-4afd-8958-567b4fb94891","name":"Login","type":"component","status":"operational","position":0},{"id":"30f6916a-e722-4b19-b1b8-0485e0afd9c6","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:26:36.880519Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"df7a8d1c89704ae5","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:26:36.880519Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/ef7f6596-79dd-4f10-9e02-96047289e678/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},{"id":"9554c1f6-837d-4ce9-8682-90cc44689d6e","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"c0bb1772-afd4-4eed-bab5-c33a5451b899","name":"Application","type":"group","position":0,"components":[{"id":"c354419b-c97e-49c6-b556-a2bd73c2945b","name":"Login","type":"component","status":"operational","position":0},{"id":"f14a431d-6a9a-4395-bb71-6b1d5af83fbb","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:05:04.858919Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"059503e3ac91b0da","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:05:04.858919Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/9554c1f6-837d-4ce9-8682-90cc44689d6e/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"e4a07280-5e60-41e8-8868-d6b391ac9ba4","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"83b8a78b-684b-402b-a8a6-f0df36c4eb09","name":"Application","type":"group","position":0,"components":[{"id":"2ec5ce94-7c6b-4883-b963-774cde63af0e","name":"Login","type":"component","status":"operational","position":0},{"id":"9b1911f3-49ba-4d06-971d-b0600d51820f","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:05:03.384639Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"196a899e9a39079a","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:05:03.384639Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/e4a07280-5e60-41e8-8868-d6b391ac9ba4/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"c3af2a4f-dd6e-4777-8899-7be70c0e629c","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"48138666-3c22-45b7-8ed3-bc27533e4d40","name":"Application","type":"group","position":0,"components":[{"id":"0da9e91e-519e-4d1b-a530-95dbf9b1d6a3","name":"Login","type":"component","status":"operational","position":0},{"id":"cd8829c5-75ca-40a1-9204-24cc97525713","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T16:05:02.028841Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"75fd3e1165e41d93","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T16:05:02.028841Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/c3af2a4f-dd6e-4777-8899-7be70c0e629c/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"cfbf3ff5-f7e6-4d6c-8175-cbff110ebfc9","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"09a8484c-be64-4295-a6b8-acf87f9245ab","name":"Application","type":"group","position":0,"components":[{"id":"5cc44628-14ac-4563-a052-5b1f9a3fa3e4","name":"Login","type":"component","status":"operational","position":0},{"id":"c2f9b131-672d-4ee8-a50c-5c3874f302e8","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:48:47.984615Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f574ab46462ee007","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:48:47.984615Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/cfbf3ff5-f7e6-4d6c-8175-cbff110ebfc9/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"a8e6fdb1-05c8-416c-a150-9af49c513206","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"22432bc8-d59a-4d2a-b4c5-459199b433be","name":"Application","type":"group","position":0,"components":[{"id":"6407bf01-0c11-4509-8ae6-24c77cf205da","name":"Login","type":"component","status":"operational","position":0},{"id":"424ec72d-f12c-4718-8c5b-52a2a1c25cd5","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:48:46.468711Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"fd37efd95db6e0b5","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:48:46.468711Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/a8e6fdb1-05c8-416c-a150-9af49c513206/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"b57576ee-457d-43da-9b17-f7e9087ab4a4","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"27a0738a-f38d-404d-999a-370cff2c4f10","name":"Application","type":"group","position":0,"components":[{"id":"2bf35e8e-28c9-49c3-948a-854097030f2c","name":"Login","type":"component","status":"operational","position":0},{"id":"d8522dbf-1638-47fb-ba5a-95af1fcd700d","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:48:44.989419Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"2e43867bfa448a5d","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:48:44.989419Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/b57576ee-457d-43da-9b17-f7e9087ab4a4/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"e2a7988d-e454-480d-9bff-dcfc5058ffd6","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"700c4456-e8c7-4890-b2c5-30c3fe0ed823","name":"Application","type":"group","position":0,"components":[{"id":"13a1264c-4541-4bb6-9c92-e626930ece49","name":"Login","type":"component","status":"operational","position":0},{"id":"8de3f71a-efdd-4524-94a6-eb088abcbfbc","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:46:01.826656Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"0b5855db08df37da","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:46:01.826656Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/e2a7988d-e454-480d-9bff-dcfc5058ffd6/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"18505e11-3832-4194-ac65-b47359669e61","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"289b7ce0-840b-4cea-af5d-b6aaaa4cbc5e","name":"Application","type":"group","position":0,"components":[{"id":"c6b42e04-bd00-4ee5-b946-a773a7df9334","name":"Login","type":"component","status":"operational","position":0},{"id":"020a490f-d227-430c-83c8-5ad7b5231ba8","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:46:00.299228Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"be2cd8834307e7f7","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:46:00.299228Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/18505e11-3832-4194-ac65-b47359669e61/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"58b6cfe4-d036-408e-a2c8-39c2aa18b5a5","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"83e2336e-8008-4e27-80d0-5a132221ac43","name":"Application","type":"group","position":0,"components":[{"id":"b372da78-86e5-4d41-bedd-43f7134c6acc","name":"Login","type":"component","status":"operational","position":0},{"id":"aced314d-a1ba-402f-8721-50b7dd45f59a","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:45:58.944334Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"d7e60b47af4c64a3","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:45:58.944334Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/58b6cfe4-d036-408e-a2c8-39c2aa18b5a5/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"bbe07a71-94b7-4012-9f69-032ff09e567e","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"727a527d-16ab-4744-9cbd-6955bf21e647","name":"Application","type":"group","position":0,"components":[{"id":"e33fa227-f111-40ea-8350-70e54e03af66","name":"Login","type":"component","status":"operational","position":0},{"id":"efce96c6-1bd4-466f-938f-5458ea6b390b","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:16:02.886765Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"3f122df453622870","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:16:02.886765Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/bbe07a71-94b7-4012-9f69-032ff09e567e/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"233d02e7-9989-454d-be5d-295f3f04ff5f","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"59cbcb7d-7d1a-4ee3-8a22-5ef655f5445a","name":"Application","type":"group","position":0,"components":[{"id":"db2157c8-f88c-4076-8cdc-6c9ee7e883c8","name":"Login","type":"component","status":"operational","position":0},{"id":"30dc0ca4-b005-4745-9edf-196e87969a34","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:16:01.952726Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"a321ba5a9d4e1bc2","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:16:01.952726Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/233d02e7-9989-454d-be5d-295f3f04ff5f/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"141fb4dd-5560-42a7-9145-78da6d717d9b","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"4434910b-ff89-40d5-b665-0ce24275363f","name":"Application","type":"group","position":0,"components":[{"id":"0612918d-6554-415c-9988-73464da30450","name":"Login","type":"component","status":"operational","position":0},{"id":"cfeb9664-4276-4995-ad8e-367cb896234b","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:16:01.193556Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"dc887211d7151600","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:16:01.193556Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/141fb4dd-5560-42a7-9145-78da6d717d9b/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"fbcbdef4-4e3a-436a-bb0a-be8205a98b36","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"69631aec-9684-4341-8567-15fc5023011d","name":"Application","type":"group","position":0,"components":[{"id":"7d4bd295-b987-49b0-8086-9dddbcfade33","name":"Login","type":"component","status":"operational","position":0},{"id":"f5f7553c-c304-4946-bd58-2a58a83ab7cb","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:13:24.950199Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"d2cc282985fb6853","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:13:24.950199Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/fbcbdef4-4e3a-436a-bb0a-be8205a98b36/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"6f3e2bef-846a-4c05-9d6d-35d9d136c31a","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"06c940fa-78c0-434b-8c65-4edc35fb3bf8","name":"Application","type":"group","position":0,"components":[{"id":"8e3cd5cc-1ce3-435c-863d-2f139a10fd18","name":"Login","type":"component","status":"operational","position":0},{"id":"4a56abde-dc39-4dd6-b1f4-7c5d2fde704b","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:13:23.837825Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f3aeb4c1b8c5449d","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:13:23.837825Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/6f3e2bef-846a-4c05-9d6d-35d9d136c31a/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"6054e25a-60fa-4c88-a02a-760bae1a7917","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"0609ab97-970b-4312-8209-2fedf5ca4bab","name":"Application","type":"group","position":0,"components":[{"id":"77170b9e-5e63-4ddb-9a0b-93e271e530ba","name":"Login","type":"component","status":"operational","position":0},{"id":"f720e3c0-12cf-409a-97a3-3269b2f0e8f3","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T15:13:22.190248Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"367d9e866a66ad8c","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T15:13:22.190248Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/6054e25a-60fa-4c88-a02a-760bae1a7917/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"a7f27d28-ea42-4c5a-acfe-800e036b4d83","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"381eaab2-004f-4716-a76f-d264ab591163","name":"Application","type":"group","position":0,"components":[{"id":"9a0e536b-d716-49db-88b4-639f6de9ea23","name":"Login","type":"component","status":"operational","position":0},{"id":"955cc731-9ae5-4271-8351-b2ed3268f174","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T14:28:40.849754Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"1504c4154f91a37d","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T14:28:40.849754Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/a7f27d28-ea42-4c5a-acfe-800e036b4d83/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"e9e86584-1f9a-45b8-ace4-cb9ac49c8c35","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"6f670044-3c47-480d-8f1b-15226dc96500","name":"Application","type":"group","position":0,"components":[{"id":"8ae3244d-3172-4414-b826-4f3b74923b01","name":"Login","type":"component","status":"operational","position":0},{"id":"ce4b8354-a34c-481d-84d8-150b177a2989","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T14:28:40.03449Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"170bc85c2835a80b","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T14:28:40.03449Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/e9e86584-1f9a-45b8-ace4-cb9ac49c8c35/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"14cc6952-f835-419b-9c36-b73c6c1f5d3f","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"3cc01b47-837e-4d4f-bf94-bec3d1c3b576","name":"Application","type":"group","position":0,"components":[{"id":"6be3f4e9-2523-4e1f-9a34-23c0cf593f96","name":"Login","type":"component","status":"operational","position":0},{"id":"b09b3432-c866-4572-b1c8-dcefd6f4538d","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-19T14:28:39.323329Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"3509967b198e91ed","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-19T14:28:39.323329Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/14cc6952-f835-419b-9c36-b73c6c1f5d3f/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"b33cb3e9-d065-4ff3-960c-d8e0afb99f37","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"077bb7e5-9846-4dd9-a737-af0139dee854","name":"Application","type":"group","position":0,"components":[{"id":"1abb15cc-21e4-4119-926d-ceea2965ef52","name":"Login","type":"component","status":"operational","position":0},{"id":"400f843b-a5b6-4520-be39-f85c1ccb253b","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-18T22:43:50.391028Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"57998a2699532e89","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-18T22:43:50.391028Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/b33cb3e9-d065-4ff3-960c-d8e0afb99f37/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"8c769ee5-a018-4f94-bee4-3e0330e38b95","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"fed9318c-8fe4-4fd7-9e96-a3fca3e4dd38","name":"Application","type":"group","position":0,"components":[{"id":"a5d068d8-9903-468e-8947-e5b177f11877","name":"Login","type":"component","status":"operational","position":0},{"id":"56dafdff-3539-40ab-862a-e06d86ad95e4","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-18T22:43:49.009383Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"8ee03b33252cf8e7","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-18T22:43:49.009383Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/8c769ee5-a018-4f94-bee4-3e0330e38b95/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"49ee3d48-7e5c-4a7a-b268-97fb6d0ea3d2","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"94d13995-c630-4e33-bfed-a0cb020fc3b6","name":"Application","type":"group","position":0,"components":[{"id":"96f86213-fd43-41b2-98b9-a47413dc5376","name":"Login","type":"component","status":"operational","position":0},{"id":"80e83792-71df-4d95-8a33-74a68cd594d2","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-18T22:43:47.881786Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f89ce4f178b4d51e","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-18T22:43:47.881786Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/49ee3d48-7e5c-4a7a-b268-97fb6d0ea3d2/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"3dd25c2b-a623-4e90-8e8a-ca1474d25623","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"2152d80d-2844-440f-a6bd-d337daf0e517","name":"Application","type":"group","position":0,"components":[{"id":"545a3c7e-befe-4ce4-8822-450ef2739026","name":"Login","type":"component","status":"operational","position":0},{"id":"eaca5ee7-e3cf-473c-a952-911d7392c94c","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-18T22:11:43.515284Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"f2dfecd8453872bb","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-18T22:11:43.515284Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/3dd25c2b-a623-4e90-8e8a-ca1474d25623/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"5bdbe523-c175-4eaf-a093-6ee0fb5b5a10","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"3ef2a099-e89f-43e0-942d-2402fd190987","name":"Application","type":"group","position":0,"components":[{"id":"66fe5ac6-1f11-43ab-8727-6ef1b96ddc7d","name":"Login","type":"component","status":"operational","position":0},{"id":"16ea75b5-79b6-4bc0-81e3-e93c7faddf72","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-18T22:11:42.828961Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"1d6844e41643f4b1","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-18T22:11:42.828961Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/5bdbe523-c175-4eaf-a093-6ee0fb5b5a10/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}},{"id":"7658f2c2-01d8-4fb8-af5f-354a49aa4057","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"2e179c9e-4f24-4e95-b7ee-e84a2168c71e","name":"Application","type":"group","position":0,"components":[{"id":"2ff41cbd-f935-4efa-9145-d8ca2e55fde1","name":"Login","type":"component","status":"operational","position":0},{"id":"cc3fedf9-5331-49d7-894a-83501f9bcfbd","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-18T22:11:42.271637Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"6f9e2fa0ce5ee595","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-18T22:11:42.271637Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/7658f2c2-01d8-4fb8-af5f-354a49aa4057/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}},"last_modified_by_user":{"data":{"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","type":"users"}}}}],"meta":{"page":{"type":"offset_limit","offset":0,"limit":50,"total":null,"first_offset":0,"prev_offset":null,"next_offset":50,"last_offset":null}}}' + Status Page","page_url":"https://frog.datadoghq.com/status-pages/4d753d2f-1348-486d-afc7-22f3e1759af3/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}],"meta":{"page":{"type":"offset_limit","offset":0,"limit":50,"total":null,"first_offset":0,"prev_offset":null,"next_offset":50,"last_offset":null}}}' headers: content-type: - application/vnd.api+json @@ -91,7 +91,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/06fa86aa-c512-4c00-95ee-b1cb5b2cccf1 + uri: https://api.datadoghq.com/api/v2/statuspages/c21d7c2b-4ec7-4faa-a41b-61b20d5c7f36 response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_publish_status_page_returns_no_content_response.frozen b/tests/v2/cassettes/test_scenarios/test_publish_status_page_returns_no_content_response.frozen new file mode 100644 index 0000000000..e4725747f8 --- /dev/null +++ b/tests/v2/cassettes/test_scenarios/test_publish_status_page_returns_no_content_response.frozen @@ -0,0 +1 @@ +2026-03-31T18:44:07.885Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_publish_status_page_returns_no_content_response.yaml b/tests/v2/cassettes/test_scenarios/test_publish_status_page_returns_no_content_response.yaml new file mode 100644 index 0000000000..65956d6356 --- /dev/null +++ b/tests/v2/cassettes/test_scenarios/test_publish_status_page_returns_no_content_response.yaml @@ -0,0 +1,50 @@ +interactions: +- request: + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"a1b2749a5e1fc90f","enabled":false,"name":"An + Unpublished Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' + headers: + accept: + - application/json + content-type: + - application/json + method: POST + uri: https://api.datadoghq.com/api/v2/statuspages + response: + body: + string: '{"data":{"id":"c0d7e5aa-232b-4b65-96b4-0c8e6e3fc084","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"5e369fc2-ae6a-4334-83de-10f2bc8e8402","name":"Application","type":"group","position":0,"components":[{"id":"366804d4-3f45-4ea0-a859-61881a181bca","name":"Login","type":"component","status":"operational","position":0},{"id":"2c332de3-39f9-477f-873d-300282bee52b","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:07.969236Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"a1b2749a5e1fc90f","email_header_image":null,"enabled":false,"favicon":null,"modified_at":"2026-03-31T18:44:07.969236Z","name":"An + Unpublished Status Page","page_url":"https://frog.datadoghq.com/status-pages/c0d7e5aa-232b-4b65-96b4-0c8e6e3fc084/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + headers: + content-type: + - application/vnd.api+json + status: + code: 201 + message: Created +- request: + body: null + headers: + accept: + - '*/*' + method: POST + uri: https://api.datadoghq.com/api/v2/statuspages/c0d7e5aa-232b-4b65-96b4-0c8e6e3fc084/publish + response: + body: + string: '' + headers: {} + status: + code: 204 + message: No Content +- request: + body: null + headers: + accept: + - '*/*' + method: DELETE + uri: https://api.datadoghq.com/api/v2/statuspages/c0d7e5aa-232b-4b65-96b4-0c8e6e3fc084 + response: + body: + string: '' + headers: {} + status: + code: 204 + message: No Content +version: 1 diff --git a/tests/v2/cassettes/test_scenarios/test_unpublish_status_page_returns_no_content_response.frozen b/tests/v2/cassettes/test_scenarios/test_unpublish_status_page_returns_no_content_response.frozen new file mode 100644 index 0000000000..792edb70dc --- /dev/null +++ b/tests/v2/cassettes/test_scenarios/test_unpublish_status_page_returns_no_content_response.frozen @@ -0,0 +1 @@ +2026-03-31T18:44:09.229Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_unpublish_status_page_returns_no_content_response.yaml b/tests/v2/cassettes/test_scenarios/test_unpublish_status_page_returns_no_content_response.yaml new file mode 100644 index 0000000000..d090f1ab21 --- /dev/null +++ b/tests/v2/cassettes/test_scenarios/test_unpublish_status_page_returns_no_content_response.yaml @@ -0,0 +1,50 @@ +interactions: +- request: + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"8638252c458ce646","enabled":true,"name":"A + Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' + headers: + accept: + - application/json + content-type: + - application/json + method: POST + uri: https://api.datadoghq.com/api/v2/statuspages + response: + body: + string: '{"data":{"id":"cfc5826b-b383-4f29-b4cf-1702a7a18ab0","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"e0b66ea8-a7cb-4072-8d2f-94037452b531","name":"Application","type":"group","position":0,"components":[{"id":"f4e1e6aa-6f77-439a-a68e-6309dac82ae3","name":"Login","type":"component","status":"operational","position":0},{"id":"53d81c0b-b2fb-4261-ba23-f83d6d7e30ef","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:09.324827Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"8638252c458ce646","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:09.324827Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/cfc5826b-b383-4f29-b4cf-1702a7a18ab0/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + headers: + content-type: + - application/vnd.api+json + status: + code: 201 + message: Created +- request: + body: null + headers: + accept: + - '*/*' + method: POST + uri: https://api.datadoghq.com/api/v2/statuspages/cfc5826b-b383-4f29-b4cf-1702a7a18ab0/unpublish + response: + body: + string: '' + headers: {} + status: + code: 204 + message: No Content +- request: + body: null + headers: + accept: + - '*/*' + method: DELETE + uri: https://api.datadoghq.com/api/v2/statuspages/cfc5826b-b383-4f29-b4cf-1702a7a18ab0 + response: + body: + string: '' + headers: {} + status: + code: 204 + message: No Content +version: 1 diff --git a/tests/v2/cassettes/test_scenarios/test_update_component_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_update_component_returns_ok_response.frozen index 65cd576dde..3817c6baad 100644 --- a/tests/v2/cassettes/test_scenarios/test_update_component_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_update_component_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:01:02.180Z \ No newline at end of file +2026-03-31T18:44:10.490Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_update_component_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_update_component_returns_ok_response.yaml index 3ec8838f94..ca54fa3958 100644 --- a/tests/v2/cassettes/test_scenarios/test_update_component_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_update_component_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"bca9d790b9b0f94d","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"06a2004447198b06","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"e0e309f4-9049-49d2-b6af-80874c5a4b84","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"d0c9d99e-e697-431b-93b0-400d2873ec18","name":"Application","type":"group","position":0,"components":[{"id":"f4aafe97-fdce-43f0-8872-0cb5ce9e7347","name":"Login","type":"component","status":"operational","position":0},{"id":"b74e7cb4-04b6-4086-9f01-aff7e23bfc09","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:01:02.494038Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"bca9d790b9b0f94d","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:01:02.494038Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/e0e309f4-9049-49d2-b6af-80874c5a4b84/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"dac0f31f-69b4-4462-a969-0ef891287dfa","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"8b2c47e5-ba54-47ae-806d-8ea04ac8b26a","name":"Application","type":"group","position":0,"components":[{"id":"d3839166-1e0d-451f-9d03-530b28955290","name":"Login","type":"component","status":"operational","position":0},{"id":"80fb3a82-4eab-4065-bddb-79fec513577f","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:10.574576Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"06a2004447198b06","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:10.574576Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/dac0f31f-69b4-4462-a969-0ef891287dfa/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -20,18 +20,18 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"name":"Logs Indexing"},"id":"d0c9d99e-e697-431b-93b0-400d2873ec18","type":"components"}}' + body: '{"data":{"attributes":{"name":"Logs Indexing"},"id":"8b2c47e5-ba54-47ae-806d-8ea04ac8b26a","type":"components"}}' headers: accept: - application/json content-type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/statuspages/e0e309f4-9049-49d2-b6af-80874c5a4b84/components/d0c9d99e-e697-431b-93b0-400d2873ec18 + uri: https://api.datadoghq.com/api/v2/statuspages/dac0f31f-69b4-4462-a969-0ef891287dfa/components/8b2c47e5-ba54-47ae-806d-8ea04ac8b26a response: body: - string: '{"data":{"id":"d0c9d99e-e697-431b-93b0-400d2873ec18","type":"components","attributes":{"components":[{"id":"f4aafe97-fdce-43f0-8872-0cb5ce9e7347","name":"Login","type":"component","status":"operational","position":0},{"id":"b74e7cb4-04b6-4086-9f01-aff7e23bfc09","name":"Settings","type":"component","status":"operational","position":1}],"created_at":"2026-02-24T17:01:02.494038Z","modified_at":"2026-02-24T17:01:03.086151Z","name":"Logs - Indexing","position":0,"type":"group"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"group":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"e0e309f4-9049-49d2-b6af-80874c5a4b84","type":"status_pages"}}}}}' + string: '{"data":{"id":"8b2c47e5-ba54-47ae-806d-8ea04ac8b26a","type":"components","attributes":{"components":[{"id":"d3839166-1e0d-451f-9d03-530b28955290","name":"Login","type":"component","status":"operational","position":0},{"id":"80fb3a82-4eab-4065-bddb-79fec513577f","name":"Settings","type":"component","status":"operational","position":1}],"created_at":"2026-03-31T18:44:10.574576Z","modified_at":"2026-03-31T18:44:11.124242Z","name":"Logs + Indexing","position":0,"type":"group"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"group":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"dac0f31f-69b4-4462-a969-0ef891287dfa","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -44,7 +44,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/e0e309f4-9049-49d2-b6af-80874c5a4b84 + uri: https://api.datadoghq.com/api/v2/statuspages/dac0f31f-69b4-4462-a969-0ef891287dfa response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_update_degradation_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_update_degradation_returns_ok_response.frozen index 17cab2082d..08698a2c3f 100644 --- a/tests/v2/cassettes/test_scenarios/test_update_degradation_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_update_degradation_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:01:03.744Z \ No newline at end of file +2026-03-31T18:44:11.829Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_update_degradation_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_update_degradation_returns_ok_response.yaml index ad514aa564..0bce372162 100644 --- a/tests/v2/cassettes/test_scenarios/test_update_degradation_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_update_degradation_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"7db16496b6c8a7fc","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"b1cdee5431b9ec0e","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"31832b1a-f21d-4273-b8c9-e6ab70992c46","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"13c30f15-5b69-427a-bf3f-43e26be5b57b","name":"Application","type":"group","position":0,"components":[{"id":"bed6d62b-c62d-413d-ac49-b445debee25c","name":"Login","type":"component","status":"operational","position":0},{"id":"903094d1-f9bc-4e63-beb7-d43f1969e966","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:01:03.924912Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"7db16496b6c8a7fc","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:01:03.924912Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/31832b1a-f21d-4273-b8c9-e6ab70992c46/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"d8944219-6ebe-41c0-b1a3-7d3825a76bfd","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"8b1e12c2-92c2-4f05-a6f7-fbafdf68d0cc","name":"Application","type":"group","position":0,"components":[{"id":"c77aa512-355d-4e4d-b960-23428179dd74","name":"Login","type":"component","status":"operational","position":0},{"id":"5d1cca48-baf7-4cf3-8896-c6d344e4a6aa","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:11.917685Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"b1cdee5431b9ec0e","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:11.917685Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/d8944219-6ebe-41c0-b1a3-7d3825a76bfd/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -20,7 +20,7 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"components_affected":[{"id":"bed6d62b-c62d-413d-ac49-b445debee25c","status":"major_outage"}],"description":"Our + body: '{"data":{"attributes":{"components_affected":[{"id":"c77aa512-355d-4e4d-b960-23428179dd74","status":"major_outage"}],"description":"Our API is experiencing elevated latency. We are investigating the issue.","status":"investigating","title":"Elevated API Latency"},"type":"degradations"}}' headers: @@ -29,13 +29,13 @@ interactions: content-type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/statuspages/31832b1a-f21d-4273-b8c9-e6ab70992c46/degradations + uri: https://api.datadoghq.com/api/v2/statuspages/d8944219-6ebe-41c0-b1a3-7d3825a76bfd/degradations response: body: - string: '{"data":{"id":"ac3fb11e-3702-43bf-a5a2-8103c964acd9","type":"degradations","attributes":{"components_affected":[{"id":"bed6d62b-c62d-413d-ac49-b445debee25c","name":"Login","status":"major_outage"}],"created_at":"2026-02-24T17:01:04.652213Z","description":"Our - API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-02-24T17:01:04.652213Z","status":"investigating","title":"Elevated - API Latency","updates":[{"id":"0775f6bd-7bb0-4e36-a055-3601b137a270","created_at":"2026-02-24T17:01:04.652213Z","modified_at":"2026-02-24T17:01:04.652213Z","status":"investigating","description":"Our - API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"bed6d62b-c62d-413d-ac49-b445debee25c","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"31832b1a-f21d-4273-b8c9-e6ab70992c46","type":"status_pages"}}}}}' + string: '{"data":{"id":"46ccbf2e-939a-4fd8-9c32-c45717b900d3","type":"degradations","attributes":{"components_affected":[{"id":"c77aa512-355d-4e4d-b960-23428179dd74","name":"Login","status":"major_outage"}],"created_at":"2026-03-31T18:44:12.533192Z","description":"Our + API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-03-31T18:44:12.533192Z","status":"investigating","title":"Elevated + API Latency","updates":[{"id":"20bc5a96-f8cc-4854-b8da-a716ec05c3dc","created_at":"2026-03-31T18:44:12.533192Z","modified_at":"2026-03-31T18:44:12.533192Z","started_at":"2026-03-31T18:44:12.533192Z","status":"investigating","description":"Our + API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"c77aa512-355d-4e4d-b960-23428179dd74","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"d8944219-6ebe-41c0-b1a3-7d3825a76bfd","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -43,20 +43,20 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"title":"Elevated API Latency in US1"},"id":"ac3fb11e-3702-43bf-a5a2-8103c964acd9","type":"degradations"}}' + body: '{"data":{"attributes":{"title":"Elevated API Latency in US1"},"id":"46ccbf2e-939a-4fd8-9c32-c45717b900d3","type":"degradations"}}' headers: accept: - application/json content-type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/statuspages/31832b1a-f21d-4273-b8c9-e6ab70992c46/degradations/ac3fb11e-3702-43bf-a5a2-8103c964acd9 + uri: https://api.datadoghq.com/api/v2/statuspages/d8944219-6ebe-41c0-b1a3-7d3825a76bfd/degradations/46ccbf2e-939a-4fd8-9c32-c45717b900d3 response: body: - string: '{"data":{"id":"ac3fb11e-3702-43bf-a5a2-8103c964acd9","type":"degradations","attributes":{"components_affected":[{"id":"bed6d62b-c62d-413d-ac49-b445debee25c","name":"Login","status":"major_outage"}],"created_at":"2026-02-24T17:01:04.652213Z","description":"Our - API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-02-24T17:01:04.857819Z","status":"investigating","title":"Elevated - API Latency in US1","updates":[{"id":"0775f6bd-7bb0-4e36-a055-3601b137a270","created_at":"2026-02-24T17:01:04.652213Z","modified_at":"2026-02-24T17:01:04.652213Z","status":"investigating","description":"Our - API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"bed6d62b-c62d-413d-ac49-b445debee25c","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"31832b1a-f21d-4273-b8c9-e6ab70992c46","type":"status_pages"}}}}}' + string: '{"data":{"id":"46ccbf2e-939a-4fd8-9c32-c45717b900d3","type":"degradations","attributes":{"components_affected":[{"id":"c77aa512-355d-4e4d-b960-23428179dd74","name":"Login","status":"major_outage"}],"created_at":"2026-03-31T18:44:12.533192Z","description":"Our + API is experiencing elevated latency. We are investigating the issue.","modified_at":"2026-03-31T18:44:12.702666Z","status":"investigating","title":"Elevated + API Latency in US1","updates":[{"id":"20bc5a96-f8cc-4854-b8da-a716ec05c3dc","created_at":"2026-03-31T18:44:12.533192Z","modified_at":"2026-03-31T18:44:12.533192Z","started_at":"2026-03-31T18:44:12.533192Z","status":"investigating","description":"Our + API is experiencing elevated latency. We are investigating the issue.","components_affected":[{"id":"c77aa512-355d-4e4d-b960-23428179dd74","name":"Login","status":"major_outage"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"d8944219-6ebe-41c0-b1a3-7d3825a76bfd","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -69,7 +69,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/31832b1a-f21d-4273-b8c9-e6ab70992c46/degradations/ac3fb11e-3702-43bf-a5a2-8103c964acd9 + uri: https://api.datadoghq.com/api/v2/statuspages/d8944219-6ebe-41c0-b1a3-7d3825a76bfd/degradations/46ccbf2e-939a-4fd8-9c32-c45717b900d3 response: body: string: '' @@ -83,7 +83,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/31832b1a-f21d-4273-b8c9-e6ab70992c46 + uri: https://api.datadoghq.com/api/v2/statuspages/d8944219-6ebe-41c0-b1a3-7d3825a76bfd response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_update_maintenance_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_update_maintenance_returns_ok_response.frozen index 6fdcab9b42..7cdcb93627 100644 --- a/tests/v2/cassettes/test_scenarios/test_update_maintenance_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_update_maintenance_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:01:05.730Z \ No newline at end of file +2026-03-31T18:44:13.515Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_update_maintenance_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_update_maintenance_returns_ok_response.yaml index 07c01eac12..32a81c017c 100644 --- a/tests/v2/cassettes/test_scenarios/test_update_maintenance_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_update_maintenance_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"bd41b0432241277c","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"be42ccf216c187fb","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"47eedb78-70c8-4492-94d9-d6072b1b461a","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"14510904-00d4-49a0-b4fb-f352e0bbee44","name":"Application","type":"group","position":0,"components":[{"id":"8dbbf907-e6bf-4f52-9087-9faf83662618","name":"Login","type":"component","status":"operational","position":0},{"id":"303d4a51-952f-4e2f-8124-bcac0008f20d","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:01:05.895153Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"bd41b0432241277c","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:01:05.895153Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/47eedb78-70c8-4492-94d9-d6072b1b461a/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"607f5d14-2c0b-4ec3-9421-e6e3fd09c3fd","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"641655c2-630f-4393-bd21-8b64bf891533","name":"Application","type":"group","position":0,"components":[{"id":"b848d9d3-0ceb-4997-a413-4bc12474ebc4","name":"Login","type":"component","status":"operational","position":0},{"id":"ba66261b-2a97-4aa2-8046-4a99df74a0f4","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:13.604301Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"be42ccf216c187fb","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:13.604301Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/607f5d14-2c0b-4ec3-9421-e6e3fd09c3fd/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -20,10 +20,10 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"completed_date":"2026-02-24T19:01:05.730Z","completed_description":"We - have completed maintenance on the API to improve performance.","components_affected":[{"id":"8dbbf907-e6bf-4f52-9087-9faf83662618","status":"operational"}],"in_progress_description":"We + body: '{"data":{"attributes":{"completed_date":"2026-03-31T20:44:13.515Z","completed_description":"We + have completed maintenance on the API to improve performance.","components_affected":[{"id":"b848d9d3-0ceb-4997-a413-4bc12474ebc4","status":"operational"}],"in_progress_description":"We are currently performing maintenance on the API to improve performance.","scheduled_description":"We - will be performing maintenance on the API to improve performance.","start_date":"2026-02-24T18:01:05.730Z","title":"API + will be performing maintenance on the API to improve performance.","start_date":"2026-03-31T19:44:13.515Z","title":"API Maintenance"},"type":"maintenances"}}' headers: accept: @@ -31,15 +31,15 @@ interactions: content-type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/statuspages/47eedb78-70c8-4492-94d9-d6072b1b461a/maintenances + uri: https://api.datadoghq.com/api/v2/statuspages/607f5d14-2c0b-4ec3-9421-e6e3fd09c3fd/maintenances response: body: - string: '{"data":{"id":"6e4bdbf5-d781-4db9-80c0-38d6a0b042d5","type":"maintenances","attributes":{"completed_date":"2026-02-24T19:01:05.73Z","completed_description":"We - have completed maintenance on the API to improve performance.","components_affected":[{"id":"8dbbf907-e6bf-4f52-9087-9faf83662618","name":"Login","status":"operational"}],"in_progress_description":"We - are currently performing maintenance on the API to improve performance.","modified_at":"2026-02-24T17:01:06.54667Z","published_date":"2026-02-24T17:01:06.54667Z","scheduled_description":"We - will be performing maintenance on the API to improve performance.","start_date":"2026-02-24T18:01:05.73Z","status":"scheduled","title":"API - Maintenance","updates":[{"id":"5757da5d-1852-474f-9321-b80824f1d54c","created_at":"2026-02-24T17:01:06.54667Z","modified_at":"2026-02-24T17:01:06.54667Z","started_at":"2026-02-24T17:01:06.54667Z","manual_transition":false,"status":"scheduled","description":"We - will be performing maintenance on the API to improve performance.","components_affected":[{"id":"8dbbf907-e6bf-4f52-9087-9faf83662618","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"47eedb78-70c8-4492-94d9-d6072b1b461a","type":"status_pages"}}}}}' + string: '{"data":{"id":"41064083-88d6-4149-98da-08c773470e1f","type":"maintenances","attributes":{"completed_date":"2026-03-31T20:44:13.515Z","completed_description":"We + have completed maintenance on the API to improve performance.","components_affected":[{"id":"b848d9d3-0ceb-4997-a413-4bc12474ebc4","name":"Login","status":"operational"}],"in_progress_description":"We + are currently performing maintenance on the API to improve performance.","modified_at":"2026-03-31T18:44:14.265702Z","published_date":"2026-03-31T18:44:14.265702Z","scheduled_description":"We + will be performing maintenance on the API to improve performance.","start_date":"2026-03-31T19:44:13.515Z","status":"scheduled","title":"API + Maintenance","updates":[{"id":"e159a1f7-d92b-47a0-8b78-c72c95f800e8","created_at":"2026-03-31T18:44:14.265702Z","modified_at":"2026-03-31T18:44:14.265702Z","started_at":"2026-03-31T18:44:14.265702Z","manual_transition":false,"status":"scheduled","description":"We + will be performing maintenance on the API to improve performance.","components_affected":[{"id":"b848d9d3-0ceb-4997-a413-4bc12474ebc4","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"607f5d14-2c0b-4ec3-9421-e6e3fd09c3fd","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -49,23 +49,23 @@ interactions: - request: body: '{"data":{"attributes":{"in_progress_description":"We are currently performing maintenance on the API to improve performance for 40 minutes.","scheduled_description":"We - will be performing maintenance on the API to improve performance for 40 minutes."},"id":"6e4bdbf5-d781-4db9-80c0-38d6a0b042d5","type":"maintenances"}}' + will be performing maintenance on the API to improve performance for 40 minutes."},"id":"41064083-88d6-4149-98da-08c773470e1f","type":"maintenances"}}' headers: accept: - application/json content-type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/statuspages/47eedb78-70c8-4492-94d9-d6072b1b461a/maintenances/6e4bdbf5-d781-4db9-80c0-38d6a0b042d5 + uri: https://api.datadoghq.com/api/v2/statuspages/607f5d14-2c0b-4ec3-9421-e6e3fd09c3fd/maintenances/41064083-88d6-4149-98da-08c773470e1f response: body: - string: '{"data":{"id":"6e4bdbf5-d781-4db9-80c0-38d6a0b042d5","type":"maintenances","attributes":{"completed_date":"2026-02-24T19:01:05.73Z","completed_description":"We - have completed maintenance on the API to improve performance.","components_affected":[{"id":"8dbbf907-e6bf-4f52-9087-9faf83662618","name":"Login","status":"operational"}],"in_progress_description":"We + string: '{"data":{"id":"41064083-88d6-4149-98da-08c773470e1f","type":"maintenances","attributes":{"completed_date":"2026-03-31T20:44:13.515Z","completed_description":"We + have completed maintenance on the API to improve performance.","components_affected":[{"id":"b848d9d3-0ceb-4997-a413-4bc12474ebc4","name":"Login","status":"operational"}],"in_progress_description":"We are currently performing maintenance on the API to improve performance for - 40 minutes.","modified_at":"2026-02-24T17:01:06.746611Z","published_date":"2026-02-24T17:01:06.54667Z","scheduled_description":"We - will be performing maintenance on the API to improve performance for 40 minutes.","start_date":"2026-02-24T18:01:05.73Z","status":"scheduled","title":"API - Maintenance","updates":[{"id":"5757da5d-1852-474f-9321-b80824f1d54c","created_at":"2026-02-24T17:01:06.54667Z","modified_at":"2026-02-24T17:01:06.54667Z","started_at":"2026-02-24T17:01:06.54667Z","manual_transition":false,"status":"scheduled","description":"We - will be performing maintenance on the API to improve performance.","components_affected":[{"id":"8dbbf907-e6bf-4f52-9087-9faf83662618","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"47eedb78-70c8-4492-94d9-d6072b1b461a","type":"status_pages"}}}}}' + 40 minutes.","modified_at":"2026-03-31T18:44:14.429065Z","published_date":"2026-03-31T18:44:14.265702Z","scheduled_description":"We + will be performing maintenance on the API to improve performance for 40 minutes.","start_date":"2026-03-31T19:44:13.515Z","status":"scheduled","title":"API + Maintenance","updates":[{"id":"e159a1f7-d92b-47a0-8b78-c72c95f800e8","created_at":"2026-03-31T18:44:14.265702Z","modified_at":"2026-03-31T18:44:14.265702Z","started_at":"2026-03-31T18:44:14.265702Z","manual_transition":false,"status":"scheduled","description":"We + will be performing maintenance on the API to improve performance.","components_affected":[{"id":"b848d9d3-0ceb-4997-a413-4bc12474ebc4","name":"Login","status":"operational"}]}]},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"status_page":{"data":{"id":"607f5d14-2c0b-4ec3-9421-e6e3fd09c3fd","type":"status_pages"}}}}}' headers: content-type: - application/vnd.api+json @@ -78,7 +78,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/47eedb78-70c8-4492-94d9-d6072b1b461a + uri: https://api.datadoghq.com/api/v2/statuspages/607f5d14-2c0b-4ec3-9421-e6e3fd09c3fd response: body: string: '' diff --git a/tests/v2/cassettes/test_scenarios/test_update_status_page_returns_ok_response.frozen b/tests/v2/cassettes/test_scenarios/test_update_status_page_returns_ok_response.frozen index b1f3fb21d4..ccff0a6817 100644 --- a/tests/v2/cassettes/test_scenarios/test_update_status_page_returns_ok_response.frozen +++ b/tests/v2/cassettes/test_scenarios/test_update_status_page_returns_ok_response.frozen @@ -1 +1 @@ -2026-02-24T17:01:07.308Z \ No newline at end of file +2026-03-31T18:44:15.049Z \ No newline at end of file diff --git a/tests/v2/cassettes/test_scenarios/test_update_status_page_returns_ok_response.yaml b/tests/v2/cassettes/test_scenarios/test_update_status_page_returns_ok_response.yaml index 8c4175fe54..65f6ca742a 100644 --- a/tests/v2/cassettes/test_scenarios/test_update_status_page_returns_ok_response.yaml +++ b/tests/v2/cassettes/test_scenarios/test_update_status_page_returns_ok_response.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"50e12c2de25a414e","enabled":true,"name":"A + body: '{"data":{"attributes":{"components":[{"components":[{"name":"Login","position":0,"type":"component"},{"name":"Settings","position":1,"type":"component"}],"name":"Application","type":"group"}],"domain_prefix":"548d613d250b70a4","enabled":true,"name":"A Status Page","type":"internal","visualization_type":"bars_and_uptime_percentage"},"type":"status_pages"}}' headers: accept: @@ -11,8 +11,8 @@ interactions: uri: https://api.datadoghq.com/api/v2/statuspages response: body: - string: '{"data":{"id":"34c403c9-30eb-43d7-b50e-615447b8da7b","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"2c0a3417-3e0a-4142-83e1-e59027d0ce67","name":"Application","type":"group","position":0,"components":[{"id":"b3d1d966-6c22-42e3-8367-161fc4daf223","name":"Login","type":"component","status":"operational","position":0},{"id":"ccc00996-6f92-4558-80e2-0a890108f04e","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:01:07.464734Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"50e12c2de25a414e","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:01:07.464734Z","name":"A - Status Page","page_url":"https://frog.datadoghq.com/status-pages/34c403c9-30eb-43d7-b50e-615447b8da7b/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"04007915-421d-42c4-aaf1-34b8ad64c5ac","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"75689f7b-8c51-424a-a30d-97c7b307b0c6","name":"Application","type":"group","position":0,"components":[{"id":"971d2754-0d37-4ff1-a223-e31db1d93bdd","name":"Login","type":"component","status":"operational","position":0},{"id":"aaafb27b-3c75-48c6-b0e6-9dbbffb71c2e","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:15.140541Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"548d613d250b70a4","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:15.140541Z","name":"A + Status Page","page_url":"https://frog.datadoghq.com/status-pages/04007915-421d-42c4-aaf1-34b8ad64c5ac/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -20,18 +20,18 @@ interactions: code: 201 message: Created - request: - body: '{"data":{"attributes":{"name":"A Status Page in US1"},"id":"34c403c9-30eb-43d7-b50e-615447b8da7b","type":"status_pages"}}' + body: '{"data":{"attributes":{"name":"A Status Page in US1"},"id":"04007915-421d-42c4-aaf1-34b8ad64c5ac","type":"status_pages"}}' headers: accept: - application/json content-type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/statuspages/34c403c9-30eb-43d7-b50e-615447b8da7b + uri: https://api.datadoghq.com/api/v2/statuspages/04007915-421d-42c4-aaf1-34b8ad64c5ac response: body: - string: '{"data":{"id":"34c403c9-30eb-43d7-b50e-615447b8da7b","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"2c0a3417-3e0a-4142-83e1-e59027d0ce67","name":"Application","type":"group","position":0,"components":[{"id":"b3d1d966-6c22-42e3-8367-161fc4daf223","name":"Login","type":"component","status":"operational","position":0},{"id":"ccc00996-6f92-4558-80e2-0a890108f04e","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-02-24T17:01:07.464734Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"50e12c2de25a414e","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-02-24T17:01:08.147811Z","name":"A - Status Page in US1","page_url":"https://frog.datadoghq.com/status-pages/34c403c9-30eb-43d7-b50e-615447b8da7b/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"04007915-421d-42c4-aaf1-34b8ad64c5ac","type":"status_pages","attributes":{"company_logo":null,"components":[{"id":"75689f7b-8c51-424a-a30d-97c7b307b0c6","name":"Application","type":"group","position":0,"components":[{"id":"971d2754-0d37-4ff1-a223-e31db1d93bdd","name":"Login","type":"component","status":"operational","position":0},{"id":"aaafb27b-3c75-48c6-b0e6-9dbbffb71c2e","name":"Settings","type":"component","status":"operational","position":1}]}],"created_at":"2026-03-31T18:44:15.140541Z","custom_domain":null,"custom_domain_enabled":false,"domain_prefix":"548d613d250b70a4","email_header_image":null,"enabled":true,"favicon":null,"modified_at":"2026-03-31T18:44:15.769532Z","name":"A + Status Page in US1","page_url":"https://frog.datadoghq.com/status-pages/04007915-421d-42c4-aaf1-34b8ad64c5ac/view","subscriptions_enabled":false,"type":"internal","visualization_type":"bars_and_uptime_percentage"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: content-type: - application/vnd.api+json @@ -44,7 +44,7 @@ interactions: accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/statuspages/34c403c9-30eb-43d7-b50e-615447b8da7b + uri: https://api.datadoghq.com/api/v2/statuspages/04007915-421d-42c4-aaf1-34b8ad64c5ac response: body: string: '' diff --git a/tests/v2/features/given.json b/tests/v2/features/given.json index 6c42beffa1..8413be265a 100644 --- a/tests/v2/features/given.json +++ b/tests/v2/features/given.json @@ -1319,6 +1319,18 @@ "tag": "Status Pages", "operationId": "CreateStatusPage" }, + { + "parameters": [ + { + "name": "body", + "value": "{\n \"data\": {\n \"attributes\": {\n \"name\": \"An Unpublished Status Page\",\n \"domain_prefix\": \"{{ unique_hash }}\",\n \"components\": [{\"name\": \"Application\", \"type\": \"group\", \"components\":[{\"name\": \"Login\", \"type\": \"component\", \"position\": 0},{\"name\": \"Settings\", \"type\": \"component\", \"position\": 1}]}],\n \"type\": \"internal\",\n \"visualization_type\": \"bars_and_uptime_percentage\",\n \"enabled\": false\n },\n \"type\": \"status_pages\"\n }\n}" + } + ], + "step": "there is a valid \"unpublished_status_page\" in the system", + "key": "unpublished_status_page", + "tag": "Status Pages", + "operationId": "CreateStatusPage" + }, { "parameters": [ { diff --git a/tests/v2/features/status_pages.feature b/tests/v2/features/status_pages.feature index 2df3e612b1..894d747de4 100644 --- a/tests/v2/features/status_pages.feature +++ b/tests/v2/features/status_pages.feature @@ -142,6 +142,14 @@ Feature: Status Pages When the request is sent Then the response status is 200 OK + @team:DataDog/incident-app + Scenario: Publish status page returns "No Content" response + Given there is a valid "unpublished_status_page" in the system + And new "PublishStatusPage" request + And request contains "page_id" parameter from "unpublished_status_page.data.id" + When the request is sent + Then the response status is 204 No Content + @generated @skip @team:DataDog/incident-app Scenario: Schedule maintenance returns "Created" response Given new "CreateMaintenance" request @@ -150,6 +158,14 @@ Feature: Status Pages When the request is sent Then the response status is 201 Created + @team:DataDog/incident-app + Scenario: Unpublish status page returns "No Content" response + Given there is a valid "status_page" in the system + And new "UnpublishStatusPage" request + And request contains "page_id" parameter from "status_page.data.id" + When the request is sent + Then the response status is 204 No Content + @team:DataDog/incident-app Scenario: Update component returns "OK" response Given new "UpdateComponent" request diff --git a/tests/v2/features/undo.json b/tests/v2/features/undo.json index 6b408bc8b5..8b9940b568 100644 --- a/tests/v2/features/undo.json +++ b/tests/v2/features/undo.json @@ -5858,6 +5858,18 @@ "type": "idempotent" } }, + "PublishStatusPage": { + "tag": "Status Pages", + "undo": { + "type": "idempotent" + } + }, + "UnpublishStatusPage": { + "tag": "Status Pages", + "undo": { + "type": "idempotent" + } + }, "GetApiMultistepSubtests": { "tag": "Synthetics", "undo": {