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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 107 additions & 8 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1780,14 +1780,11 @@ components:
- INVITE
- EMBED
DashboardSummary:
description: Dashboard summary response.
properties:
dashboards:
description: List of dashboard definitions.
items:
$ref: "#/components/schemas/DashboardSummaryDefinition"
type: array
type: object
description: Dashboard summary response with API-versioned representations.
oneOf:
- $ref: "#/components/schemas/DashboardSummary_V1"
- $ref: "#/components/schemas/DashboardSummary_20270101"
x-datadog-api-versioned: true
DashboardSummaryDefinition:
description: Dashboard definition.
properties:
Expand Down Expand Up @@ -1825,6 +1822,108 @@ components:
description: URL of the dashboard.
type: string
type: object
DashboardSummaryDefinition_20270101:
description: Dashboard definition.
properties:
author:
$ref: "#/components/schemas/Creator"
created:
description: Date of creation of the dashboard.
format: date-time
nullable: true
readOnly: true
type: string
icon:
description: URL to the icon of the dashboard.
nullable: true
readOnly: true
type: string
id:
$ref: "#/components/schemas/DashboardSummaryID_20270101"
integration_id:
description: The short name of the integration.
nullable: true
readOnly: true
type: string
is_favorite:
description: Whether the dashboard is in the favorites.
readOnly: true
type: boolean
is_read_only:
description: Whether the dashboard is read only.
readOnly: true
type: boolean
is_shared:
description: Whether the dashboard is publicly shared.
readOnly: true
type: boolean
last_view_date:
description: Date when the dashboard was last viewed.
nullable: true
readOnly: true
type: string
modified:
description: Date of last edition of the dashboard.
format: date-time
nullable: true
readOnly: true
type: string
popularity:
description: Popularity of the dashboard.
format: int32
maximum: 5
readOnly: true
type: integer
tags:
description: List of team names representing ownership of the dashboard.
items:
description: The name of a Datadog team, formatted as `team:<name>`.
type: string
nullable: true
readOnly: true
type: array
title:
description: Title of the dashboard.
readOnly: true
type: string
type:
description: The type of the dashboard.
readOnly: true
type: string
url:
description: URL path to the dashboard.
readOnly: true
type: string
type: object
DashboardSummaryID_20270101:
description: ID of the dashboard.
oneOf:
- type: string
- format: int64
type: integer
DashboardSummary_20270101:
description: Dashboard summary response.
properties:
dashboards:
description: List of dashboard definitions.
items:
$ref: "#/components/schemas/DashboardSummaryDefinition_20270101"
type: array
total:
description: Number of dashboards.
format: int64
readOnly: true
type: integer
type: object
DashboardSummary_V1:
description: Dashboard summary response.
properties:
dashboards:
description: List of dashboard definitions.
items:
$ref: "#/components/schemas/DashboardSummaryDefinition"
type: array
type: object
DashboardTab:
description: Dashboard tab for organizing widgets.
properties:
Expand Down
8 changes: 4 additions & 4 deletions src/datadogV1/model/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ pub mod model_dashboard_bulk_action_data;
pub use self::model_dashboard_bulk_action_data::DashboardBulkActionData;
pub mod model_dashboard_resource_type;
pub use self::model_dashboard_resource_type::DashboardResourceType;
pub mod model_dashboard_summary;
pub use self::model_dashboard_summary::DashboardSummary;
pub mod model_dashboard_summary_definition;
pub use self::model_dashboard_summary_definition::DashboardSummaryDefinition;
pub mod model_dashboard_layout_type;
pub use self::model_dashboard_layout_type::DashboardLayoutType;
pub mod model_creator;
pub use self::model_creator::Creator;
pub mod model_dashboard_restore_request;
pub use self::model_dashboard_restore_request::DashboardRestoreRequest;
pub mod model_dashboard;
Expand Down Expand Up @@ -944,8 +944,6 @@ pub mod model_dashboard_list_list_response;
pub use self::model_dashboard_list_list_response::DashboardListListResponse;
pub mod model_dashboard_list;
pub use self::model_dashboard_list::DashboardList;
pub mod model_creator;
pub use self::model_creator::Creator;
pub mod model_dashboard_list_delete_response;
pub use self::model_dashboard_list_delete_response::DashboardListDeleteResponse;
pub mod model_shared_dashboard;
Expand Down Expand Up @@ -2328,3 +2326,5 @@ pub mod model_http_log_item;
pub use self::model_http_log_item::HTTPLogItem;
pub mod model_http_log_error;
pub use self::model_http_log_error::HTTPLogError;
pub mod model_dashboard_summary;
pub use self::model_dashboard_summary::DashboardSummary;
Loading
Loading