import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * List of all Database Server VM in Nutanix Database Service * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const dbservers = nutanix.getNdbDbservers({}); * ``` * */ export declare function getNdbDbservers(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getNdbDbservers. */ export interface GetNdbDbserversResult { readonly dbservers: outputs.GetNdbDbserversDbserver[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * List of all Database Server VM in Nutanix Database Service * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const dbservers = nutanix.getNdbDbservers({}); * ``` * */ export declare function getNdbDbserversOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getNdbDbservers.d.ts.map