UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

76 lines (75 loc) 2.33 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 { SyntheticsGlobalVariableAttributes } from "./SyntheticsGlobalVariableAttributes"; import { SyntheticsGlobalVariableParseTestOptions } from "./SyntheticsGlobalVariableParseTestOptions"; import { SyntheticsGlobalVariableValue } from "./SyntheticsGlobalVariableValue"; import { AttributeTypeMap } from "../../datadog-api-client-common/util"; /** * Synthetic global variable. */ export declare class SyntheticsGlobalVariable { /** * Attributes of the global variable. */ "attributes"?: SyntheticsGlobalVariableAttributes; /** * Description of the global variable. */ "description": string; /** * Unique identifier of the global variable. */ "id"?: string; /** * Determines if the global variable is a FIDO variable. */ "isFido"?: boolean; /** * Determines if the global variable is a TOTP/MFA variable. */ "isTotp"?: boolean; /** * Name of the global variable. Unique across Synthetic global variables. */ "name": string; /** * Parser options to use for retrieving a Synthetic global variable from a Synthetic test. Used in conjunction with `parse_test_public_id`. */ "parseTestOptions"?: SyntheticsGlobalVariableParseTestOptions; /** * A Synthetic test ID to use as a test to generate the variable value. */ "parseTestPublicId"?: string; /** * Tags of the global variable. */ "tags": Array<string>; /** * Value of the global variable. */ "value": SyntheticsGlobalVariableValue; /** * 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(); }