import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Provides details about multiple Hetzner Cloud Primary IPs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as hcloud from "@pulumi/hcloud"; * * const ip2 = hcloud.getPrimaryIps({ * withSelector: "key=value", * }); * ``` */ export declare function getPrimaryIps(args?: GetPrimaryIpsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPrimaryIps. */ export interface GetPrimaryIpsArgs { id?: string; /** * [Label selector](https://docs.hetzner.cloud/reference/cloud#label-selector) */ withSelector?: string; } /** * A collection of values returned by getPrimaryIps. */ export interface GetPrimaryIpsResult { readonly id: string; /** * (list) List of all matching primary ips. See `data.hcloud_primary_ip` for schema. */ readonly primaryIps: outputs.GetPrimaryIpsPrimaryIp[]; readonly withSelector?: string; } /** * Provides details about multiple Hetzner Cloud Primary IPs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as hcloud from "@pulumi/hcloud"; * * const ip2 = hcloud.getPrimaryIps({ * withSelector: "key=value", * }); * ``` */ export declare function getPrimaryIpsOutput(args?: GetPrimaryIpsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPrimaryIps. */ export interface GetPrimaryIpsOutputArgs { id?: pulumi.Input; /** * [Label selector](https://docs.hetzner.cloud/reference/cloud#label-selector) */ withSelector?: pulumi.Input; }