import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets a trace configuration override. */ export declare function getOverride(args: GetOverrideArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetOverrideArgs { environmentId: string; organizationId: string; overrideId: string; } export interface GetOverrideResult { /** * ID of the API proxy that will have its trace configuration overridden. */ readonly apiProxy: string; /** * ID of the trace configuration override specified as a system-generated UUID. */ readonly name: string; /** * Trace configuration to override. */ readonly samplingConfig: outputs.apigee.v1.GoogleCloudApigeeV1TraceSamplingConfigResponse; } /** * Gets a trace configuration override. */ export declare function getOverrideOutput(args: GetOverrideOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetOverrideOutputArgs { environmentId: pulumi.Input; organizationId: pulumi.Input; overrideId: pulumi.Input; }