UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

68 lines (67 loc) 2.02 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 { MonitorUserTemplateTemplateVariablesItems } from "./MonitorUserTemplateTemplateVariablesItems"; import { AttributeTypeMap } from "../../datadog-api-client-common/util"; /** * A simplified version of a monitor user template. */ export declare class SimpleMonitorUserTemplate { /** * The created timestamp of the template. */ "created"?: Date; /** * A brief description of the monitor user template. */ "description"?: string; /** * The unique identifier. The initial version will match the template ID. */ "id"?: string; /** * A valid monitor definition in the same format as the [V1 Monitor API](https://docs.datadoghq.com/api/latest/monitors/#create-a-monitor). */ "monitorDefinition"?: { [key: string]: any; }; /** * The definition of `MonitorUserTemplateTags` object. */ "tags"?: Array<string>; /** * The definition of `MonitorUserTemplateTemplateVariables` object. */ "templateVariables"?: Array<MonitorUserTemplateTemplateVariablesItems>; /** * The title of the monitor user template. */ "title"?: string; /** * The version of the monitor user template. */ "version"?: number; /** * 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(); }