import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets details of a single Connection. */ export declare function getConnection(args: GetConnectionArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetConnectionArgs { connectionId: string; location: string; project?: string; } export interface GetConnectionResult { /** * Address of the remote application endpoint for the BeyondCorp Connection. */ readonly applicationEndpoint: outputs.beyondcorp.v1alpha.ApplicationEndpointResponse; /** * Optional. List of [google.cloud.beyondcorp.v1main.Connector.name] that are authorised to be associated with this Connection. */ readonly connectors: string[]; /** * Timestamp when the resource was created. */ readonly createTime: string; /** * Optional. An arbitrary user-provided name for the connection. Cannot exceed 64 characters. */ readonly displayName: string; /** * Optional. Gateway used by the connection. */ readonly gateway: outputs.beyondcorp.v1alpha.GatewayResponse; /** * Optional. Resource labels to represent user provided metadata. */ readonly labels: { [key: string]: string; }; /** * Unique resource name of the connection. The name is ignored when creating a connection. */ readonly name: string; /** * The current state of the connection. */ readonly state: string; /** * The type of network connectivity used by the connection. */ 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; } /** * Gets details of a single Connection. */ export declare function getConnectionOutput(args: GetConnectionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetConnectionOutputArgs { connectionId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }