import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a Nutanix Recovery Plan resource to Create a Recovery Plan. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const recoveryPlanTest = new nutanix.RecoveryPlan("recovery_plan_test", { * name: "%s", * description: "%s", * stageLists: [{ * stageWork: { * recoverEntities: { * entityInfoLists: [{ * categories: [{ * name: "Environment", * value: "Dev", * }], * }], * }, * }, * stageUuid: "ab788130-0820-4d07-a1b5-b0ba4d3a42asd", * delayTimeSecs: 0, * }], * parameters: {}, * }); * ``` * */ export declare class RecoveryPlan extends pulumi.CustomResource { /** * Get an existing RecoveryPlan 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?: RecoveryPlanState, opts?: pulumi.CustomResourceOptions): RecoveryPlan; /** * Returns true if the given object is an instance of RecoveryPlan. 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 RecoveryPlan; readonly apiVersion: pulumi.Output; readonly categories: pulumi.Output; /** * A description for Recovery Plan. */ readonly description: pulumi.Output; readonly metadata: pulumi.Output<{ [key: string]: string; }>; /** * The name for the Recovery Plan. */ readonly name: pulumi.Output; readonly ownerReference: pulumi.Output; readonly parameters: pulumi.Output; readonly projectReference: pulumi.Output; readonly stageLists: pulumi.Output; readonly state: pulumi.Output; /** * Create a RecoveryPlan 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: RecoveryPlanArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering RecoveryPlan resources. */ export interface RecoveryPlanState { apiVersion?: pulumi.Input; categories?: pulumi.Input[] | undefined>; /** * A description for Recovery Plan. */ description?: pulumi.Input; metadata?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The name for the Recovery Plan. */ name?: pulumi.Input; ownerReference?: pulumi.Input; parameters?: pulumi.Input; projectReference?: pulumi.Input; stageLists?: pulumi.Input[] | undefined>; state?: pulumi.Input; } /** * The set of arguments for constructing a RecoveryPlan resource. */ export interface RecoveryPlanArgs { categories?: pulumi.Input[] | undefined>; /** * A description for Recovery Plan. */ description?: pulumi.Input; /** * The name for the Recovery Plan. */ name?: pulumi.Input; ownerReference?: pulumi.Input; parameters: pulumi.Input; projectReference?: pulumi.Input; stageLists: pulumi.Input[]>; } //# sourceMappingURL=recoveryPlan.d.ts.map