@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
91 lines (90 loc) • 2.17 kB
TypeScript
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
import { Creator } from "./Creator";
import { DashboardType } from "./DashboardType";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* A dashboard within a list.
*/
export declare class DashboardListItem {
/**
* Creator of the object.
*/
"author"?: Creator;
/**
* Date of creation of the dashboard.
*/
"created"?: Date;
/**
* URL to the icon of the dashboard.
*/
"icon"?: string;
/**
* ID of the dashboard.
*/
"id": string;
/**
* The short name of the integration.
*/
"integrationId"?: string;
/**
* Whether or not the dashboard is in the favorites.
*/
"isFavorite"?: boolean;
/**
* Whether or not the dashboard is read only.
*/
"isReadOnly"?: boolean;
/**
* Whether the dashboard is publicly shared or not.
*/
"isShared"?: boolean;
/**
* Date of last edition of the dashboard.
*/
"modified"?: Date;
/**
* Popularity of the dashboard.
*/
"popularity"?: number;
/**
* List of team names representing ownership of a dashboard.
*/
"tags"?: Array<string>;
/**
* Title of the dashboard.
*/
"title"?: string;
/**
* The type of the dashboard.
*/
"type": DashboardType;
/**
* URL path to the dashboard.
*/
"url"?: string;
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
"additionalProperties"?: {
[key: string]: any;
};
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap;
/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap;
constructor();
}