import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a lake resource. * Auto-naming is currently not supported for this resource. */ export declare class Lake extends pulumi.CustomResource { /** * Get an existing Lake 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): Lake; /** * Returns true if the given object is an instance of Lake. 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 Lake; /** * Aggregated status of the underlying assets of the lake. */ readonly assetStatus: pulumi.Output; /** * The time when the lake was created. */ readonly createTime: pulumi.Output; /** * Optional. Description of the lake. */ readonly description: pulumi.Output; /** * Optional. User friendly display name. */ readonly displayName: pulumi.Output; /** * Optional. User-defined labels for the lake. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; /** * Required. Lake identifier. This ID will be used to generate names such as database and dataset names when publishing metadata to Hive Metastore and BigQuery. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must end with a number or a letter. * Must be between 1-63 characters. * Must be unique within the customer project / location. */ readonly lakeId: pulumi.Output; readonly location: pulumi.Output; /** * Optional. Settings to manage lake and Dataproc Metastore service instance association. */ readonly metastore: pulumi.Output; /** * Metastore status of the lake. */ readonly metastoreStatus: pulumi.Output; /** * The relative resource name of the lake, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Service account associated with this lake. This service account must be authorized to access or operate on resources managed by the lake. */ readonly serviceAccount: pulumi.Output; /** * Current state of the lake. */ readonly state: pulumi.Output; /** * System generated globally unique ID for the lake. This ID will be different if the lake is deleted and re-created with the same name. */ readonly uid: pulumi.Output; /** * The time when the lake was last updated. */ readonly updateTime: pulumi.Output; /** * Create a Lake 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: LakeArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Lake resource. */ export interface LakeArgs { /** * Optional. Description of the lake. */ description?: pulumi.Input; /** * Optional. User friendly display name. */ displayName?: pulumi.Input; /** * Optional. User-defined labels for the lake. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Required. Lake identifier. This ID will be used to generate names such as database and dataset names when publishing metadata to Hive Metastore and BigQuery. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must end with a number or a letter. * Must be between 1-63 characters. * Must be unique within the customer project / location. */ lakeId: pulumi.Input; location?: pulumi.Input; /** * Optional. Settings to manage lake and Dataproc Metastore service instance association. */ metastore?: pulumi.Input; project?: pulumi.Input; }