UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

76 lines (75 loc) 2.41 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets information about a Flexible IP. */ /** @deprecated scaleway.index/getflexibleip.getFlexibleIp has been deprecated in favor of scaleway.elasticmetal/getip.getIp */ export declare function getFlexibleIp(args?: GetFlexibleIpArgs, opts?: pulumi.InvokeOptions): Promise<GetFlexibleIpResult>; /** * 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. */ /** @deprecated scaleway.index/getflexibleip.getFlexibleIp has been deprecated in favor of scaleway.elasticmetal/getip.getIp */ export declare function getFlexibleIpOutput(args?: GetFlexibleIpOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFlexibleIpResult>; /** * A collection of arguments for invoking getFlexibleIp. */ export interface GetFlexibleIpOutputArgs { flexibleIpId?: pulumi.Input<string>; /** * The IP address. * Only one of `ipAddress` and `ipId` should be specified. */ ipAddress?: pulumi.Input<string>; /** * (Defaults to provider `projectId`) The ID of the project the IP is in. */ projectId?: pulumi.Input<string>; }