import * as pulumi from "@pulumi/pulumi"; /** * Gets a view. */ export declare function getView(args: GetViewArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetViewArgs { location: string; project?: string; viewId: string; } export interface GetViewResult { /** * The time at which this view was created. */ readonly createTime: string; /** * The human-readable display name of the view. */ readonly displayName: string; /** * Immutable. The resource name of the view. Format: projects/{project}/locations/{location}/views/{view} */ readonly name: string; /** * The most recent time at which the view was updated. */ readonly updateTime: string; /** * String with specific view properties, must be non-empty. */ readonly value: string; } /** * Gets a view. */ export declare function getViewOutput(args: GetViewOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetViewOutputArgs { location: pulumi.Input; project?: pulumi.Input; viewId: pulumi.Input; }