import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates a taxonomy in the specified project. * Auto-naming is currently not supported for this resource. */ export declare class Taxonomy extends pulumi.CustomResource { /** * Get an existing Taxonomy 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): Taxonomy; /** * Returns true if the given object is an instance of Taxonomy. 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 Taxonomy; /** * Optional. A list of policy types that are activated for this taxonomy. If not set, defaults to an empty list. */ readonly activatedPolicyTypes: pulumi.Output; /** * Optional. Description of this taxonomy. It must: contain only unicode characters, tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes long when encoded in UTF-8. If not set, defaults to an empty description. */ readonly description: pulumi.Output; /** * User defined name of this taxonomy. It must: contain only unicode letters, numbers, underscores, dashes and spaces; not start or end with spaces; and be at most 200 bytes long when encoded in UTF-8. The taxonomy display name must be unique within an organization. */ readonly displayName: pulumi.Output; readonly location: pulumi.Output; /** * Resource name of this taxonomy, whose format is: "projects/{project_number}/locations/{location_id}/taxonomies/{id}". */ readonly name: pulumi.Output; /** * Number of policy tags contained in this taxonomy. */ readonly policyTagCount: pulumi.Output; readonly project: pulumi.Output; /** * Identity of the service which owns the Taxonomy. This field is only populated when the taxonomy is created by a Google Cloud service. Currently only 'DATAPLEX' is supported. */ readonly service: pulumi.Output; /** * Timestamps about this taxonomy. Only create_time and update_time are used. */ readonly taxonomyTimestamps: pulumi.Output; /** * Create a Taxonomy 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: TaxonomyArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Taxonomy resource. */ export interface TaxonomyArgs { /** * Optional. A list of policy types that are activated for this taxonomy. If not set, defaults to an empty list. */ activatedPolicyTypes?: pulumi.Input[]>; /** * Optional. Description of this taxonomy. It must: contain only unicode characters, tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes long when encoded in UTF-8. If not set, defaults to an empty description. */ description?: pulumi.Input; /** * User defined name of this taxonomy. It must: contain only unicode letters, numbers, underscores, dashes and spaces; not start or end with spaces; and be at most 200 bytes long when encoded in UTF-8. The taxonomy display name must be unique within an organization. */ displayName: pulumi.Input; location?: pulumi.Input; project?: pulumi.Input; }