import * as pulumi from "@pulumi/pulumi"; /** * External identifier of the replicated recovery point can be found in the task completion details under the key * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * // replicate RP * const rp_replicate = new nutanix.RecoveryPointReplicateV2("rp-replicate", { * extId: "150a7ed0-9d05-4f35-a060-16dac4c835d0", * clusterExtId: "1cefd0f5-6d38-4c9b-a07c-bdd2db004224", * pcExtId: "8a938cc5-282b-48c4-81be-de22de145d07", * }); * ``` * */ export declare class RecoveryPointReplicateV2 extends pulumi.CustomResource { /** * Get an existing RecoveryPointReplicateV2 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?: RecoveryPointReplicateV2State, opts?: pulumi.CustomResourceOptions): RecoveryPointReplicateV2; /** * Returns true if the given object is an instance of RecoveryPointReplicateV2. 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 RecoveryPointReplicateV2; /** * -(Required) External identifier of the cluster. */ readonly clusterExtId: pulumi.Output; /** * -(Required) The external identifier that can be used to retrieve the recovery point using its URL. */ readonly extId: pulumi.Output; /** * -(Required) External identifier of the Prism Central. */ readonly pcExtId: pulumi.Output; /** * - External identifier of replicated recovery point. */ readonly replicatedRpExtId: pulumi.Output; /** * Create a RecoveryPointReplicateV2 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: RecoveryPointReplicateV2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering RecoveryPointReplicateV2 resources. */ export interface RecoveryPointReplicateV2State { /** * -(Required) External identifier of the cluster. */ clusterExtId?: pulumi.Input; /** * -(Required) The external identifier that can be used to retrieve the recovery point using its URL. */ extId?: pulumi.Input; /** * -(Required) External identifier of the Prism Central. */ pcExtId?: pulumi.Input; /** * - External identifier of replicated recovery point. */ replicatedRpExtId?: pulumi.Input; } /** * The set of arguments for constructing a RecoveryPointReplicateV2 resource. */ export interface RecoveryPointReplicateV2Args { /** * -(Required) External identifier of the cluster. */ clusterExtId?: pulumi.Input; /** * -(Required) The external identifier that can be used to retrieve the recovery point using its URL. */ extId: pulumi.Input; /** * -(Required) External identifier of the Prism Central. */ pcExtId: pulumi.Input; } //# sourceMappingURL=recoveryPointReplicateV2.d.ts.map