import * as pulumi from "@pulumi/pulumi"; /** * Manages a Virtual Machine Restore Point Collection. * * ## 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, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Compute` - 2024-03-01 * * ## Import * * Virtual Machine Restore Point Collections can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:compute/restorePointCollection:RestorePointCollection example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Compute/restorePointCollections/collection1 * ``` */ export declare class RestorePointCollection extends pulumi.CustomResource { /** * Get an existing RestorePointCollection 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?: RestorePointCollectionState, opts?: pulumi.CustomResourceOptions): RestorePointCollection; /** * Returns true if the given object is an instance of RestorePointCollection. 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 RestorePointCollection; /** * The Azure location where the Virtual Machine Restore Point Collection should exist. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * Specifies the name of the Virtual Machine Restore Point Collection. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The name of the Resource Group in which the Virtual Machine Restore Point Collection should exist. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * The ID of the virtual machine that will be associated with this Virtual Machine Restore Point Collection. Changing this forces a new resource to be created. */ readonly sourceVirtualMachineId: pulumi.Output; /** * A mapping of tags which should be assigned to this Virtual Machine Restore Point Collection. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a RestorePointCollection 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: RestorePointCollectionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering RestorePointCollection resources. */ export interface RestorePointCollectionState { /** * The Azure location where the Virtual Machine Restore Point Collection should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Specifies the name of the Virtual Machine Restore Point Collection. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the Resource Group in which the Virtual Machine Restore Point Collection should exist. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * The ID of the virtual machine that will be associated with this Virtual Machine Restore Point Collection. Changing this forces a new resource to be created. */ sourceVirtualMachineId?: pulumi.Input; /** * A mapping of tags which should be assigned to this Virtual Machine Restore Point Collection. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a RestorePointCollection resource. */ export interface RestorePointCollectionArgs { /** * The Azure location where the Virtual Machine Restore Point Collection should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Specifies the name of the Virtual Machine Restore Point Collection. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the Resource Group in which the Virtual Machine Restore Point Collection should exist. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * The ID of the virtual machine that will be associated with this Virtual Machine Restore Point Collection. Changing this forces a new resource to be created. */ sourceVirtualMachineId: pulumi.Input; /** * A mapping of tags which should be assigned to this Virtual Machine Restore Point Collection. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }