import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of tls indexes
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getIndexes({
 *     topicId: "c36ed436-84f1-467a-b00e-ba504db753ca",
 * });
 * ```
 */
export declare function getIndexes(args: GetIndexesArgs, opts?: pulumi.InvokeOptions): Promise<GetIndexesResult>;
/**
 * A collection of arguments for invoking getIndexes.
 */
export interface GetIndexesArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The topic id of tls index.
     */
    topicId: string;
}
/**
 * A collection of values returned by getIndexes.
 */
export interface GetIndexesResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly outputFile?: string;
    /**
     * The collection of tls index query.
     */
    readonly tlsIndexes: outputs.tls.GetIndexesTlsIndex[];
    /**
     * The topic id of the tls index.
     */
    readonly topicId: string;
    /**
     * The total count of tls index query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of tls indexes
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getIndexes({
 *     topicId: "c36ed436-84f1-467a-b00e-ba504db753ca",
 * });
 * ```
 */
export declare function getIndexesOutput(args: GetIndexesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetIndexesResult>;
/**
 * A collection of arguments for invoking getIndexes.
 */
export interface GetIndexesOutputArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * The topic id of tls index.
     */
    topicId: pulumi.Input<string>;
}
