import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of tls rule bound host groups
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getRuleBoundHostGroups({
 *     ruleId: "83ac687a-0e2b-4788-b626-3dce18498740",
 * });
 * ```
 */
/** @deprecated volcengine.tls.RuleBoundHostGroups has been deprecated in favor of volcengine.tls.getRuleBoundHostGroups */
export declare function ruleBoundHostGroups(args: RuleBoundHostGroupsArgs, opts?: pulumi.InvokeOptions): Promise<RuleBoundHostGroupsResult>;
/**
 * A collection of arguments for invoking RuleBoundHostGroups.
 */
export interface RuleBoundHostGroupsArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The ID of the rule.
     */
    ruleId: string;
}
/**
 * A collection of values returned by RuleBoundHostGroups.
 */
export interface RuleBoundHostGroupsResult {
    /**
     * The collection of Host Group query.
     */
    readonly hostGroups: outputs.tls.RuleBoundHostGroupsHostGroup[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly outputFile?: string;
    readonly ruleId: string;
    /**
     * The total count of query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of tls rule bound host groups
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.tls.getRuleBoundHostGroups({
 *     ruleId: "83ac687a-0e2b-4788-b626-3dce18498740",
 * });
 * ```
 */
/** @deprecated volcengine.tls.RuleBoundHostGroups has been deprecated in favor of volcengine.tls.getRuleBoundHostGroups */
export declare function ruleBoundHostGroupsOutput(args: RuleBoundHostGroupsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<RuleBoundHostGroupsResult>;
/**
 * A collection of arguments for invoking RuleBoundHostGroups.
 */
export interface RuleBoundHostGroupsOutputArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * The ID of the rule.
     */
    ruleId: pulumi.Input<string>;
}
