import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Gets information about multiple Load Balancer IP addresses. * * For more information, see the [main documentation](https://www.scaleway.com/en/docs/network/load-balancer/how-to/create-manage-flex-ips/) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-ip-addresses-list-ip-addresses). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myKey = scaleway.getLbIps({ * ipCidrRange: "0.0.0.0/0", * zone: "fr-par-2", * }); * const ipsByTagsAndType = scaleway.getLbIps({ * ipType: "ipv4", * tags: ["a tag"], * }); * ``` */ export declare function getLbIps(args?: GetLbIpsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLbIps. */ export interface GetLbIpsArgs { /** * The IP CIDR range to filter for. IPs within a matching CIDR block are listed. */ ipCidrRange?: string; /** * The IP type used as a filter. */ ipType?: string; /** * The ID of the Project the Load Balancer is associated with. */ projectId?: string; /** * List of tags used as filter. IPs with these exact tags are listed. */ tags?: string[]; /** * `zone`) The zone in which the IPs exist. */ zone?: string; } /** * A collection of values returned by getLbIps. */ export interface GetLbIpsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ipCidrRange?: string; readonly ipType?: string; /** * List of retrieved IPs */ readonly ips: outputs.GetLbIpsIp[]; /** * 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; readonly tags?: string[]; /** * The zone of the Load Balancer. */ readonly zone: string; } /** * Gets information about multiple Load Balancer IP addresses. * * For more information, see the [main documentation](https://www.scaleway.com/en/docs/network/load-balancer/how-to/create-manage-flex-ips/) or [API documentation](https://www.scaleway.com/en/developers/api/load-balancer/zoned-api/#path-ip-addresses-list-ip-addresses). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const myKey = scaleway.getLbIps({ * ipCidrRange: "0.0.0.0/0", * zone: "fr-par-2", * }); * const ipsByTagsAndType = scaleway.getLbIps({ * ipType: "ipv4", * tags: ["a tag"], * }); * ``` */ export declare function getLbIpsOutput(args?: GetLbIpsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLbIps. */ export interface GetLbIpsOutputArgs { /** * The IP CIDR range to filter for. IPs within a matching CIDR block are listed. */ ipCidrRange?: pulumi.Input; /** * The IP type used as a filter. */ ipType?: pulumi.Input; /** * The ID of the Project the Load Balancer is associated with. */ projectId?: pulumi.Input; /** * List of tags used as filter. IPs with these exact tags are listed. */ tags?: pulumi.Input[]>; /** * `zone`) The zone in which the IPs exist. */ zone?: pulumi.Input; }