@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
56 lines (55 loc) • 1.67 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 { ActionQueryProperties } from "./ActionQueryProperties";
import { ActionQueryType } from "./ActionQueryType";
import { AppBuilderEvent } from "./AppBuilderEvent";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* An action query. This query type is used to trigger an action, such as sending a HTTP request.
*/
export declare class ActionQuery {
/**
* Events to listen for downstream of the action query.
*/
"events"?: Array<AppBuilderEvent>;
/**
* The ID of the action query.
*/
"id": string;
/**
* A unique identifier for this action query. This name is also used to access the query's result throughout the app.
*/
"name": string;
/**
* The properties of the action query.
*/
"properties": ActionQueryProperties;
/**
* The action query type.
*/
"type": ActionQueryType;
/**
* 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();
}