import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets details of a single Connector. */ export declare function getConnector(args: GetConnectorArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetConnectorArgs { connectorId: string; location: string; project?: string; } export interface GetConnectorResult { /** * Timestamp when the resource was created. */ readonly createTime: string; /** * Optional. An arbitrary user-provided name for the connector. Cannot exceed 64 characters. */ readonly displayName: string; /** * Optional. Resource labels to represent user provided metadata. */ readonly labels: { [key: string]: string; }; /** * Unique resource name of the connector. The name is ignored when creating a connector. */ readonly name: string; /** * Principal information about the Identity of the connector. */ readonly principalInfo: outputs.beyondcorp.v1alpha.PrincipalInfoResponse; /** * Optional. Resource info of the connector. */ readonly resourceInfo: outputs.beyondcorp.v1alpha.ResourceInfoResponse; /** * The current state of the connector. */ readonly state: 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 Connector. */ export declare function getConnectorOutput(args: GetConnectorOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetConnectorOutputArgs { connectorId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }