import * as pulumi from "@pulumi/pulumi"; /** * Use this method to get details about a route. */ export declare function getRoute(args: GetRouteArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetRouteArgs { location: string; privateConnectionId: string; project?: string; routeId: string; } export interface GetRouteResult { /** * The create time of the resource. */ readonly createTime: string; /** * Destination address for connection */ readonly destinationAddress: string; /** * Destination port for connection */ readonly destinationPort: number; /** * Display name. */ readonly displayName: string; /** * Labels. */ readonly labels: { [key: string]: string; }; /** * The resource's name. */ readonly name: string; /** * The update time of the resource. */ readonly updateTime: string; } /** * Use this method to get details about a route. */ export declare function getRouteOutput(args: GetRouteOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetRouteOutputArgs { location: pulumi.Input; privateConnectionId: pulumi.Input; project?: pulumi.Input; routeId: pulumi.Input; }