import * as pulumi from "@pulumi/pulumi"; /** * Create a DataTaxonomy resource. * Auto-naming is currently not supported for this resource. */ export declare class DataTaxonomy extends pulumi.CustomResource { /** * Get an existing DataTaxonomy 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): DataTaxonomy; /** * Returns true if the given object is an instance of DataTaxonomy. 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 DataTaxonomy; /** * The number of attributes in the DataTaxonomy. */ readonly attributeCount: pulumi.Output; /** * The number of classes in the DataTaxonomy. */ readonly classCount: pulumi.Output; /** * The time when the DataTaxonomy was created. */ readonly createTime: pulumi.Output; /** * Required. DataTaxonomy identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the Project. */ readonly dataTaxonomyId: pulumi.Output; /** * Optional. Description of the DataTaxonomy. */ readonly description: pulumi.Output; /** * Optional. User friendly display name. */ readonly displayName: pulumi.Output; /** * This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. */ readonly etag: pulumi.Output; /** * Optional. User-defined labels for the DataTaxonomy. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * The relative resource name of the DataTaxonomy, of the form: projects/{project_number}/locations/{location_id}/dataTaxonomies/{data_taxonomy_id}. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * System generated globally unique ID for the dataTaxonomy. This ID will be different if the DataTaxonomy is deleted and re-created with the same name. */ readonly uid: pulumi.Output; /** * The time when the DataTaxonomy was last updated. */ readonly updateTime: pulumi.Output; /** * Create a DataTaxonomy 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: DataTaxonomyArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DataTaxonomy resource. */ export interface DataTaxonomyArgs { /** * Required. DataTaxonomy identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the Project. */ dataTaxonomyId: pulumi.Input; /** * Optional. Description of the DataTaxonomy. */ description?: pulumi.Input; /** * Optional. User friendly display name. */ displayName?: pulumi.Input; /** * This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. */ etag?: pulumi.Input; /** * Optional. User-defined labels for the DataTaxonomy. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; project?: pulumi.Input; }