import * as pulumi from "@pulumi/pulumi"; /** * Creates a view. */ export declare class View extends pulumi.CustomResource { /** * Get an existing View resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): View; /** * Returns true if the given object is an instance of View. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is View; /** * The time at which this view was created. */ readonly createTime: pulumi.Output; /** * The human-readable display name of the view. */ readonly displayName: pulumi.Output; readonly location: pulumi.Output; /** * Immutable. The resource name of the view. Format: projects/{project}/locations/{location}/views/{view} */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The most recent time at which the view was updated. */ readonly updateTime: pulumi.Output; /** * String with specific view properties, must be non-empty. */ readonly value: pulumi.Output; /** * Create a View resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: ViewArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a View resource. */ export interface ViewArgs { /** * The human-readable display name of the view. */ displayName?: pulumi.Input; location?: pulumi.Input; /** * Immutable. The resource name of the view. Format: projects/{project}/locations/{location}/views/{view} */ name?: pulumi.Input; project?: pulumi.Input; /** * String with specific view properties, must be non-empty. */ value?: pulumi.Input; }