import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates a zone resource within a lake. * Auto-naming is currently not supported for this resource. */ export declare class Zone extends pulumi.CustomResource { /** * Get an existing Zone 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): Zone; /** * Returns true if the given object is an instance of Zone. 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 Zone; /** * Aggregated status of the underlying assets of the zone. */ readonly assetStatus: pulumi.Output; /** * The time when the zone was created. */ readonly createTime: pulumi.Output; /** * Optional. Description of the zone. */ readonly description: pulumi.Output; /** * Optional. Specification of the discovery feature applied to data in this zone. */ readonly discoverySpec: pulumi.Output; /** * Optional. User friendly display name. */ readonly displayName: pulumi.Output; /** * Optional. User defined labels for the zone. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly lakeId: pulumi.Output; readonly location: pulumi.Output; /** * The relative resource name of the zone, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Specification of the resources that are referenced by the assets within this zone. */ readonly resourceSpec: pulumi.Output; /** * Current state of the zone. */ readonly state: pulumi.Output; /** * Immutable. The type of the zone. */ readonly type: pulumi.Output; /** * System generated globally unique ID for the zone. This ID will be different if the zone is deleted and re-created with the same name. */ readonly uid: pulumi.Output; /** * The time when the zone was last updated. */ readonly updateTime: pulumi.Output; /** * Required. Zone 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 across all lakes from all locations in a project. * Must not be one of the reserved IDs (i.e. "default", "global-temp") */ readonly zoneId: pulumi.Output; /** * Create a Zone 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: ZoneArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Zone resource. */ export interface ZoneArgs { /** * Optional. Description of the zone. */ description?: pulumi.Input; /** * Optional. Specification of the discovery feature applied to data in this zone. */ discoverySpec?: pulumi.Input; /** * Optional. User friendly display name. */ displayName?: pulumi.Input; /** * Optional. User defined labels for the zone. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; lakeId: pulumi.Input; location?: pulumi.Input; project?: pulumi.Input; /** * Specification of the resources that are referenced by the assets within this zone. */ resourceSpec: pulumi.Input; /** * Immutable. The type of the zone. */ type: pulumi.Input; /** * Required. Zone 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 across all lakes from all locations in a project. * Must not be one of the reserved IDs (i.e. "default", "global-temp") */ zoneId: pulumi.Input; }