import * as pulumi from "@pulumi/pulumi"; /** * Create a metadata partition. * Auto-naming is currently not supported for this resource. */ export declare class Partition extends pulumi.CustomResource { /** * Get an existing Partition 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): Partition; /** * Returns true if the given object is an instance of Partition. 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 Partition; readonly entityId: pulumi.Output; /** * Optional. The etag for this partition. */ readonly etag: pulumi.Output; readonly lakeId: pulumi.Output; readonly location: pulumi.Output; /** * Partition values used in the HTTP URL must be double encoded. For example, url_encode(url_encode(value)) can be used to encode "US:CA/CA#Sunnyvale so that the request URL ends with "/partitions/US%253ACA/CA%2523Sunnyvale". The name field in the response retains the encoded format. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Immutable. The set of values representing the partition, which correspond to the partition schema defined in the parent entity. */ readonly values: pulumi.Output; readonly zone: pulumi.Output; /** * Create a Partition 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: PartitionArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Partition resource. */ export interface PartitionArgs { entityId: pulumi.Input; /** * Optional. The etag for this partition. */ etag?: pulumi.Input; lakeId: pulumi.Input; /** * Immutable. The location of the entity data within the partition, for example, gs://bucket/path/to/entity/key1=value1/key2=value2. Or projects//datasets//tables/ */ location?: pulumi.Input; project?: pulumi.Input; /** * Immutable. The set of values representing the partition, which correspond to the partition schema defined in the parent entity. */ values: pulumi.Input[]>; zone?: pulumi.Input; }