import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
 * Use this data source to get information about a specific [Cache Variable](https://support.pagerduty.com/docs/event-orchestration-variables) for a Global Event Orchestration.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as pagerduty from "@pulumi/pagerduty";
 *
 * const eventOrchestration = new pagerduty.EventOrchestration("event_orchestration", {name: "Test Event Orchestration"});
 * const cacheVariable = pagerduty.getEventOrchestrationGlobalCacheVariableOutput({
 *     eventOrchestration: eventOrchestration.id,
 *     name: "example_cache_variable",
 * });
 * ```
 */
export declare function getEventOrchestrationGlobalCacheVariable(args: GetEventOrchestrationGlobalCacheVariableArgs, opts?: pulumi.InvokeOptions): Promise<GetEventOrchestrationGlobalCacheVariableResult>;
/**
 * A collection of arguments for invoking getEventOrchestrationGlobalCacheVariable.
 */
export interface GetEventOrchestrationGlobalCacheVariableArgs {
    /**
     * ID of the Global Event Orchestration to which this Cache Variable belongs.
     */
    eventOrchestration: string;
    /**
     * ID of the Cache Variable associated with the Global Event Orchestration. Specify either `id` or `name`. If both are specified `id` takes precedence.
     */
    id?: string;
    /**
     * Name of the Cache Variable associated with the Global Event Orchestration. Specify either `id` or `name`. If both are specified `id` takes precedence.
     */
    name?: string;
}
/**
 * A collection of values returned by getEventOrchestrationGlobalCacheVariable.
 */
export interface GetEventOrchestrationGlobalCacheVariableResult {
    /**
     * Conditions to be evaluated in order to determine whether or not to update the Cache Variable's stored value. This attribute can only be used when `configuration.0.type` is `recentValue` or `triggerEventCount`.
     */
    readonly conditions: outputs.GetEventOrchestrationGlobalCacheVariableCondition[];
    /**
     * A configuration object to define what and how values will be stored in the Cache Variable.
     */
    readonly configurations: outputs.GetEventOrchestrationGlobalCacheVariableConfiguration[];
    /**
     * Indicates whether the Cache Variable is disabled and would therefore not be evaluated.
     */
    readonly disabled: boolean;
    readonly eventOrchestration: string;
    readonly id?: string;
    readonly name?: string;
}
/**
 * Use this data source to get information about a specific [Cache Variable](https://support.pagerduty.com/docs/event-orchestration-variables) for a Global Event Orchestration.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as pagerduty from "@pulumi/pagerduty";
 *
 * const eventOrchestration = new pagerduty.EventOrchestration("event_orchestration", {name: "Test Event Orchestration"});
 * const cacheVariable = pagerduty.getEventOrchestrationGlobalCacheVariableOutput({
 *     eventOrchestration: eventOrchestration.id,
 *     name: "example_cache_variable",
 * });
 * ```
 */
export declare function getEventOrchestrationGlobalCacheVariableOutput(args: GetEventOrchestrationGlobalCacheVariableOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEventOrchestrationGlobalCacheVariableResult>;
/**
 * A collection of arguments for invoking getEventOrchestrationGlobalCacheVariable.
 */
export interface GetEventOrchestrationGlobalCacheVariableOutputArgs {
    /**
     * ID of the Global Event Orchestration to which this Cache Variable belongs.
     */
    eventOrchestration: pulumi.Input<string>;
    /**
     * ID of the Cache Variable associated with the Global Event Orchestration. Specify either `id` or `name`. If both are specified `id` takes precedence.
     */
    id?: pulumi.Input<string | undefined>;
    /**
     * Name of the Cache Variable associated with the Global Event Orchestration. Specify either `id` or `name`. If both are specified `id` takes precedence.
     */
    name?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=getEventOrchestrationGlobalCacheVariable.d.ts.map