import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Lists all SLAs in Nutanix Database Service * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const slas = nutanix.getNdbSlas({}); * export const sla = slas; * ``` * */ export declare function getNdbSlas(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getNdbSlas. */ export interface GetNdbSlasResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * - list of slas */ readonly slas: outputs.GetNdbSlasSla[]; } /** * Lists all SLAs in Nutanix Database Service * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const slas = nutanix.getNdbSlas({}); * export const sla = slas; * ``` * */ export declare function getNdbSlasOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getNdbSlas.d.ts.map