UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

72 lines (71 loc) 2.31 kB
/** * 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 { TreeMapColorBy } from "./TreeMapColorBy"; import { TreeMapGroupBy } from "./TreeMapGroupBy"; import { TreeMapSizeBy } from "./TreeMapSizeBy"; import { TreeMapWidgetDefinitionType } from "./TreeMapWidgetDefinitionType"; import { TreeMapWidgetRequest } from "./TreeMapWidgetRequest"; import { WidgetCustomLink } from "./WidgetCustomLink"; import { WidgetTime } from "./WidgetTime"; import { AttributeTypeMap } from "../../datadog-api-client-common/util"; /** * The treemap visualization enables you to display hierarchical and nested data. It is well suited for queries that describe part-whole relationships, such as resource usage by availability zone, data center, or team. */ export declare class TreeMapWidgetDefinition { /** * (deprecated) The attribute formerly used to determine color in the widget. */ "colorBy"?: TreeMapColorBy; /** * List of custom links. */ "customLinks"?: Array<WidgetCustomLink>; /** * (deprecated) The attribute formerly used to group elements in the widget. */ "groupBy"?: TreeMapGroupBy; /** * List of treemap widget requests. */ "requests": [TreeMapWidgetRequest]; /** * (deprecated) The attribute formerly used to determine size in the widget. */ "sizeBy"?: TreeMapSizeBy; /** * Time setting for the widget. */ "time"?: WidgetTime; /** * Title of your widget. */ "title"?: string; /** * Type of the treemap widget. */ "type": TreeMapWidgetDefinitionType; /** * 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(); }