import * as pulumi from "@pulumi/pulumi"; /** * Run snapshot action in application to create recovery point. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const test = new nutanix.SelfServiceAppRecoveryPoint("test", { * appName: "NAME OF APPLICATION", * actionName: "SNAPSHOT ACTION NAME", * recoveryPointName: "RECOVERY POINT NAME", * }); * ``` * */ export declare class SelfServiceAppRecoveryPoint extends pulumi.CustomResource { /** * Get an existing SelfServiceAppRecoveryPoint 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?: SelfServiceAppRecoveryPointState, opts?: pulumi.CustomResourceOptions): SelfServiceAppRecoveryPoint; /** * Returns true if the given object is an instance of SelfServiceAppRecoveryPoint. 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 SelfServiceAppRecoveryPoint; /** * - (Required) The name of the snapshot action to trigger. */ readonly actionName: pulumi.Output; /** * - (Optional) The name of the application */ readonly appName: pulumi.Output; /** * - (Required) The UUID of the application. * * Both (`appName` and `appUuid`) are optional but atleast one of them should be provided for resource to work. */ readonly appUuid: pulumi.Output; /** * - (Required) The name of recovery point. */ readonly recoveryPointName: pulumi.Output; /** * Create a SelfServiceAppRecoveryPoint 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: SelfServiceAppRecoveryPointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SelfServiceAppRecoveryPoint resources. */ export interface SelfServiceAppRecoveryPointState { /** * - (Required) The name of the snapshot action to trigger. */ actionName?: pulumi.Input; /** * - (Optional) The name of the application */ appName?: pulumi.Input; /** * - (Required) The UUID of the application. * * Both (`appName` and `appUuid`) are optional but atleast one of them should be provided for resource to work. */ appUuid?: pulumi.Input; /** * - (Required) The name of recovery point. */ recoveryPointName?: pulumi.Input; } /** * The set of arguments for constructing a SelfServiceAppRecoveryPoint resource. */ export interface SelfServiceAppRecoveryPointArgs { /** * - (Required) The name of the snapshot action to trigger. */ actionName: pulumi.Input; /** * - (Optional) The name of the application */ appName?: pulumi.Input; /** * - (Required) The UUID of the application. * * Both (`appName` and `appUuid`) are optional but atleast one of them should be provided for resource to work. */ appUuid?: pulumi.Input; /** * - (Required) The name of recovery point. */ recoveryPointName?: pulumi.Input; } //# sourceMappingURL=selfServiceAppRecoveryPoint.d.ts.map