import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of tls describe traces
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const example = volcengine.tls.getDescribeTraces({
 *     traceId: "b4de47438f9d052ca71106bb9bace34e",
 *     traceInstanceId: "ac368174-2353-4e5d-859d-84c8bd255590",
 * });
 * ```
 */
/** @deprecated volcengine.tls.DescribeTraces has been deprecated in favor of volcengine.tls.getDescribeTraces */
export declare function describeTraces(args: DescribeTracesArgs, opts?: pulumi.InvokeOptions): Promise<DescribeTracesResult>;
/**
 * A collection of arguments for invoking DescribeTraces.
 */
export interface DescribeTracesArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * Trace ID.
     */
    traceId: string;
    /**
     * Trace instance ID.
     */
    traceInstanceId: string;
}
/**
 * A collection of values returned by DescribeTraces.
 */
export interface DescribeTracesResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly outputFile?: string;
    /**
     * The total count of tls trace query.
     */
    readonly totalCount: number;
    /**
     * Trace ID.
     */
    readonly traceId: string;
    readonly traceInstanceId: string;
    /**
     * The collection of tls trace query.
     */
    readonly traces: outputs.tls.DescribeTracesTrace[];
}
/**
 * Use this data source to query detailed information of tls describe traces
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const example = volcengine.tls.getDescribeTraces({
 *     traceId: "b4de47438f9d052ca71106bb9bace34e",
 *     traceInstanceId: "ac368174-2353-4e5d-859d-84c8bd255590",
 * });
 * ```
 */
/** @deprecated volcengine.tls.DescribeTraces has been deprecated in favor of volcengine.tls.getDescribeTraces */
export declare function describeTracesOutput(args: DescribeTracesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<DescribeTracesResult>;
/**
 * A collection of arguments for invoking DescribeTraces.
 */
export interface DescribeTracesOutputArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * Trace ID.
     */
    traceId: pulumi.Input<string>;
    /**
     * Trace instance ID.
     */
    traceInstanceId: pulumi.Input<string>;
}
