import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * List of tags in Nutanix Database Service * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const tags = nutanix.getNdbTags({}); * ``` * */ export declare function getNdbTags(args?: GetNdbTagsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNdbTags. */ export interface GetNdbTagsArgs { /** * entity for the tag to be associated with. */ entityType?: string; } /** * A collection of values returned by getNdbTags. */ export interface GetNdbTagsResult { /** * entity for the tag to be associated with. */ readonly entityType?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of tags present in NDB. */ readonly tags: outputs.GetNdbTagsTag[]; } /** * List of tags in Nutanix Database Service * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const tags = nutanix.getNdbTags({}); * ``` * */ export declare function getNdbTagsOutput(args?: GetNdbTagsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNdbTags. */ export interface GetNdbTagsOutputArgs { /** * entity for the tag to be associated with. */ entityType?: pulumi.Input; } //# sourceMappingURL=getNdbTags.d.ts.map