Skip to content

Commit 9b5975a

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 0e8b356 of spec repo (#4814)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 589f5f3 commit 9b5975a

4 files changed

Lines changed: 3 additions & 28 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25952,9 +25952,6 @@ components:
2595225952
description: Base64-encoded image data included in email notifications sent to status page subscribers.
2595325953
example: data:image/png;base64,pQSLAw0KGgoAAAANSUhEUgAAAQ4AASJKFF
2595425954
type: string
25955-
enabled:
25956-
description: Whether the status page is enabled.
25957-
type: boolean
2595825955
favicon:
2595925956
description: Base64-encoded image data displayed in the browser tab.
2596025957
example: data:image/png;base64,kWMRNw0KGgoAAAANSUhEUgAAAEAAAABACA
@@ -80735,7 +80732,6 @@ components:
8073580732
company_logo: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAIKMMMM
8073680733
domain_prefix: status-page-us1-east
8073780734
email_header_image: data:image/png;base64,pQSLAw0KGgoAAAANSUhEUgAAAQ4AASJKFF
80738-
enabled: false
8073980735
favicon: data:image/png;base64,kWMRNw0KGgoAAAANSUhEUgAAAEAAAABACA
8074080736
name: Status Page US1 East
8074180737
subscriptions_enabled: false
@@ -80779,10 +80775,6 @@ components:
8077980775
description: The base64-encoded image data displayed in email notifications sent to status page subscribers.
8078080776
example: data:image/png;base64,pQSLAw0KGgoAAAANSUhEUgAAAQ4AASJKFF
8078180777
type: string
80782-
enabled:
80783-
description: Whether the status page is enabled.
80784-
example: true
80785-
type: boolean
8078680778
favicon:
8078780779
description: The base64-encoded image data displayed in the browser tab.
8078880780
example: data:image/png;base64,kWMRNw0KGgoAAAANSUhEUgAAAEAAAABACA
@@ -202172,7 +202164,7 @@ paths:
202172202164
attributes:
202173202165
components: []
202174202166
domain_prefix: status-page-us1
202175-
enabled: true
202167+
enabled: false
202176202168
name: Status Page US1
202177202169
subscriptions_enabled: true
202178202170
type: public
@@ -202433,7 +202425,7 @@ paths:
202433202425
permissions:
202434202426
- status_pages_settings_read
202435202427
patch:
202436-
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."
202428+
description: "Updates an existing status page's attributes. To publish and unpublish status pages, use the dedicated [publish](#publish-status-page) and [unpublish](#unpublish-status-page) status page endpoints."
202437202429
operationId: UpdateStatusPage
202438202430
parameters:
202439202431
- description: Whether to delete existing subscribers when updating a status page's type.
@@ -202466,7 +202458,6 @@ paths:
202466202458
company_logo: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAIKMMMM
202467202459
domain_prefix: status-page-us1-east
202468202460
email_header_image: data:image/png;base64,pQSLAw0KGgoAAAANSUhEUgAAAQ4AASJKFF
202469-
enabled: false
202470202461
favicon: data:image/png;base64,kWMRNw0KGgoAAAANSUhEUgAAAEAAAABACA
202471202462
name: Status Page US1 East
202472202463
subscriptions_enabled: false

services/status_pages/src/v2/StatusPagesApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5871,7 +5871,7 @@ export class StatusPagesApi {
58715871
}
58725872

58735873
/**
5874-
* 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.
5874+
* Updates an existing status page's attributes. To publish and unpublish status pages, use the dedicated [publish](#publish-status-page) and [unpublish](#unpublish-status-page) status page endpoints.
58755875
* @param param The request object
58765876
*/
58775877
public updateStatusPage(

services/status_pages/src/v2/models/CreateStatusPageRequestDataAttributes.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ export class CreateStatusPageRequestDataAttributes {
2424
* Base64-encoded image data included in email notifications sent to status page subscribers.
2525
*/
2626
"emailHeaderImage"?: string;
27-
/**
28-
* Whether the status page is enabled.
29-
*/
30-
"enabled"?: boolean;
3127
/**
3228
* Base64-encoded image data displayed in the browser tab.
3329
*/
@@ -88,10 +84,6 @@ export class CreateStatusPageRequestDataAttributes {
8884
baseName: "email_header_image",
8985
type: "string",
9086
},
91-
enabled: {
92-
baseName: "enabled",
93-
type: "boolean",
94-
},
9587
favicon: {
9688
baseName: "favicon",
9789
type: "string",

services/status_pages/src/v2/models/PatchStatusPageRequestDataAttributes.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ export class PatchStatusPageRequestDataAttributes {
1919
* The base64-encoded image data displayed in email notifications sent to status page subscribers.
2020
*/
2121
"emailHeaderImage"?: string;
22-
/**
23-
* Whether the status page is enabled.
24-
*/
25-
"enabled"?: boolean;
2622
/**
2723
* The base64-encoded image data displayed in the browser tab.
2824
*/
@@ -78,10 +74,6 @@ export class PatchStatusPageRequestDataAttributes {
7874
baseName: "email_header_image",
7975
type: "string",
8076
},
81-
enabled: {
82-
baseName: "enabled",
83-
type: "boolean",
84-
},
8577
favicon: {
8678
baseName: "favicon",
8779
type: "string",

0 commit comments

Comments
 (0)