import * as pulumi from "@pulumi/pulumi"; /** * Manages a Virtual Machine Restore Point. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * import * as std from "@pulumi/std"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example-network", * addressSpaces: ["10.0.0.0/16"], * location: example.location, * resourceGroupName: example.name, * }); * const exampleSubnet = new azure.network.Subnet("example", { * name: "internal", * resourceGroupName: example.name, * virtualNetworkName: exampleVirtualNetwork.name, * addressPrefixes: ["10.0.2.0/24"], * }); * const exampleNetworkInterface = new azure.network.NetworkInterface("example", { * name: "example-nic", * location: example.location, * resourceGroupName: example.name, * ipConfigurations: [{ * name: "internal", * subnetId: exampleSubnet.id, * privateIpAddressAllocation: "Dynamic", * }], * }); * const exampleLinuxVirtualMachine = new azure.compute.LinuxVirtualMachine("example", { * name: "example-machine", * resourceGroupName: example.name, * location: example.location, * size: "Standard_F2", * adminUsername: "adminuser", * networkInterfaceIds: [exampleNetworkInterface.id], * adminSshKeys: [{ * username: "adminuser", * publicKey: std.file({ * input: "~/.ssh/id_rsa.pub", * }).then(invoke => invoke.result), * }], * osDisk: { * caching: "ReadWrite", * storageAccountType: "Standard_LRS", * }, * sourceImageReference: { * publisher: "Canonical", * offer: "0001-com-ubuntu-server-jammy", * sku: "22_04-lts", * version: "latest", * }, * }); * const exampleRestorePointCollection = new azure.compute.RestorePointCollection("example", { * name: "example-collection", * resourceGroupName: example.name, * location: exampleLinuxVirtualMachine.location, * sourceVirtualMachineId: exampleLinuxVirtualMachine.id, * }); * const exampleRestorePoint = new azure.compute.RestorePoint("example", { * name: "example-restore-point", * virtualMachineRestorePointCollectionId: exampleRestorePointCollection.id, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Compute` - 2024-03-01 * * ## Import * * Virtual Machine Restore Point can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:compute/restorePoint:RestorePoint example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Compute/restorePointCollections/collection1/restorePoints/restorePoint1 * ``` */ export declare class RestorePoint extends pulumi.CustomResource { /** * Get an existing RestorePoint 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?: RestorePointState, opts?: pulumi.CustomResourceOptions): RestorePoint; /** * Returns true if the given object is an instance of RestorePoint. 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 RestorePoint; /** * Whether the Consistency Mode of the Virtual Machine Restore Point is set to `CrashConsistent`. Defaults to `false`. Changing this forces a new resource to be created. */ readonly crashConsistencyModeEnabled: pulumi.Output; /** * A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created. */ readonly excludedDisks: pulumi.Output; /** * Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * Specifies the ID of the Virtual Machine Restore Point Collection the Virtual Machine Restore Point will be associated with. Changing this forces a new resource to be created. */ readonly virtualMachineRestorePointCollectionId: pulumi.Output; /** * Create a RestorePoint 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: RestorePointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering RestorePoint resources. */ export interface RestorePointState { /** * Whether the Consistency Mode of the Virtual Machine Restore Point is set to `CrashConsistent`. Defaults to `false`. Changing this forces a new resource to be created. */ crashConsistencyModeEnabled?: pulumi.Input; /** * A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created. */ excludedDisks?: pulumi.Input[]>; /** * Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Specifies the ID of the Virtual Machine Restore Point Collection the Virtual Machine Restore Point will be associated with. Changing this forces a new resource to be created. */ virtualMachineRestorePointCollectionId?: pulumi.Input; } /** * The set of arguments for constructing a RestorePoint resource. */ export interface RestorePointArgs { /** * Whether the Consistency Mode of the Virtual Machine Restore Point is set to `CrashConsistent`. Defaults to `false`. Changing this forces a new resource to be created. */ crashConsistencyModeEnabled?: pulumi.Input; /** * A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created. */ excludedDisks?: pulumi.Input[]>; /** * Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Specifies the ID of the Virtual Machine Restore Point Collection the Virtual Machine Restore Point will be associated with. Changing this forces a new resource to be created. */ virtualMachineRestorePointCollectionId: pulumi.Input; }