import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets details of a single AppGateway. */ export declare function getAppGateway(args: GetAppGatewayArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAppGatewayArgs { appGatewayId: string; location: string; project?: string; } export interface GetAppGatewayResult { /** * A list of connections allocated for the Gateway */ readonly allocatedConnections: outputs.beyondcorp.v1alpha.AllocatedConnectionResponse[]; /** * Timestamp when the resource was created. */ readonly createTime: string; /** * Optional. An arbitrary user-provided name for the AppGateway. Cannot exceed 64 characters. */ readonly displayName: string; /** * The type of hosting used by the AppGateway. */ readonly hostType: string; /** * Optional. Resource labels to represent user provided metadata. */ readonly labels: { [key: string]: string; }; /** * Unique resource name of the AppGateway. The name is ignored when creating an AppGateway. */ readonly name: string; /** * The current state of the AppGateway. */ readonly state: string; /** * The type of network connectivity used by the AppGateway. */ readonly type: string; /** * A unique identifier for the instance generated by the system. */ readonly uid: string; /** * Timestamp when the resource was last modified. */ readonly updateTime: string; /** * Server-defined URI for this resource. */ readonly uri: string; } /** * Gets details of a single AppGateway. */ export declare function getAppGatewayOutput(args: GetAppGatewayOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetAppGatewayOutputArgs { appGatewayId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }