UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

70 lines 2.62 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets information about a Public Gateway public flexible IP address. * * For further information, please see the [API documentation](https://www.scaleway.com/en/developers/api/public-gateway/#path-ips-list-ips). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumiverse/scaleway"; * * const main = new scaleway.network.PublicGatewayIp("main", {}); * const ipById = scaleway.network.getPublicGatewayIpOutput({ * ipId: main.id, * }); * ``` */ /** @deprecated scaleway.index/getvpcpublicgatewayip.getVpcPublicGatewayIp has been deprecated in favor of scaleway.network/getpublicgatewayip.getPublicGatewayIp */ export declare function getVpcPublicGatewayIp(args?: GetVpcPublicGatewayIpArgs, opts?: pulumi.InvokeOptions): Promise<GetVpcPublicGatewayIpResult>; /** * A collection of arguments for invoking getVpcPublicGatewayIp. */ export interface GetVpcPublicGatewayIpArgs { ipId?: string; } /** * A collection of values returned by getVpcPublicGatewayIp. */ export interface GetVpcPublicGatewayIpResult { readonly address: string; readonly createdAt: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ipId?: string; readonly organizationId: string; readonly projectId: string; readonly reverse: string; readonly tags: string[]; readonly updatedAt: string; readonly zone: string; } /** * Gets information about a Public Gateway public flexible IP address. * * For further information, please see the [API documentation](https://www.scaleway.com/en/developers/api/public-gateway/#path-ips-list-ips). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumiverse/scaleway"; * * const main = new scaleway.network.PublicGatewayIp("main", {}); * const ipById = scaleway.network.getPublicGatewayIpOutput({ * ipId: main.id, * }); * ``` */ /** @deprecated scaleway.index/getvpcpublicgatewayip.getVpcPublicGatewayIp has been deprecated in favor of scaleway.network/getpublicgatewayip.getPublicGatewayIp */ export declare function getVpcPublicGatewayIpOutput(args?: GetVpcPublicGatewayIpOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVpcPublicGatewayIpResult>; /** * A collection of arguments for invoking getVpcPublicGatewayIp. */ export interface GetVpcPublicGatewayIpOutputArgs { ipId?: pulumi.Input<string | undefined>; } //# sourceMappingURL=getVpcPublicGatewayIp.d.ts.map