import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Gets information about multiple Load Balancers. * * For more information, see the [main documentation](https://www.scaleway.com/en/docs/network/load-balancer/concepts/#load-balancers) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-load-balancer-list-load-balancers). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myKey = scaleway.getLbs({ * name: "foobar", * zone: "fr-par-2", * }); * const lbsByTags = scaleway.getLbs({ * tags: ["a tag"], * }); * ``` */ export declare function getLbs(args?: GetLbsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLbs. */ export interface GetLbsArgs { /** * The Load Balancer name to filter for. Load Balancers with a matching name are listed. */ name?: string; /** * The ID of the Project the Load Balancer is associated with. */ projectId?: string; /** * List of tags to filter for. Load Balancers with these exact tags are listed. */ tags?: string[]; /** * `zone`) The zone in which the Load Balancers exist. */ zone?: string; } /** * A collection of values returned by getLbs. */ export interface GetLbsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of retrieved Load Balancers */ readonly lbs: outputs.GetLbsLb[]; /** * The name of the Load Balancer. */ readonly name?: string; /** * The ID of the Organization the Load Balancer is associated with. */ readonly organizationId: string; /** * The ID of the Project the Load Balancer is associated with. */ readonly projectId: string; /** * The tags associated with the Load Balancer. */ readonly tags?: string[]; /** * The zone of the Load Balancer. */ readonly zone: string; } /** * Gets information about multiple Load Balancers. * * For more information, see the [main documentation](https://www.scaleway.com/en/docs/network/load-balancer/concepts/#load-balancers) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-load-balancer-list-load-balancers). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myKey = scaleway.getLbs({ * name: "foobar", * zone: "fr-par-2", * }); * const lbsByTags = scaleway.getLbs({ * tags: ["a tag"], * }); * ``` */ export declare function getLbsOutput(args?: GetLbsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLbs. */ export interface GetLbsOutputArgs { /** * The Load Balancer name to filter for. Load Balancers with a matching name are listed. */ name?: pulumi.Input; /** * The ID of the Project the Load Balancer is associated with. */ projectId?: pulumi.Input; /** * List of tags to filter for. Load Balancers with these exact tags are listed. */ tags?: pulumi.Input[]>; /** * `zone`) The zone in which the Load Balancers exist. */ zone?: pulumi.Input; }