Skip to content

Commit

Permalink
chore: self mutation
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions <[email protected]>
  • Loading branch information
github-actions committed Feb 7, 2024
1 parent 004df37 commit 4475397
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
8 changes: 5 additions & 3 deletions API.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions src/Dashboard.generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ export interface Dashboard {
readonly "description"?: string;
/** ID of the dashboard. */
readonly "id"?: string;
/** Whether this dashboard is read-only. If True, only the author and admins can make changes to it. Prefer using `restricted_roles` to manage write authorization. */
/**
* Whether this dashboard is read-only. If True, only the author and admins can make changes to it.
*
* This property is deprecated; please use the [Restriction Policies API](https://docs.datadoghq.com/api/latest/restriction-policies/) instead to manage write authorization for individual dashboards.
*/
readonly "isReadOnly"?: boolean;
/** Layout type of the dashboard. */
readonly "layoutType": "ordered" | "free" | UnparsedObject;
Expand All @@ -23,7 +27,11 @@ export interface Dashboard {
* widgets should not have layouts.
*/
readonly "reflowType"?: "auto" | "fixed" | UnparsedObject;
/** A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard. */
/**
* A list of role identifiers. Only the author and users associated with at least one of these roles can edit this dashboard.
*
* This property is deprecated; please use the [Restriction Policies API](https://docs.datadoghq.com/api/latest/restriction-policies/) instead to manage write authorization for individual dashboards.
*/
readonly "restrictedRoles"?: string[];
/** List of team names representing ownership of a dashboard. */
readonly "tags"?: string[];
Expand Down

0 comments on commit 4475397

Please sign in to comment.