import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of clbs
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 * import * as volcengine from "@volcengine/pulumi";
 *
 * const fooZones = volcengine.ecs.getZones({});
 * const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
 *     vpcName: "acc-test-vpc",
 *     cidrBlock: "172.16.0.0/16",
 * });
 * const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
 *     subnetName: "acc-test-subnet",
 *     cidrBlock: "172.16.0.0/24",
 *     zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
 *     vpcId: fooVpc.id,
 * });
 * const fooClb: volcengine.clb.Clb[] = [];
 * for (const range = {value: 0}; range.value < 3; range.value++) {
 *     fooClb.push(new volcengine.clb.Clb(`fooClb-${range.value}`, {
 *         type: "public",
 *         subnetId: fooSubnet.id,
 *         loadBalancerSpec: "small_1",
 *         description: "acc-test-demo",
 *         loadBalancerName: `acc-test-clb-${range.value}`,
 *         loadBalancerBillingType: "PostPaid",
 *         eipBillingConfig: {
 *             isp: "BGP",
 *             eipBillingType: "PostPaidByBandwidth",
 *             bandwidth: 1,
 *         },
 *         tags: [{
 *             key: "k1",
 *             value: "v1",
 *         }],
 *     }));
 * }
 * const fooClbs = volcengine.clb.getClbsOutput({
 *     ids: fooClb.map(__item => __item.id),
 * });
 * ```
 */
/** @deprecated volcengine.clb.Clbs has been deprecated in favor of volcengine.clb.getClbs */
export declare function clbs(args?: ClbsArgs, opts?: pulumi.InvokeOptions): Promise<ClbsResult>;
/**
 * A collection of arguments for invoking Clbs.
 */
export interface ClbsArgs {
    /**
     * The address IP version of the CLB.
     */
    addressIpVersion?: string;
    /**
     * The public ip address of the Clb.
     */
    eipAddress?: string;
    /**
     * The private ip address of the Clb.
     */
    eniAddress?: string;
    /**
     * A list of Clb IDs.
     */
    ids?: string[];
    /**
     * The IDs of the backend server of the CLB.
     */
    instanceIds?: string[];
    /**
     * The IP address of the backend server of the CLB.
     */
    instanceIps?: string[];
    /**
     * The name of the Clb.
     */
    loadBalancerName?: string;
    /**
     * The master zone ID of the CLB.
     */
    masterZoneId?: string;
    /**
     * A Name Regex of Clb.
     */
    nameRegex?: string;
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
    /**
     * The ProjectName of Clb.
     */
    projectName?: string;
    /**
     * The status of the CLB.
     */
    status?: string;
    /**
     * Tags.
     */
    tags?: inputs.clb.ClbsTag[];
    /**
     * The network type of the CLB.
     */
    type?: string;
    /**
     * The id of the VPC.
     */
    vpcId?: string;
}
/**
 * A collection of values returned by Clbs.
 */
export interface ClbsResult {
    /**
     * The address ip version of the Clb.
     */
    readonly addressIpVersion?: string;
    /**
     * The collection of Clb query.
     */
    readonly clbs: outputs.clb.ClbsClb[];
    /**
     * The public IPv4 address bound to the private IPv4 address.
     */
    readonly eipAddress?: string;
    /**
     * The private IPv4 address of the CLB instance.
     */
    readonly eniAddress?: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly ids?: string[];
    readonly instanceIds?: string[];
    readonly instanceIps?: string[];
    /**
     * The name of the Clb.
     */
    readonly loadBalancerName?: string;
    /**
     * The master zone ID of the CLB.
     */
    readonly masterZoneId?: string;
    readonly nameRegex?: string;
    readonly outputFile?: string;
    /**
     * The ProjectName of the Clb.
     */
    readonly projectName?: string;
    /**
     * The status of the Clb.
     */
    readonly status?: string;
    /**
     * Tags.
     */
    readonly tags?: outputs.clb.ClbsTag[];
    /**
     * The total count of Clb query.
     */
    readonly totalCount: number;
    /**
     * The type of the Clb.
     */
    readonly type?: string;
    /**
     * The vpc ID of the Clb.
     */
    readonly vpcId?: string;
}
/**
 * Use this data source to query detailed information of clbs
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 * import * as volcengine from "@volcengine/pulumi";
 *
 * const fooZones = volcengine.ecs.getZones({});
 * const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
 *     vpcName: "acc-test-vpc",
 *     cidrBlock: "172.16.0.0/16",
 * });
 * const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
 *     subnetName: "acc-test-subnet",
 *     cidrBlock: "172.16.0.0/24",
 *     zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
 *     vpcId: fooVpc.id,
 * });
 * const fooClb: volcengine.clb.Clb[] = [];
 * for (const range = {value: 0}; range.value < 3; range.value++) {
 *     fooClb.push(new volcengine.clb.Clb(`fooClb-${range.value}`, {
 *         type: "public",
 *         subnetId: fooSubnet.id,
 *         loadBalancerSpec: "small_1",
 *         description: "acc-test-demo",
 *         loadBalancerName: `acc-test-clb-${range.value}`,
 *         loadBalancerBillingType: "PostPaid",
 *         eipBillingConfig: {
 *             isp: "BGP",
 *             eipBillingType: "PostPaidByBandwidth",
 *             bandwidth: 1,
 *         },
 *         tags: [{
 *             key: "k1",
 *             value: "v1",
 *         }],
 *     }));
 * }
 * const fooClbs = volcengine.clb.getClbsOutput({
 *     ids: fooClb.map(__item => __item.id),
 * });
 * ```
 */
/** @deprecated volcengine.clb.Clbs has been deprecated in favor of volcengine.clb.getClbs */
export declare function clbsOutput(args?: ClbsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<ClbsResult>;
/**
 * A collection of arguments for invoking Clbs.
 */
export interface ClbsOutputArgs {
    /**
     * The address IP version of the CLB.
     */
    addressIpVersion?: pulumi.Input<string>;
    /**
     * The public ip address of the Clb.
     */
    eipAddress?: pulumi.Input<string>;
    /**
     * The private ip address of the Clb.
     */
    eniAddress?: pulumi.Input<string>;
    /**
     * A list of Clb IDs.
     */
    ids?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * The IDs of the backend server of the CLB.
     */
    instanceIds?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * The IP address of the backend server of the CLB.
     */
    instanceIps?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * The name of the Clb.
     */
    loadBalancerName?: pulumi.Input<string>;
    /**
     * The master zone ID of the CLB.
     */
    masterZoneId?: pulumi.Input<string>;
    /**
     * A Name Regex of Clb.
     */
    nameRegex?: pulumi.Input<string>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
    /**
     * The ProjectName of Clb.
     */
    projectName?: pulumi.Input<string>;
    /**
     * The status of the CLB.
     */
    status?: pulumi.Input<string>;
    /**
     * Tags.
     */
    tags?: pulumi.Input<pulumi.Input<inputs.clb.ClbsTagArgs>[]>;
    /**
     * The network type of the CLB.
     */
    type?: pulumi.Input<string>;
    /**
     * The id of the VPC.
     */
    vpcId?: pulumi.Input<string>;
}
