import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of tls rule appliers
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getRuleAppliers({
 *     hostGroupId: "fbea6619-7b0c-40f3-ac7e-45c63e3f676e",
 * });
 * ```
 */
/** @deprecated volcengine.tls.RuleAppliers has been deprecated in favor of volcengine.tls.getRuleAppliers */
export declare function ruleAppliers(args: RuleAppliersArgs, opts?: pulumi.InvokeOptions): Promise<RuleAppliersResult>;
/**
 * A collection of arguments for invoking RuleAppliers.
 */
export interface RuleAppliersArgs {
    /**
     * The host group id.
     */
    hostGroupId: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
}
/**
 * A collection of values returned by RuleAppliers.
 */
export interface RuleAppliersResult {
    readonly hostGroupId: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly outputFile?: string;
    /**
     * The rules list.
     */
    readonly rules: outputs.tls.RuleAppliersRule[];
    /**
     * The total count of query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of tls rule appliers
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getRuleAppliers({
 *     hostGroupId: "fbea6619-7b0c-40f3-ac7e-45c63e3f676e",
 * });
 * ```
 */
/** @deprecated volcengine.tls.RuleAppliers has been deprecated in favor of volcengine.tls.getRuleAppliers */
export declare function ruleAppliersOutput(args: RuleAppliersOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<RuleAppliersResult>;
/**
 * A collection of arguments for invoking RuleAppliers.
 */
export interface RuleAppliersOutputArgs {
    /**
     * The host group id.
     */
    hostGroupId: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
}
