import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Describes Recovery Plans * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const recoveryPlans = nutanix.getRecoveryPlans({}); * ``` * */ export declare function getRecoveryPlans(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getRecoveryPlans. */ export interface GetRecoveryPlansResult { /** * version of the API */ readonly apiVersion: string; /** * List of Recovery Plans */ readonly entities: outputs.GetRecoveryPlansEntity[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * Describes Recovery Plans * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const recoveryPlans = nutanix.getRecoveryPlans({}); * ``` * */ export declare function getRecoveryPlansOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getRecoveryPlans.d.ts.map