import * as pulumi from "@pulumi/pulumi"; /** * Gets details of a single Mesh. */ export declare function getMesh(args: GetMeshArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetMeshArgs { location: string; meshId: string; project?: string; } export interface GetMeshResult { /** * The timestamp when the resource was created. */ readonly createTime: string; /** * Optional. A free-text description of the resource. Max length 1024 characters. */ readonly description: string; /** * Optional. If set to a valid TCP port (1-65535), instructs the SIDECAR proxy to listen on the specified port of localhost (127.0.0.1) address. The SIDECAR proxy will expect all traffic to be redirected to this port regardless of its actual ip:port destination. If unset, a port '15001' is used as the interception port. This is applicable only for sidecar proxy deployments. */ readonly interceptionPort: number; /** * Optional. Set of label tags associated with the Mesh resource. */ readonly labels: { [key: string]: string; }; /** * Name of the Mesh resource. It matches pattern `projects/*/locations/global/meshes/`. */ readonly name: string; /** * Server-defined URL of this resource */ readonly selfLink: string; /** * The timestamp when the resource was updated. */ readonly updateTime: string; } /** * Gets details of a single Mesh. */ export declare function getMeshOutput(args: GetMeshOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetMeshOutputArgs { location: pulumi.Input; meshId: pulumi.Input; project?: pulumi.Input; }