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",
 * });
 * ```
 */
export declare function getDescribeTraces(args: GetDescribeTracesArgs, opts?: pulumi.InvokeOptions): Promise<GetDescribeTracesResult>;
/**
 * A collection of arguments for invoking getDescribeTraces.
 */
export interface GetDescribeTracesArgs {
    /**
     * 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 getDescribeTraces.
 */
export interface GetDescribeTracesResult {
    /**
     * 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.GetDescribeTracesTrace[];
}
/**
 * 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",
 * });
 * ```
 */
export declare function getDescribeTracesOutput(args: GetDescribeTracesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDescribeTracesResult>;
/**
 * A collection of arguments for invoking getDescribeTraces.
 */
export interface GetDescribeTracesOutputArgs {
    /**
     * 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>;
}
