import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates a taxonomy in a specified project. The taxonomy is initially empty, that is, it doesn't contain policy tags. * 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. If not set, defaults to empty. The description must contain only Unicode characters, tabs, newlines, carriage returns, and page breaks, and be at most 2000 bytes long when encoded in UTF-8. */ readonly description: pulumi.Output; /** * User-defined name of this taxonomy. The name can't start or end with spaces, must contain only Unicode letters, numbers, underscores, dashes, and 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 in URL format. Note: Policy tag manager generates unique taxonomy IDs. */ readonly name: pulumi.Output; /** * Number of policy tags 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; /** * Creation and modification timestamps of this taxonomy. */ 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. If not set, defaults to empty. The description must contain only Unicode characters, tabs, newlines, carriage returns, and page breaks, and be at most 2000 bytes long when encoded in UTF-8. */ description?: pulumi.Input; /** * User-defined name of this taxonomy. The name can't start or end with spaces, must contain only Unicode letters, numbers, underscores, dashes, and 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; }