import * as pulumi from "@pulumi/pulumi"; /** * Gets information about a Public Gateway. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@ediri/scaleway"; * import * as scaleway from "@pulumi/scaleway"; * * const main = new scaleway.VpcPublicGateway("main", { * type: "VPC-GW-S", * zone: "nl-ams-1", * }); * const pgTestByName = scaleway.getVpcPublicGatewayOutput({ * name: main.name, * zone: "nl-ams-1", * }); * const pgTestById = scaleway.getVpcPublicGatewayOutput({ * publicGatewayId: main.id, * }); * ``` */ export declare function getVpcPublicGateway(args?: GetVpcPublicGatewayArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVpcPublicGateway. */ export interface GetVpcPublicGatewayArgs { /** * Exact name of the Public Gateway. */ name?: string; /** * The ID of the Project the Public Gateway is associated with. */ projectId?: string; publicGatewayId?: string; /** * `zone`) The Public Gateway's zone. */ zone?: string; } /** * A collection of values returned by getVpcPublicGateway. */ export interface GetVpcPublicGatewayResult { readonly bastionEnabled: boolean; readonly bastionPort: number; readonly createdAt: string; readonly enableSmtp: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ipId: string; readonly name?: string; readonly organizationId: string; readonly projectId?: string; readonly publicGatewayId?: string; readonly refreshSshKeys: string; readonly status: string; readonly tags: string[]; readonly type: string; readonly updatedAt: string; readonly upstreamDnsServers: string[]; readonly zone?: string; } /** * Gets information about a Public Gateway. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@ediri/scaleway"; * import * as scaleway from "@pulumi/scaleway"; * * const main = new scaleway.VpcPublicGateway("main", { * type: "VPC-GW-S", * zone: "nl-ams-1", * }); * const pgTestByName = scaleway.getVpcPublicGatewayOutput({ * name: main.name, * zone: "nl-ams-1", * }); * const pgTestById = scaleway.getVpcPublicGatewayOutput({ * publicGatewayId: main.id, * }); * ``` */ export declare function getVpcPublicGatewayOutput(args?: GetVpcPublicGatewayOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVpcPublicGateway. */ export interface GetVpcPublicGatewayOutputArgs { /** * Exact name of the Public Gateway. */ name?: pulumi.Input; /** * The ID of the Project the Public Gateway is associated with. */ projectId?: pulumi.Input; publicGatewayId?: pulumi.Input; /** * `zone`) The Public Gateway's zone. */ zone?: pulumi.Input; }