We recommend using Azure Native.
azure.compute.RestorePoint
Explore with Pulumi AI
Manages a Virtual Machine Restore Point.
Example Usage
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,
});
import pulumi
import pulumi_azure as azure
import pulumi_std as std
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_virtual_network = azure.network.VirtualNetwork("example",
name="example-network",
address_spaces=["10.0.0.0/16"],
location=example.location,
resource_group_name=example.name)
example_subnet = azure.network.Subnet("example",
name="internal",
resource_group_name=example.name,
virtual_network_name=example_virtual_network.name,
address_prefixes=["10.0.2.0/24"])
example_network_interface = azure.network.NetworkInterface("example",
name="example-nic",
location=example.location,
resource_group_name=example.name,
ip_configurations=[{
"name": "internal",
"subnet_id": example_subnet.id,
"private_ip_address_allocation": "Dynamic",
}])
example_linux_virtual_machine = azure.compute.LinuxVirtualMachine("example",
name="example-machine",
resource_group_name=example.name,
location=example.location,
size="Standard_F2",
admin_username="adminuser",
network_interface_ids=[example_network_interface.id],
admin_ssh_keys=[{
"username": "adminuser",
"public_key": std.file(input="~/.ssh/id_rsa.pub").result,
}],
os_disk={
"caching": "ReadWrite",
"storage_account_type": "Standard_LRS",
},
source_image_reference={
"publisher": "Canonical",
"offer": "0001-com-ubuntu-server-jammy",
"sku": "22_04-lts",
"version": "latest",
})
example_restore_point_collection = azure.compute.RestorePointCollection("example",
name="example-collection",
resource_group_name=example.name,
location=example_linux_virtual_machine.location,
source_virtual_machine_id=example_linux_virtual_machine.id)
example_restore_point = azure.compute.RestorePoint("example",
name="example-restore-point",
virtual_machine_restore_point_collection_id=example_restore_point_collection.id)
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/compute"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/network"
"github.com/pulumi/pulumi-std/sdk/go/std"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
Name: pulumi.String("example-network"),
AddressSpaces: pulumi.StringArray{
pulumi.String("10.0.0.0/16"),
},
Location: example.Location,
ResourceGroupName: example.Name,
})
if err != nil {
return err
}
exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
Name: pulumi.String("internal"),
ResourceGroupName: example.Name,
VirtualNetworkName: exampleVirtualNetwork.Name,
AddressPrefixes: pulumi.StringArray{
pulumi.String("10.0.2.0/24"),
},
})
if err != nil {
return err
}
exampleNetworkInterface, err := network.NewNetworkInterface(ctx, "example", &network.NetworkInterfaceArgs{
Name: pulumi.String("example-nic"),
Location: example.Location,
ResourceGroupName: example.Name,
IpConfigurations: network.NetworkInterfaceIpConfigurationArray{
&network.NetworkInterfaceIpConfigurationArgs{
Name: pulumi.String("internal"),
SubnetId: exampleSubnet.ID(),
PrivateIpAddressAllocation: pulumi.String("Dynamic"),
},
},
})
if err != nil {
return err
}
invokeFile, err := std.File(ctx, &std.FileArgs{
Input: "~/.ssh/id_rsa.pub",
}, nil)
if err != nil {
return err
}
exampleLinuxVirtualMachine, err := compute.NewLinuxVirtualMachine(ctx, "example", &compute.LinuxVirtualMachineArgs{
Name: pulumi.String("example-machine"),
ResourceGroupName: example.Name,
Location: example.Location,
Size: pulumi.String("Standard_F2"),
AdminUsername: pulumi.String("adminuser"),
NetworkInterfaceIds: pulumi.StringArray{
exampleNetworkInterface.ID(),
},
AdminSshKeys: compute.LinuxVirtualMachineAdminSshKeyArray{
&compute.LinuxVirtualMachineAdminSshKeyArgs{
Username: pulumi.String("adminuser"),
PublicKey: pulumi.String(invokeFile.Result),
},
},
OsDisk: &compute.LinuxVirtualMachineOsDiskArgs{
Caching: pulumi.String("ReadWrite"),
StorageAccountType: pulumi.String("Standard_LRS"),
},
SourceImageReference: &compute.LinuxVirtualMachineSourceImageReferenceArgs{
Publisher: pulumi.String("Canonical"),
Offer: pulumi.String("0001-com-ubuntu-server-jammy"),
Sku: pulumi.String("22_04-lts"),
Version: pulumi.String("latest"),
},
})
if err != nil {
return err
}
exampleRestorePointCollection, err := compute.NewRestorePointCollection(ctx, "example", &compute.RestorePointCollectionArgs{
Name: pulumi.String("example-collection"),
ResourceGroupName: example.Name,
Location: exampleLinuxVirtualMachine.Location,
SourceVirtualMachineId: exampleLinuxVirtualMachine.ID(),
})
if err != nil {
return err
}
_, err = compute.NewRestorePoint(ctx, "example", &compute.RestorePointArgs{
Name: pulumi.String("example-restore-point"),
VirtualMachineRestorePointCollectionId: exampleRestorePointCollection.ID(),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
using Std = Pulumi.Std;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
{
Name = "example-network",
AddressSpaces = new[]
{
"10.0.0.0/16",
},
Location = example.Location,
ResourceGroupName = example.Name,
});
var exampleSubnet = new Azure.Network.Subnet("example", new()
{
Name = "internal",
ResourceGroupName = example.Name,
VirtualNetworkName = exampleVirtualNetwork.Name,
AddressPrefixes = new[]
{
"10.0.2.0/24",
},
});
var exampleNetworkInterface = new Azure.Network.NetworkInterface("example", new()
{
Name = "example-nic",
Location = example.Location,
ResourceGroupName = example.Name,
IpConfigurations = new[]
{
new Azure.Network.Inputs.NetworkInterfaceIpConfigurationArgs
{
Name = "internal",
SubnetId = exampleSubnet.Id,
PrivateIpAddressAllocation = "Dynamic",
},
},
});
var exampleLinuxVirtualMachine = new Azure.Compute.LinuxVirtualMachine("example", new()
{
Name = "example-machine",
ResourceGroupName = example.Name,
Location = example.Location,
Size = "Standard_F2",
AdminUsername = "adminuser",
NetworkInterfaceIds = new[]
{
exampleNetworkInterface.Id,
},
AdminSshKeys = new[]
{
new Azure.Compute.Inputs.LinuxVirtualMachineAdminSshKeyArgs
{
Username = "adminuser",
PublicKey = Std.File.Invoke(new()
{
Input = "~/.ssh/id_rsa.pub",
}).Apply(invoke => invoke.Result),
},
},
OsDisk = new Azure.Compute.Inputs.LinuxVirtualMachineOsDiskArgs
{
Caching = "ReadWrite",
StorageAccountType = "Standard_LRS",
},
SourceImageReference = new Azure.Compute.Inputs.LinuxVirtualMachineSourceImageReferenceArgs
{
Publisher = "Canonical",
Offer = "0001-com-ubuntu-server-jammy",
Sku = "22_04-lts",
Version = "latest",
},
});
var exampleRestorePointCollection = new Azure.Compute.RestorePointCollection("example", new()
{
Name = "example-collection",
ResourceGroupName = example.Name,
Location = exampleLinuxVirtualMachine.Location,
SourceVirtualMachineId = exampleLinuxVirtualMachine.Id,
});
var exampleRestorePoint = new Azure.Compute.RestorePoint("example", new()
{
Name = "example-restore-point",
VirtualMachineRestorePointCollectionId = exampleRestorePointCollection.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.network.Subnet;
import com.pulumi.azure.network.SubnetArgs;
import com.pulumi.azure.network.NetworkInterface;
import com.pulumi.azure.network.NetworkInterfaceArgs;
import com.pulumi.azure.network.inputs.NetworkInterfaceIpConfigurationArgs;
import com.pulumi.azure.compute.LinuxVirtualMachine;
import com.pulumi.azure.compute.LinuxVirtualMachineArgs;
import com.pulumi.azure.compute.inputs.LinuxVirtualMachineAdminSshKeyArgs;
import com.pulumi.azure.compute.inputs.LinuxVirtualMachineOsDiskArgs;
import com.pulumi.azure.compute.inputs.LinuxVirtualMachineSourceImageReferenceArgs;
import com.pulumi.azure.compute.RestorePointCollection;
import com.pulumi.azure.compute.RestorePointCollectionArgs;
import com.pulumi.azure.compute.RestorePoint;
import com.pulumi.azure.compute.RestorePointArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
.name("example-network")
.addressSpaces("10.0.0.0/16")
.location(example.location())
.resourceGroupName(example.name())
.build());
var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
.name("internal")
.resourceGroupName(example.name())
.virtualNetworkName(exampleVirtualNetwork.name())
.addressPrefixes("10.0.2.0/24")
.build());
var exampleNetworkInterface = new NetworkInterface("exampleNetworkInterface", NetworkInterfaceArgs.builder()
.name("example-nic")
.location(example.location())
.resourceGroupName(example.name())
.ipConfigurations(NetworkInterfaceIpConfigurationArgs.builder()
.name("internal")
.subnetId(exampleSubnet.id())
.privateIpAddressAllocation("Dynamic")
.build())
.build());
var exampleLinuxVirtualMachine = new LinuxVirtualMachine("exampleLinuxVirtualMachine", LinuxVirtualMachineArgs.builder()
.name("example-machine")
.resourceGroupName(example.name())
.location(example.location())
.size("Standard_F2")
.adminUsername("adminuser")
.networkInterfaceIds(exampleNetworkInterface.id())
.adminSshKeys(LinuxVirtualMachineAdminSshKeyArgs.builder()
.username("adminuser")
.publicKey(StdFunctions.file(FileArgs.builder()
.input("~/.ssh/id_rsa.pub")
.build()).result())
.build())
.osDisk(LinuxVirtualMachineOsDiskArgs.builder()
.caching("ReadWrite")
.storageAccountType("Standard_LRS")
.build())
.sourceImageReference(LinuxVirtualMachineSourceImageReferenceArgs.builder()
.publisher("Canonical")
.offer("0001-com-ubuntu-server-jammy")
.sku("22_04-lts")
.version("latest")
.build())
.build());
var exampleRestorePointCollection = new RestorePointCollection("exampleRestorePointCollection", RestorePointCollectionArgs.builder()
.name("example-collection")
.resourceGroupName(example.name())
.location(exampleLinuxVirtualMachine.location())
.sourceVirtualMachineId(exampleLinuxVirtualMachine.id())
.build());
var exampleRestorePoint = new RestorePoint("exampleRestorePoint", RestorePointArgs.builder()
.name("example-restore-point")
.virtualMachineRestorePointCollectionId(exampleRestorePointCollection.id())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleVirtualNetwork:
type: azure:network:VirtualNetwork
name: example
properties:
name: example-network
addressSpaces:
- 10.0.0.0/16
location: ${example.location}
resourceGroupName: ${example.name}
exampleSubnet:
type: azure:network:Subnet
name: example
properties:
name: internal
resourceGroupName: ${example.name}
virtualNetworkName: ${exampleVirtualNetwork.name}
addressPrefixes:
- 10.0.2.0/24
exampleNetworkInterface:
type: azure:network:NetworkInterface
name: example
properties:
name: example-nic
location: ${example.location}
resourceGroupName: ${example.name}
ipConfigurations:
- name: internal
subnetId: ${exampleSubnet.id}
privateIpAddressAllocation: Dynamic
exampleLinuxVirtualMachine:
type: azure:compute:LinuxVirtualMachine
name: example
properties:
name: example-machine
resourceGroupName: ${example.name}
location: ${example.location}
size: Standard_F2
adminUsername: adminuser
networkInterfaceIds:
- ${exampleNetworkInterface.id}
adminSshKeys:
- username: adminuser
publicKey:
fn::invoke:
function: std:file
arguments:
input: ~/.ssh/id_rsa.pub
return: result
osDisk:
caching: ReadWrite
storageAccountType: Standard_LRS
sourceImageReference:
publisher: Canonical
offer: 0001-com-ubuntu-server-jammy
sku: 22_04-lts
version: latest
exampleRestorePointCollection:
type: azure:compute:RestorePointCollection
name: example
properties:
name: example-collection
resourceGroupName: ${example.name}
location: ${exampleLinuxVirtualMachine.location}
sourceVirtualMachineId: ${exampleLinuxVirtualMachine.id}
exampleRestorePoint:
type: azure:compute:RestorePoint
name: example
properties:
name: example-restore-point
virtualMachineRestorePointCollectionId: ${exampleRestorePointCollection.id}
Create RestorePoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RestorePoint(name: string, args: RestorePointArgs, opts?: CustomResourceOptions);
@overload
def RestorePoint(resource_name: str,
args: RestorePointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RestorePoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
virtual_machine_restore_point_collection_id: Optional[str] = None,
crash_consistency_mode_enabled: Optional[bool] = None,
excluded_disks: Optional[Sequence[str]] = None,
name: Optional[str] = None)
func NewRestorePoint(ctx *Context, name string, args RestorePointArgs, opts ...ResourceOption) (*RestorePoint, error)
public RestorePoint(string name, RestorePointArgs args, CustomResourceOptions? opts = null)
public RestorePoint(String name, RestorePointArgs args)
public RestorePoint(String name, RestorePointArgs args, CustomResourceOptions options)
type: azure:compute:RestorePoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RestorePointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RestorePointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RestorePointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RestorePointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RestorePointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var restorePointResource = new Azure.Compute.RestorePoint("restorePointResource", new()
{
VirtualMachineRestorePointCollectionId = "string",
CrashConsistencyModeEnabled = false,
ExcludedDisks = new[]
{
"string",
},
Name = "string",
});
example, err := compute.NewRestorePoint(ctx, "restorePointResource", &compute.RestorePointArgs{
VirtualMachineRestorePointCollectionId: pulumi.String("string"),
CrashConsistencyModeEnabled: pulumi.Bool(false),
ExcludedDisks: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
})
var restorePointResource = new RestorePoint("restorePointResource", RestorePointArgs.builder()
.virtualMachineRestorePointCollectionId("string")
.crashConsistencyModeEnabled(false)
.excludedDisks("string")
.name("string")
.build());
restore_point_resource = azure.compute.RestorePoint("restorePointResource",
virtual_machine_restore_point_collection_id="string",
crash_consistency_mode_enabled=False,
excluded_disks=["string"],
name="string")
const restorePointResource = new azure.compute.RestorePoint("restorePointResource", {
virtualMachineRestorePointCollectionId: "string",
crashConsistencyModeEnabled: false,
excludedDisks: ["string"],
name: "string",
});
type: azure:compute:RestorePoint
properties:
crashConsistencyModeEnabled: false
excludedDisks:
- string
name: string
virtualMachineRestorePointCollectionId: string
RestorePoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The RestorePoint resource accepts the following input properties:
- Virtual
Machine stringRestore Point Collection Id - 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.
- Crash
Consistency boolMode Enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - Excluded
Disks List<string> - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- Virtual
Machine stringRestore Point Collection Id - 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.
- Crash
Consistency boolMode Enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - Excluded
Disks []string - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- virtual
Machine StringRestore Point Collection Id - 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.
- crash
Consistency BooleanMode Enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - excluded
Disks List<String> - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- virtual
Machine stringRestore Point Collection Id - 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.
- crash
Consistency booleanMode Enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - excluded
Disks string[] - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- virtual_
machine_ strrestore_ point_ collection_ id - 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.
- crash_
consistency_ boolmode_ enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - excluded_
disks Sequence[str] - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- virtual
Machine StringRestore Point Collection Id - 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.
- crash
Consistency BooleanMode Enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - excluded
Disks List<String> - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the RestorePoint resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing RestorePoint Resource
Get an existing RestorePoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: RestorePointState, opts?: CustomResourceOptions): RestorePoint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
crash_consistency_mode_enabled: Optional[bool] = None,
excluded_disks: Optional[Sequence[str]] = None,
name: Optional[str] = None,
virtual_machine_restore_point_collection_id: Optional[str] = None) -> RestorePoint
func GetRestorePoint(ctx *Context, name string, id IDInput, state *RestorePointState, opts ...ResourceOption) (*RestorePoint, error)
public static RestorePoint Get(string name, Input<string> id, RestorePointState? state, CustomResourceOptions? opts = null)
public static RestorePoint get(String name, Output<String> id, RestorePointState state, CustomResourceOptions options)
resources: _: type: azure:compute:RestorePoint get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Crash
Consistency boolMode Enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - Excluded
Disks List<string> - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- Virtual
Machine stringRestore Point Collection Id - 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.
- Crash
Consistency boolMode Enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - Excluded
Disks []string - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- Virtual
Machine stringRestore Point Collection Id - 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.
- crash
Consistency BooleanMode Enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - excluded
Disks List<String> - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- virtual
Machine StringRestore Point Collection Id - 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.
- crash
Consistency booleanMode Enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - excluded
Disks string[] - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- virtual
Machine stringRestore Point Collection Id - 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.
- crash_
consistency_ boolmode_ enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - excluded_
disks Sequence[str] - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- virtual_
machine_ strrestore_ point_ collection_ id - 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.
- crash
Consistency BooleanMode Enabled - Whether the Consistency Mode of the Virtual Machine Restore Point is set to
CrashConsistent
. Defaults tofalse
. Changing this forces a new resource to be created. - excluded
Disks List<String> - A list of disks that will be excluded from the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Virtual Machine Restore Point. Changing this forces a new resource to be created.
- virtual
Machine StringRestore Point Collection Id - 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.
Import
Virtual Machine Restore Point can be imported using the resource id
, e.g.
$ pulumi import azure:compute/restorePoint:RestorePoint example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Compute/restorePointCollections/collection1/restorePoints/restorePoint1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.