import * as pulumi from "@pulumi/pulumi"; /** * Gets information about a Flexible IP. */ export declare function getFlexibleIp(args?: GetFlexibleIpArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFlexibleIp. */ export interface GetFlexibleIpArgs { flexibleIpId?: string; /** * The IP address. * Only one of `ipAddress` and `ipId` should be specified. */ ipAddress?: string; /** * (Defaults to provider `projectId`) The ID of the project the IP is in. */ projectId?: string; } /** * A collection of values returned by getFlexibleIp. */ export interface GetFlexibleIpResult { readonly createdAt: string; readonly description: string; readonly flexibleIpId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ipAddress?: string; readonly isIpv6: boolean; /** * (Defaults to provider `organizationId`) The ID of the organization the IP is in. */ readonly organizationId: string; /** * (Defaults to provider `projectId`) The ID of the project the IP is in. */ readonly projectId: string; /** * The reverse domain associated with this IP. */ readonly reverse: string; /** * The associated server ID if any */ readonly serverId: string; readonly status: string; readonly tags: string[]; readonly updatedAt: string; readonly zone: string; } /** * Gets information about a Flexible IP. */ export declare function getFlexibleIpOutput(args?: GetFlexibleIpOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFlexibleIp. */ export interface GetFlexibleIpOutputArgs { flexibleIpId?: pulumi.Input; /** * The IP address. * Only one of `ipAddress` and `ipId` should be specified. */ ipAddress?: pulumi.Input; /** * (Defaults to provider `projectId`) The ID of the project the IP is in. */ projectId?: pulumi.Input; }