import * as pulumi from "@pulumi/pulumi"; /** * Provides a resource to create tags based on the input parameters. * * ## Example Usage * * ### resource to create tag * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const name = new nutanix.NdbTag("name", { * name: "testst-up", * description: "this is desc ok", * entityType: "DATABASE", * required: true, * }); * ``` * * * ### resource to update tag with status * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const name = new nutanix.NdbTag("name", { * name: "testst-up", * description: "this is desc ok", * entityType: "DATABASE", * required: true, * status: "DEPRECATED", * }); * ``` * */ export declare class NdbTag extends pulumi.CustomResource { /** * Get an existing NdbTag 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: NdbTagState, opts?: pulumi.CustomResourceOptions): NdbTag; /** * Returns true if the given object is an instance of NdbTag. 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 NdbTag; /** * date created of the tag */ readonly dateCreated: pulumi.Output; /** * modified date of tha tag */ readonly dateModified: pulumi.Output; /** * description for the tag */ readonly description: pulumi.Output; /** * entity for the tag to be associated with. Supported values [ DATABASE, TIME_MACHINE, CLONE, DATABASE_SERVER ]. */ readonly entityType: pulumi.Output; /** * name for the tag */ readonly name: pulumi.Output; /** * owner id of the tag */ readonly owner: pulumi.Output; /** * provide a tag value for entities. */ readonly required: pulumi.Output; /** * Status of the tag. Supported values are [ ENABLED, DEPRECATED ] */ readonly status: pulumi.Output; /** * value for the tag */ readonly values: pulumi.Output; /** * Create a NdbTag 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: NdbTagArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NdbTag resources. */ export interface NdbTagState { /** * date created of the tag */ dateCreated?: pulumi.Input; /** * modified date of tha tag */ dateModified?: pulumi.Input; /** * description for the tag */ description?: pulumi.Input; /** * entity for the tag to be associated with. Supported values [ DATABASE, TIME_MACHINE, CLONE, DATABASE_SERVER ]. */ entityType?: pulumi.Input; /** * name for the tag */ name?: pulumi.Input; /** * owner id of the tag */ owner?: pulumi.Input; /** * provide a tag value for entities. */ required?: pulumi.Input; /** * Status of the tag. Supported values are [ ENABLED, DEPRECATED ] */ status?: pulumi.Input; /** * value for the tag */ values?: pulumi.Input; } /** * The set of arguments for constructing a NdbTag resource. */ export interface NdbTagArgs { /** * description for the tag */ description?: pulumi.Input; /** * entity for the tag to be associated with. Supported values [ DATABASE, TIME_MACHINE, CLONE, DATABASE_SERVER ]. */ entityType: pulumi.Input; /** * name for the tag */ name?: pulumi.Input; /** * provide a tag value for entities. */ required?: pulumi.Input; /** * Status of the tag. Supported values are [ ENABLED, DEPRECATED ] */ status?: pulumi.Input; } //# sourceMappingURL=ndbTag.d.ts.map