1. Packages
  2. Azure Native v2
  3. API Docs
  4. compute
  5. Snapshot
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.compute.Snapshot

Explore with Pulumi AI

Snapshot resource. Azure REST API version: 2022-07-02. Prior API version in Azure Native 1.x: 2020-12-01.

Other available API versions: 2023-01-02, 2023-04-02, 2023-10-02, 2024-03-02.

Example Usage

Create a snapshot by importing an unmanaged blob from a different subscription.

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var snapshot = new AzureNative.Compute.Snapshot("snapshot", new()
    {
        CreationData = new AzureNative.Compute.Inputs.CreationDataArgs
        {
            CreateOption = AzureNative.Compute.DiskCreateOption.Import,
            SourceUri = "https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd",
            StorageAccountId = "subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount",
        },
        Location = "West US",
        ResourceGroupName = "myResourceGroup",
        SnapshotName = "mySnapshot1",
    });

});
Copy
package main

import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewSnapshot(ctx, "snapshot", &compute.SnapshotArgs{
			CreationData: &compute.CreationDataArgs{
				CreateOption:     pulumi.String(compute.DiskCreateOptionImport),
				SourceUri:        pulumi.String("https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd"),
				StorageAccountId: pulumi.String("subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount"),
			},
			Location:          pulumi.String("West US"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SnapshotName:      pulumi.String("mySnapshot1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.Snapshot;
import com.pulumi.azurenative.compute.SnapshotArgs;
import com.pulumi.azurenative.compute.inputs.CreationDataArgs;
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 snapshot = new Snapshot("snapshot", SnapshotArgs.builder()
            .creationData(CreationDataArgs.builder()
                .createOption("Import")
                .sourceUri("https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd")
                .storageAccountId("subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount")
                .build())
            .location("West US")
            .resourceGroupName("myResourceGroup")
            .snapshotName("mySnapshot1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const snapshot = new azure_native.compute.Snapshot("snapshot", {
    creationData: {
        createOption: azure_native.compute.DiskCreateOption.Import,
        sourceUri: "https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd",
        storageAccountId: "subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount",
    },
    location: "West US",
    resourceGroupName: "myResourceGroup",
    snapshotName: "mySnapshot1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

snapshot = azure_native.compute.Snapshot("snapshot",
    creation_data={
        "create_option": azure_native.compute.DiskCreateOption.IMPORT_,
        "source_uri": "https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd",
        "storage_account_id": "subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount",
    },
    location="West US",
    resource_group_name="myResourceGroup",
    snapshot_name="mySnapshot1")
Copy
resources:
  snapshot:
    type: azure-native:compute:Snapshot
    properties:
      creationData:
        createOption: Import
        sourceUri: https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd
        storageAccountId: subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount
      location: West US
      resourceGroupName: myResourceGroup
      snapshotName: mySnapshot1
Copy

Create a snapshot by importing an unmanaged blob from the same subscription.

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var snapshot = new AzureNative.Compute.Snapshot("snapshot", new()
    {
        CreationData = new AzureNative.Compute.Inputs.CreationDataArgs
        {
            CreateOption = AzureNative.Compute.DiskCreateOption.Import,
            SourceUri = "https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd",
        },
        Location = "West US",
        ResourceGroupName = "myResourceGroup",
        SnapshotName = "mySnapshot1",
    });

});
Copy
package main

import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewSnapshot(ctx, "snapshot", &compute.SnapshotArgs{
			CreationData: &compute.CreationDataArgs{
				CreateOption: pulumi.String(compute.DiskCreateOptionImport),
				SourceUri:    pulumi.String("https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd"),
			},
			Location:          pulumi.String("West US"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SnapshotName:      pulumi.String("mySnapshot1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.Snapshot;
import com.pulumi.azurenative.compute.SnapshotArgs;
import com.pulumi.azurenative.compute.inputs.CreationDataArgs;
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 snapshot = new Snapshot("snapshot", SnapshotArgs.builder()
            .creationData(CreationDataArgs.builder()
                .createOption("Import")
                .sourceUri("https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd")
                .build())
            .location("West US")
            .resourceGroupName("myResourceGroup")
            .snapshotName("mySnapshot1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const snapshot = new azure_native.compute.Snapshot("snapshot", {
    creationData: {
        createOption: azure_native.compute.DiskCreateOption.Import,
        sourceUri: "https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd",
    },
    location: "West US",
    resourceGroupName: "myResourceGroup",
    snapshotName: "mySnapshot1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

snapshot = azure_native.compute.Snapshot("snapshot",
    creation_data={
        "create_option": azure_native.compute.DiskCreateOption.IMPORT_,
        "source_uri": "https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd",
    },
    location="West US",
    resource_group_name="myResourceGroup",
    snapshot_name="mySnapshot1")
Copy
resources:
  snapshot:
    type: azure-native:compute:Snapshot
    properties:
      creationData:
        createOption: Import
        sourceUri: https://mystorageaccount.blob.core.windows.net/osimages/osimage.vhd
      location: West US
      resourceGroupName: myResourceGroup
      snapshotName: mySnapshot1
Copy

Create a snapshot from an existing snapshot in the same or a different subscription in a different region.

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var snapshot = new AzureNative.Compute.Snapshot("snapshot", new()
    {
        CreationData = new AzureNative.Compute.Inputs.CreationDataArgs
        {
            CreateOption = AzureNative.Compute.DiskCreateOption.CopyStart,
            SourceResourceId = "subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1",
        },
        Location = "West US",
        ResourceGroupName = "myResourceGroup",
        SnapshotName = "mySnapshot2",
    });

});
Copy
package main

import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewSnapshot(ctx, "snapshot", &compute.SnapshotArgs{
			CreationData: &compute.CreationDataArgs{
				CreateOption:     pulumi.String(compute.DiskCreateOptionCopyStart),
				SourceResourceId: pulumi.String("subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1"),
			},
			Location:          pulumi.String("West US"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SnapshotName:      pulumi.String("mySnapshot2"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.Snapshot;
import com.pulumi.azurenative.compute.SnapshotArgs;
import com.pulumi.azurenative.compute.inputs.CreationDataArgs;
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 snapshot = new Snapshot("snapshot", SnapshotArgs.builder()
            .creationData(CreationDataArgs.builder()
                .createOption("CopyStart")
                .sourceResourceId("subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1")
                .build())
            .location("West US")
            .resourceGroupName("myResourceGroup")
            .snapshotName("mySnapshot2")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const snapshot = new azure_native.compute.Snapshot("snapshot", {
    creationData: {
        createOption: azure_native.compute.DiskCreateOption.CopyStart,
        sourceResourceId: "subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1",
    },
    location: "West US",
    resourceGroupName: "myResourceGroup",
    snapshotName: "mySnapshot2",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

snapshot = azure_native.compute.Snapshot("snapshot",
    creation_data={
        "create_option": azure_native.compute.DiskCreateOption.COPY_START,
        "source_resource_id": "subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1",
    },
    location="West US",
    resource_group_name="myResourceGroup",
    snapshot_name="mySnapshot2")
Copy
resources:
  snapshot:
    type: azure-native:compute:Snapshot
    properties:
      creationData:
        createOption: CopyStart
        sourceResourceId: subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1
      location: West US
      resourceGroupName: myResourceGroup
      snapshotName: mySnapshot2
Copy

Create a snapshot from an existing snapshot in the same or a different subscription.

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var snapshot = new AzureNative.Compute.Snapshot("snapshot", new()
    {
        CreationData = new AzureNative.Compute.Inputs.CreationDataArgs
        {
            CreateOption = AzureNative.Compute.DiskCreateOption.Copy,
            SourceResourceId = "subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1",
        },
        Location = "West US",
        ResourceGroupName = "myResourceGroup",
        SnapshotName = "mySnapshot2",
    });

});
Copy
package main

import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewSnapshot(ctx, "snapshot", &compute.SnapshotArgs{
			CreationData: &compute.CreationDataArgs{
				CreateOption:     pulumi.String(compute.DiskCreateOptionCopy),
				SourceResourceId: pulumi.String("subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1"),
			},
			Location:          pulumi.String("West US"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			SnapshotName:      pulumi.String("mySnapshot2"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.Snapshot;
import com.pulumi.azurenative.compute.SnapshotArgs;
import com.pulumi.azurenative.compute.inputs.CreationDataArgs;
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 snapshot = new Snapshot("snapshot", SnapshotArgs.builder()
            .creationData(CreationDataArgs.builder()
                .createOption("Copy")
                .sourceResourceId("subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1")
                .build())
            .location("West US")
            .resourceGroupName("myResourceGroup")
            .snapshotName("mySnapshot2")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const snapshot = new azure_native.compute.Snapshot("snapshot", {
    creationData: {
        createOption: azure_native.compute.DiskCreateOption.Copy,
        sourceResourceId: "subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1",
    },
    location: "West US",
    resourceGroupName: "myResourceGroup",
    snapshotName: "mySnapshot2",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

snapshot = azure_native.compute.Snapshot("snapshot",
    creation_data={
        "create_option": azure_native.compute.DiskCreateOption.COPY,
        "source_resource_id": "subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1",
    },
    location="West US",
    resource_group_name="myResourceGroup",
    snapshot_name="mySnapshot2")
Copy
resources:
  snapshot:
    type: azure-native:compute:Snapshot
    properties:
      creationData:
        createOption: Copy
        sourceResourceId: subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/snapshots/mySnapshot1
      location: West US
      resourceGroupName: myResourceGroup
      snapshotName: mySnapshot2
Copy

Create Snapshot Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Snapshot(name: string, args: SnapshotArgs, opts?: CustomResourceOptions);
@overload
def Snapshot(resource_name: str,
             args: SnapshotArgs,
             opts: Optional[ResourceOptions] = None)

@overload
def Snapshot(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             creation_data: Optional[CreationDataArgs] = None,
             resource_group_name: Optional[str] = None,
             incremental: Optional[bool] = None,
             os_type: Optional[OperatingSystemTypes] = None,
             disk_access_id: Optional[str] = None,
             disk_size_gb: Optional[int] = None,
             encryption: Optional[EncryptionArgs] = None,
             encryption_settings_collection: Optional[EncryptionSettingsCollectionArgs] = None,
             extended_location: Optional[ExtendedLocationArgs] = None,
             hyper_v_generation: Optional[Union[str, HyperVGeneration]] = None,
             completion_percent: Optional[float] = None,
             location: Optional[str] = None,
             network_access_policy: Optional[Union[str, NetworkAccessPolicy]] = None,
             data_access_auth_mode: Optional[Union[str, DataAccessAuthMode]] = None,
             public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
             purchase_plan: Optional[PurchasePlanArgs] = None,
             copy_completion_error: Optional[CopyCompletionErrorArgs] = None,
             security_profile: Optional[DiskSecurityProfileArgs] = None,
             sku: Optional[SnapshotSkuArgs] = None,
             snapshot_name: Optional[str] = None,
             supported_capabilities: Optional[SupportedCapabilitiesArgs] = None,
             supports_hibernation: Optional[bool] = None,
             tags: Optional[Mapping[str, str]] = None)
func NewSnapshot(ctx *Context, name string, args SnapshotArgs, opts ...ResourceOption) (*Snapshot, error)
public Snapshot(string name, SnapshotArgs args, CustomResourceOptions? opts = null)
public Snapshot(String name, SnapshotArgs args)
public Snapshot(String name, SnapshotArgs args, CustomResourceOptions options)
type: azure-native:compute:Snapshot
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SnapshotArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SnapshotArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SnapshotArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SnapshotArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SnapshotArgs
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 snapshotResource = new AzureNative.Compute.Snapshot("snapshotResource", new()
{
    CreationData = 
    {
        { "createOption", "string" },
        { "galleryImageReference", 
        {
            { "communityGalleryImageId", "string" },
            { "id", "string" },
            { "lun", 0 },
            { "sharedGalleryImageId", "string" },
        } },
        { "imageReference", 
        {
            { "communityGalleryImageId", "string" },
            { "id", "string" },
            { "lun", 0 },
            { "sharedGalleryImageId", "string" },
        } },
        { "logicalSectorSize", 0 },
        { "performancePlus", false },
        { "securityDataUri", "string" },
        { "sourceResourceId", "string" },
        { "sourceUri", "string" },
        { "storageAccountId", "string" },
        { "uploadSizeBytes", 0 },
    },
    ResourceGroupName = "string",
    Incremental = false,
    OsType = "Windows",
    DiskAccessId = "string",
    DiskSizeGB = 0,
    Encryption = 
    {
        { "diskEncryptionSetId", "string" },
        { "type", "string" },
    },
    EncryptionSettingsCollection = 
    {
        { "enabled", false },
        { "encryptionSettings", new[]
        {
            
            {
                { "diskEncryptionKey", 
                {
                    { "secretUrl", "string" },
                    { "sourceVault", 
                    {
                        { "id", "string" },
                    } },
                } },
                { "keyEncryptionKey", 
                {
                    { "keyUrl", "string" },
                    { "sourceVault", 
                    {
                        { "id", "string" },
                    } },
                } },
            },
        } },
        { "encryptionSettingsVersion", "string" },
    },
    ExtendedLocation = 
    {
        { "name", "string" },
        { "type", "string" },
    },
    HyperVGeneration = "string",
    CompletionPercent = 0,
    Location = "string",
    NetworkAccessPolicy = "string",
    DataAccessAuthMode = "string",
    PublicNetworkAccess = "string",
    PurchasePlan = 
    {
        { "name", "string" },
        { "product", "string" },
        { "publisher", "string" },
        { "promotionCode", "string" },
    },
    CopyCompletionError = 
    {
        { "errorCode", "string" },
        { "errorMessage", "string" },
    },
    SecurityProfile = 
    {
        { "secureVMDiskEncryptionSetId", "string" },
        { "securityType", "string" },
    },
    Sku = 
    {
        { "name", "string" },
    },
    SnapshotName = "string",
    SupportedCapabilities = 
    {
        { "acceleratedNetwork", false },
        { "architecture", "string" },
        { "diskControllerTypes", "string" },
    },
    SupportsHibernation = false,
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := compute.NewSnapshot(ctx, "snapshotResource", &compute.SnapshotArgs{
	CreationData: map[string]interface{}{
		"createOption": "string",
		"galleryImageReference": map[string]interface{}{
			"communityGalleryImageId": "string",
			"id":                      "string",
			"lun":                     0,
			"sharedGalleryImageId":    "string",
		},
		"imageReference": map[string]interface{}{
			"communityGalleryImageId": "string",
			"id":                      "string",
			"lun":                     0,
			"sharedGalleryImageId":    "string",
		},
		"logicalSectorSize": 0,
		"performancePlus":   false,
		"securityDataUri":   "string",
		"sourceResourceId":  "string",
		"sourceUri":         "string",
		"storageAccountId":  "string",
		"uploadSizeBytes":   0,
	},
	ResourceGroupName: "string",
	Incremental:       false,
	OsType:            "Windows",
	DiskAccessId:      "string",
	DiskSizeGB:        0,
	Encryption: map[string]interface{}{
		"diskEncryptionSetId": "string",
		"type":                "string",
	},
	EncryptionSettingsCollection: map[string]interface{}{
		"enabled": false,
		"encryptionSettings": []map[string]interface{}{
			map[string]interface{}{
				"diskEncryptionKey": map[string]interface{}{
					"secretUrl": "string",
					"sourceVault": map[string]interface{}{
						"id": "string",
					},
				},
				"keyEncryptionKey": map[string]interface{}{
					"keyUrl": "string",
					"sourceVault": map[string]interface{}{
						"id": "string",
					},
				},
			},
		},
		"encryptionSettingsVersion": "string",
	},
	ExtendedLocation: map[string]interface{}{
		"name": "string",
		"type": "string",
	},
	HyperVGeneration:    "string",
	CompletionPercent:   0,
	Location:            "string",
	NetworkAccessPolicy: "string",
	DataAccessAuthMode:  "string",
	PublicNetworkAccess: "string",
	PurchasePlan: map[string]interface{}{
		"name":          "string",
		"product":       "string",
		"publisher":     "string",
		"promotionCode": "string",
	},
	CopyCompletionError: map[string]interface{}{
		"errorCode":    "string",
		"errorMessage": "string",
	},
	SecurityProfile: map[string]interface{}{
		"secureVMDiskEncryptionSetId": "string",
		"securityType":                "string",
	},
	Sku: map[string]interface{}{
		"name": "string",
	},
	SnapshotName: "string",
	SupportedCapabilities: map[string]interface{}{
		"acceleratedNetwork":  false,
		"architecture":        "string",
		"diskControllerTypes": "string",
	},
	SupportsHibernation: false,
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var snapshotResource = new Snapshot("snapshotResource", SnapshotArgs.builder()
    .creationData(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .incremental(false)
    .osType("Windows")
    .diskAccessId("string")
    .diskSizeGB(0)
    .encryption(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .encryptionSettingsCollection(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .hyperVGeneration("string")
    .completionPercent(0)
    .location("string")
    .networkAccessPolicy("string")
    .dataAccessAuthMode("string")
    .publicNetworkAccess("string")
    .purchasePlan(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .copyCompletionError(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .securityProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .snapshotName("string")
    .supportedCapabilities(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .supportsHibernation(false)
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
snapshot_resource = azure_native.compute.Snapshot("snapshotResource",
    creation_data={
        createOption: string,
        galleryImageReference: {
            communityGalleryImageId: string,
            id: string,
            lun: 0,
            sharedGalleryImageId: string,
        },
        imageReference: {
            communityGalleryImageId: string,
            id: string,
            lun: 0,
            sharedGalleryImageId: string,
        },
        logicalSectorSize: 0,
        performancePlus: False,
        securityDataUri: string,
        sourceResourceId: string,
        sourceUri: string,
        storageAccountId: string,
        uploadSizeBytes: 0,
    },
    resource_group_name=string,
    incremental=False,
    os_type=Windows,
    disk_access_id=string,
    disk_size_gb=0,
    encryption={
        diskEncryptionSetId: string,
        type: string,
    },
    encryption_settings_collection={
        enabled: False,
        encryptionSettings: [{
            diskEncryptionKey: {
                secretUrl: string,
                sourceVault: {
                    id: string,
                },
            },
            keyEncryptionKey: {
                keyUrl: string,
                sourceVault: {
                    id: string,
                },
            },
        }],
        encryptionSettingsVersion: string,
    },
    extended_location={
        name: string,
        type: string,
    },
    hyper_v_generation=string,
    completion_percent=0,
    location=string,
    network_access_policy=string,
    data_access_auth_mode=string,
    public_network_access=string,
    purchase_plan={
        name: string,
        product: string,
        publisher: string,
        promotionCode: string,
    },
    copy_completion_error={
        errorCode: string,
        errorMessage: string,
    },
    security_profile={
        secureVMDiskEncryptionSetId: string,
        securityType: string,
    },
    sku={
        name: string,
    },
    snapshot_name=string,
    supported_capabilities={
        acceleratedNetwork: False,
        architecture: string,
        diskControllerTypes: string,
    },
    supports_hibernation=False,
    tags={
        string: string,
    })
Copy
const snapshotResource = new azure_native.compute.Snapshot("snapshotResource", {
    creationData: {
        createOption: "string",
        galleryImageReference: {
            communityGalleryImageId: "string",
            id: "string",
            lun: 0,
            sharedGalleryImageId: "string",
        },
        imageReference: {
            communityGalleryImageId: "string",
            id: "string",
            lun: 0,
            sharedGalleryImageId: "string",
        },
        logicalSectorSize: 0,
        performancePlus: false,
        securityDataUri: "string",
        sourceResourceId: "string",
        sourceUri: "string",
        storageAccountId: "string",
        uploadSizeBytes: 0,
    },
    resourceGroupName: "string",
    incremental: false,
    osType: "Windows",
    diskAccessId: "string",
    diskSizeGB: 0,
    encryption: {
        diskEncryptionSetId: "string",
        type: "string",
    },
    encryptionSettingsCollection: {
        enabled: false,
        encryptionSettings: [{
            diskEncryptionKey: {
                secretUrl: "string",
                sourceVault: {
                    id: "string",
                },
            },
            keyEncryptionKey: {
                keyUrl: "string",
                sourceVault: {
                    id: "string",
                },
            },
        }],
        encryptionSettingsVersion: "string",
    },
    extendedLocation: {
        name: "string",
        type: "string",
    },
    hyperVGeneration: "string",
    completionPercent: 0,
    location: "string",
    networkAccessPolicy: "string",
    dataAccessAuthMode: "string",
    publicNetworkAccess: "string",
    purchasePlan: {
        name: "string",
        product: "string",
        publisher: "string",
        promotionCode: "string",
    },
    copyCompletionError: {
        errorCode: "string",
        errorMessage: "string",
    },
    securityProfile: {
        secureVMDiskEncryptionSetId: "string",
        securityType: "string",
    },
    sku: {
        name: "string",
    },
    snapshotName: "string",
    supportedCapabilities: {
        acceleratedNetwork: false,
        architecture: "string",
        diskControllerTypes: "string",
    },
    supportsHibernation: false,
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:compute:Snapshot
properties:
    completionPercent: 0
    copyCompletionError:
        errorCode: string
        errorMessage: string
    creationData:
        createOption: string
        galleryImageReference:
            communityGalleryImageId: string
            id: string
            lun: 0
            sharedGalleryImageId: string
        imageReference:
            communityGalleryImageId: string
            id: string
            lun: 0
            sharedGalleryImageId: string
        logicalSectorSize: 0
        performancePlus: false
        securityDataUri: string
        sourceResourceId: string
        sourceUri: string
        storageAccountId: string
        uploadSizeBytes: 0
    dataAccessAuthMode: string
    diskAccessId: string
    diskSizeGB: 0
    encryption:
        diskEncryptionSetId: string
        type: string
    encryptionSettingsCollection:
        enabled: false
        encryptionSettings:
            - diskEncryptionKey:
                secretUrl: string
                sourceVault:
                    id: string
              keyEncryptionKey:
                keyUrl: string
                sourceVault:
                    id: string
        encryptionSettingsVersion: string
    extendedLocation:
        name: string
        type: string
    hyperVGeneration: string
    incremental: false
    location: string
    networkAccessPolicy: string
    osType: Windows
    publicNetworkAccess: string
    purchasePlan:
        name: string
        product: string
        promotionCode: string
        publisher: string
    resourceGroupName: string
    securityProfile:
        secureVMDiskEncryptionSetId: string
        securityType: string
    sku:
        name: string
    snapshotName: string
    supportedCapabilities:
        acceleratedNetwork: false
        architecture: string
        diskControllerTypes: string
    supportsHibernation: false
    tags:
        string: string
Copy

Snapshot 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 Snapshot resource accepts the following input properties:

CreationData This property is required. Pulumi.AzureNative.Compute.Inputs.CreationData
Disk source information. CreationData information cannot be changed after the disk has been created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
CompletionPercent double
Percentage complete for the background copy when a resource is created via the CopyStart operation.
CopyCompletionError Pulumi.AzureNative.Compute.Inputs.CopyCompletionError
Indicates the error details if the background copy of a resource created via the CopyStart operation fails.
DataAccessAuthMode string | Pulumi.AzureNative.Compute.DataAccessAuthMode
Additional authentication requirements when exporting or uploading to a disk or snapshot.
DiskAccessId string
ARM id of the DiskAccess resource for using private endpoints on disks.
DiskSizeGB int
If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size.
Encryption Pulumi.AzureNative.Compute.Inputs.Encryption
Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys.
EncryptionSettingsCollection Pulumi.AzureNative.Compute.Inputs.EncryptionSettingsCollection
Encryption settings collection used be Azure Disk Encryption, can contain multiple encryption settings per disk or snapshot.
ExtendedLocation Pulumi.AzureNative.Compute.Inputs.ExtendedLocation
The extended location where the snapshot will be created. Extended location cannot be changed.
HyperVGeneration string | Pulumi.AzureNative.Compute.HyperVGeneration
The hypervisor generation of the Virtual Machine. Applicable to OS disks only.
Incremental bool
Whether a snapshot is incremental. Incremental snapshots on the same disk occupy less space than full snapshots and can be diffed.
Location string
Resource location
NetworkAccessPolicy string | Pulumi.AzureNative.Compute.NetworkAccessPolicy
Policy for accessing the disk via network.
OsType Pulumi.AzureNative.Compute.OperatingSystemTypes
The Operating System type.
PublicNetworkAccess string | Pulumi.AzureNative.Compute.PublicNetworkAccess
Policy for controlling export on the disk.
PurchasePlan Pulumi.AzureNative.Compute.Inputs.PurchasePlan
Purchase plan information for the image from which the source disk for the snapshot was originally created.
SecurityProfile Pulumi.AzureNative.Compute.Inputs.DiskSecurityProfile
Contains the security related information for the resource.
Sku Pulumi.AzureNative.Compute.Inputs.SnapshotSku
The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot
SnapshotName Changes to this property will trigger replacement. string
The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.
SupportedCapabilities Pulumi.AzureNative.Compute.Inputs.SupportedCapabilities
List of supported capabilities for the image from which the source disk from the snapshot was originally created.
SupportsHibernation bool
Indicates the OS on a snapshot supports hibernation.
Tags Dictionary<string, string>
Resource tags
CreationData This property is required. CreationDataArgs
Disk source information. CreationData information cannot be changed after the disk has been created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
CompletionPercent float64
Percentage complete for the background copy when a resource is created via the CopyStart operation.
CopyCompletionError CopyCompletionErrorArgs
Indicates the error details if the background copy of a resource created via the CopyStart operation fails.
DataAccessAuthMode string | DataAccessAuthMode
Additional authentication requirements when exporting or uploading to a disk or snapshot.
DiskAccessId string
ARM id of the DiskAccess resource for using private endpoints on disks.
DiskSizeGB int
If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size.
Encryption EncryptionArgs
Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys.
EncryptionSettingsCollection EncryptionSettingsCollectionArgs
Encryption settings collection used be Azure Disk Encryption, can contain multiple encryption settings per disk or snapshot.
ExtendedLocation ExtendedLocationArgs
The extended location where the snapshot will be created. Extended location cannot be changed.
HyperVGeneration string | HyperVGeneration
The hypervisor generation of the Virtual Machine. Applicable to OS disks only.
Incremental bool
Whether a snapshot is incremental. Incremental snapshots on the same disk occupy less space than full snapshots and can be diffed.
Location string
Resource location
NetworkAccessPolicy string | NetworkAccessPolicy
Policy for accessing the disk via network.
OsType OperatingSystemTypes
The Operating System type.
PublicNetworkAccess string | PublicNetworkAccess
Policy for controlling export on the disk.
PurchasePlan PurchasePlanArgs
Purchase plan information for the image from which the source disk for the snapshot was originally created.
SecurityProfile DiskSecurityProfileArgs
Contains the security related information for the resource.
Sku SnapshotSkuArgs
The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot
SnapshotName Changes to this property will trigger replacement. string
The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.
SupportedCapabilities SupportedCapabilitiesArgs
List of supported capabilities for the image from which the source disk from the snapshot was originally created.
SupportsHibernation bool
Indicates the OS on a snapshot supports hibernation.
Tags map[string]string
Resource tags
creationData This property is required. CreationData
Disk source information. CreationData information cannot be changed after the disk has been created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
completionPercent Double
Percentage complete for the background copy when a resource is created via the CopyStart operation.
copyCompletionError CopyCompletionError
Indicates the error details if the background copy of a resource created via the CopyStart operation fails.
dataAccessAuthMode String | DataAccessAuthMode
Additional authentication requirements when exporting or uploading to a disk or snapshot.
diskAccessId String
ARM id of the DiskAccess resource for using private endpoints on disks.
diskSizeGB Integer
If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size.
encryption Encryption
Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys.
encryptionSettingsCollection EncryptionSettingsCollection
Encryption settings collection used be Azure Disk Encryption, can contain multiple encryption settings per disk or snapshot.
extendedLocation ExtendedLocation
The extended location where the snapshot will be created. Extended location cannot be changed.
hyperVGeneration String | HyperVGeneration
The hypervisor generation of the Virtual Machine. Applicable to OS disks only.
incremental Boolean
Whether a snapshot is incremental. Incremental snapshots on the same disk occupy less space than full snapshots and can be diffed.
location String
Resource location
networkAccessPolicy String | NetworkAccessPolicy
Policy for accessing the disk via network.
osType OperatingSystemTypes
The Operating System type.
publicNetworkAccess String | PublicNetworkAccess
Policy for controlling export on the disk.
purchasePlan PurchasePlan
Purchase plan information for the image from which the source disk for the snapshot was originally created.
securityProfile DiskSecurityProfile
Contains the security related information for the resource.
sku SnapshotSku
The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot
snapshotName Changes to this property will trigger replacement. String
The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.
supportedCapabilities SupportedCapabilities
List of supported capabilities for the image from which the source disk from the snapshot was originally created.
supportsHibernation Boolean
Indicates the OS on a snapshot supports hibernation.
tags Map<String,String>
Resource tags
creationData This property is required. CreationData
Disk source information. CreationData information cannot be changed after the disk has been created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
completionPercent number
Percentage complete for the background copy when a resource is created via the CopyStart operation.
copyCompletionError CopyCompletionError
Indicates the error details if the background copy of a resource created via the CopyStart operation fails.
dataAccessAuthMode string | DataAccessAuthMode
Additional authentication requirements when exporting or uploading to a disk or snapshot.
diskAccessId string
ARM id of the DiskAccess resource for using private endpoints on disks.
diskSizeGB number
If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size.
encryption Encryption
Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys.
encryptionSettingsCollection EncryptionSettingsCollection
Encryption settings collection used be Azure Disk Encryption, can contain multiple encryption settings per disk or snapshot.
extendedLocation ExtendedLocation
The extended location where the snapshot will be created. Extended location cannot be changed.
hyperVGeneration string | HyperVGeneration
The hypervisor generation of the Virtual Machine. Applicable to OS disks only.
incremental boolean
Whether a snapshot is incremental. Incremental snapshots on the same disk occupy less space than full snapshots and can be diffed.
location string
Resource location
networkAccessPolicy string | NetworkAccessPolicy
Policy for accessing the disk via network.
osType OperatingSystemTypes
The Operating System type.
publicNetworkAccess string | PublicNetworkAccess
Policy for controlling export on the disk.
purchasePlan PurchasePlan
Purchase plan information for the image from which the source disk for the snapshot was originally created.
securityProfile DiskSecurityProfile
Contains the security related information for the resource.
sku SnapshotSku
The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot
snapshotName Changes to this property will trigger replacement. string
The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.
supportedCapabilities SupportedCapabilities
List of supported capabilities for the image from which the source disk from the snapshot was originally created.
supportsHibernation boolean
Indicates the OS on a snapshot supports hibernation.
tags {[key: string]: string}
Resource tags
creation_data This property is required. CreationDataArgs
Disk source information. CreationData information cannot be changed after the disk has been created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
completion_percent float
Percentage complete for the background copy when a resource is created via the CopyStart operation.
copy_completion_error CopyCompletionErrorArgs
Indicates the error details if the background copy of a resource created via the CopyStart operation fails.
data_access_auth_mode str | DataAccessAuthMode
Additional authentication requirements when exporting or uploading to a disk or snapshot.
disk_access_id str
ARM id of the DiskAccess resource for using private endpoints on disks.
disk_size_gb int
If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size.
encryption EncryptionArgs
Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys.
encryption_settings_collection EncryptionSettingsCollectionArgs
Encryption settings collection used be Azure Disk Encryption, can contain multiple encryption settings per disk or snapshot.
extended_location ExtendedLocationArgs
The extended location where the snapshot will be created. Extended location cannot be changed.
hyper_v_generation str | HyperVGeneration
The hypervisor generation of the Virtual Machine. Applicable to OS disks only.
incremental bool
Whether a snapshot is incremental. Incremental snapshots on the same disk occupy less space than full snapshots and can be diffed.
location str
Resource location
network_access_policy str | NetworkAccessPolicy
Policy for accessing the disk via network.
os_type OperatingSystemTypes
The Operating System type.
public_network_access str | PublicNetworkAccess
Policy for controlling export on the disk.
purchase_plan PurchasePlanArgs
Purchase plan information for the image from which the source disk for the snapshot was originally created.
security_profile DiskSecurityProfileArgs
Contains the security related information for the resource.
sku SnapshotSkuArgs
The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot
snapshot_name Changes to this property will trigger replacement. str
The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.
supported_capabilities SupportedCapabilitiesArgs
List of supported capabilities for the image from which the source disk from the snapshot was originally created.
supports_hibernation bool
Indicates the OS on a snapshot supports hibernation.
tags Mapping[str, str]
Resource tags
creationData This property is required. Property Map
Disk source information. CreationData information cannot be changed after the disk has been created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
completionPercent Number
Percentage complete for the background copy when a resource is created via the CopyStart operation.
copyCompletionError Property Map
Indicates the error details if the background copy of a resource created via the CopyStart operation fails.
dataAccessAuthMode String | "AzureActiveDirectory" | "None"
Additional authentication requirements when exporting or uploading to a disk or snapshot.
diskAccessId String
ARM id of the DiskAccess resource for using private endpoints on disks.
diskSizeGB Number
If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size.
encryption Property Map
Encryption property can be used to encrypt data at rest with customer managed keys or platform managed keys.
encryptionSettingsCollection Property Map
Encryption settings collection used be Azure Disk Encryption, can contain multiple encryption settings per disk or snapshot.
extendedLocation Property Map
The extended location where the snapshot will be created. Extended location cannot be changed.
hyperVGeneration String | "V1" | "V2"
The hypervisor generation of the Virtual Machine. Applicable to OS disks only.
incremental Boolean
Whether a snapshot is incremental. Incremental snapshots on the same disk occupy less space than full snapshots and can be diffed.
location String
Resource location
networkAccessPolicy String | "AllowAll" | "AllowPrivate" | "DenyAll"
Policy for accessing the disk via network.
osType "Windows" | "Linux"
The Operating System type.
publicNetworkAccess String | "Enabled" | "Disabled"
Policy for controlling export on the disk.
purchasePlan Property Map
Purchase plan information for the image from which the source disk for the snapshot was originally created.
securityProfile Property Map
Contains the security related information for the resource.
sku Property Map
The snapshots sku name. Can be Standard_LRS, Premium_LRS, or Standard_ZRS. This is an optional parameter for incremental snapshot and the default behavior is the SKU will be set to the same sku as the previous snapshot
snapshotName Changes to this property will trigger replacement. String
The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name length is 80 characters.
supportedCapabilities Property Map
List of supported capabilities for the image from which the source disk from the snapshot was originally created.
supportsHibernation Boolean
Indicates the OS on a snapshot supports hibernation.
tags Map<String>
Resource tags

Outputs

All input properties are implicitly available as output properties. Additionally, the Snapshot resource produces the following output properties:

DiskSizeBytes double
The size of the disk in bytes. This field is read only.
DiskState string
The state of the snapshot.
Id string
The provider-assigned unique ID for this managed resource.
IncrementalSnapshotFamilyId string
Incremental snapshots for a disk share an incremental snapshot family id. The Get Page Range Diff API can only be called on incremental snapshots with the same family id.
ManagedBy string
Unused. Always Null.
Name string
Resource name
ProvisioningState string
The disk provisioning state.
TimeCreated string
The time when the snapshot was created.
Type string
Resource type
UniqueId string
Unique Guid identifying the resource.
DiskSizeBytes float64
The size of the disk in bytes. This field is read only.
DiskState string
The state of the snapshot.
Id string
The provider-assigned unique ID for this managed resource.
IncrementalSnapshotFamilyId string
Incremental snapshots for a disk share an incremental snapshot family id. The Get Page Range Diff API can only be called on incremental snapshots with the same family id.
ManagedBy string
Unused. Always Null.
Name string
Resource name
ProvisioningState string
The disk provisioning state.
TimeCreated string
The time when the snapshot was created.
Type string
Resource type
UniqueId string
Unique Guid identifying the resource.
diskSizeBytes Double
The size of the disk in bytes. This field is read only.
diskState String
The state of the snapshot.
id String
The provider-assigned unique ID for this managed resource.
incrementalSnapshotFamilyId String
Incremental snapshots for a disk share an incremental snapshot family id. The Get Page Range Diff API can only be called on incremental snapshots with the same family id.
managedBy String
Unused. Always Null.
name String
Resource name
provisioningState String
The disk provisioning state.
timeCreated String
The time when the snapshot was created.
type String
Resource type
uniqueId String
Unique Guid identifying the resource.
diskSizeBytes number
The size of the disk in bytes. This field is read only.
diskState string
The state of the snapshot.
id string
The provider-assigned unique ID for this managed resource.
incrementalSnapshotFamilyId string
Incremental snapshots for a disk share an incremental snapshot family id. The Get Page Range Diff API can only be called on incremental snapshots with the same family id.
managedBy string
Unused. Always Null.
name string
Resource name
provisioningState string
The disk provisioning state.
timeCreated string
The time when the snapshot was created.
type string
Resource type
uniqueId string
Unique Guid identifying the resource.
disk_size_bytes float
The size of the disk in bytes. This field is read only.
disk_state str
The state of the snapshot.
id str
The provider-assigned unique ID for this managed resource.
incremental_snapshot_family_id str
Incremental snapshots for a disk share an incremental snapshot family id. The Get Page Range Diff API can only be called on incremental snapshots with the same family id.
managed_by str
Unused. Always Null.
name str
Resource name
provisioning_state str
The disk provisioning state.
time_created str
The time when the snapshot was created.
type str
Resource type
unique_id str
Unique Guid identifying the resource.
diskSizeBytes Number
The size of the disk in bytes. This field is read only.
diskState String
The state of the snapshot.
id String
The provider-assigned unique ID for this managed resource.
incrementalSnapshotFamilyId String
Incremental snapshots for a disk share an incremental snapshot family id. The Get Page Range Diff API can only be called on incremental snapshots with the same family id.
managedBy String
Unused. Always Null.
name String
Resource name
provisioningState String
The disk provisioning state.
timeCreated String
The time when the snapshot was created.
type String
Resource type
uniqueId String
Unique Guid identifying the resource.

Supporting Types

Architecture
, ArchitectureArgs

X64
x64
Arm64
Arm64
ArchitectureX64
x64
ArchitectureArm64
Arm64
X64
x64
Arm64
Arm64
X64
x64
Arm64
Arm64
X64
x64
ARM64
Arm64
"x64"
x64
"Arm64"
Arm64

CopyCompletionError
, CopyCompletionErrorArgs

ErrorCode This property is required. string | Pulumi.AzureNative.Compute.CopyCompletionErrorReason
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
ErrorMessage This property is required. string
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
ErrorCode This property is required. string | CopyCompletionErrorReason
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
ErrorMessage This property is required. string
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
errorCode This property is required. String | CopyCompletionErrorReason
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
errorMessage This property is required. String
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
errorCode This property is required. string | CopyCompletionErrorReason
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
errorMessage This property is required. string
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
error_code This property is required. str | CopyCompletionErrorReason
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
error_message This property is required. str
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
errorCode This property is required. String | "CopySourceNotFound"
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
errorMessage This property is required. String
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.

CopyCompletionErrorReason
, CopyCompletionErrorReasonArgs

CopySourceNotFound
CopySourceNotFoundIndicates that the source snapshot was deleted while the background copy of the resource created via CopyStart operation was in progress.
CopyCompletionErrorReasonCopySourceNotFound
CopySourceNotFoundIndicates that the source snapshot was deleted while the background copy of the resource created via CopyStart operation was in progress.
CopySourceNotFound
CopySourceNotFoundIndicates that the source snapshot was deleted while the background copy of the resource created via CopyStart operation was in progress.
CopySourceNotFound
CopySourceNotFoundIndicates that the source snapshot was deleted while the background copy of the resource created via CopyStart operation was in progress.
COPY_SOURCE_NOT_FOUND
CopySourceNotFoundIndicates that the source snapshot was deleted while the background copy of the resource created via CopyStart operation was in progress.
"CopySourceNotFound"
CopySourceNotFoundIndicates that the source snapshot was deleted while the background copy of the resource created via CopyStart operation was in progress.

CopyCompletionErrorResponse
, CopyCompletionErrorResponseArgs

ErrorCode This property is required. string
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
ErrorMessage This property is required. string
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
ErrorCode This property is required. string
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
ErrorMessage This property is required. string
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
errorCode This property is required. String
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
errorMessage This property is required. String
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
errorCode This property is required. string
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
errorMessage This property is required. string
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
error_code This property is required. str
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
error_message This property is required. str
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.
errorCode This property is required. String
Indicates the error code if the background copy of a resource created via the CopyStart operation fails.
errorMessage This property is required. String
Indicates the error message if the background copy of a resource created via the CopyStart operation fails.

CreationData
, CreationDataArgs

CreateOption This property is required. string | Pulumi.AzureNative.Compute.DiskCreateOption
This enumerates the possible sources of a disk's creation.
GalleryImageReference Pulumi.AzureNative.Compute.Inputs.ImageDiskReference
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
ImageReference Pulumi.AzureNative.Compute.Inputs.ImageDiskReference
Disk source information for PIR or user images.
LogicalSectorSize int
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
PerformancePlus bool
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
SecurityDataUri string
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
SourceResourceId string
If createOption is Copy, this is the ARM id of the source snapshot or disk.
SourceUri string
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
StorageAccountId string
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
UploadSizeBytes double
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
CreateOption This property is required. string | DiskCreateOption
This enumerates the possible sources of a disk's creation.
GalleryImageReference ImageDiskReference
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
ImageReference ImageDiskReference
Disk source information for PIR or user images.
LogicalSectorSize int
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
PerformancePlus bool
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
SecurityDataUri string
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
SourceResourceId string
If createOption is Copy, this is the ARM id of the source snapshot or disk.
SourceUri string
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
StorageAccountId string
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
UploadSizeBytes float64
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
createOption This property is required. String | DiskCreateOption
This enumerates the possible sources of a disk's creation.
galleryImageReference ImageDiskReference
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
imageReference ImageDiskReference
Disk source information for PIR or user images.
logicalSectorSize Integer
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
performancePlus Boolean
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
securityDataUri String
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
sourceResourceId String
If createOption is Copy, this is the ARM id of the source snapshot or disk.
sourceUri String
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
storageAccountId String
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
uploadSizeBytes Double
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
createOption This property is required. string | DiskCreateOption
This enumerates the possible sources of a disk's creation.
galleryImageReference ImageDiskReference
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
imageReference ImageDiskReference
Disk source information for PIR or user images.
logicalSectorSize number
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
performancePlus boolean
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
securityDataUri string
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
sourceResourceId string
If createOption is Copy, this is the ARM id of the source snapshot or disk.
sourceUri string
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
storageAccountId string
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
uploadSizeBytes number
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
create_option This property is required. str | DiskCreateOption
This enumerates the possible sources of a disk's creation.
gallery_image_reference ImageDiskReference
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
image_reference ImageDiskReference
Disk source information for PIR or user images.
logical_sector_size int
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
performance_plus bool
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
security_data_uri str
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
source_resource_id str
If createOption is Copy, this is the ARM id of the source snapshot or disk.
source_uri str
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
storage_account_id str
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
upload_size_bytes float
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
createOption This property is required. String | "Empty" | "Attach" | "FromImage" | "Import" | "Copy" | "Restore" | "Upload" | "CopyStart" | "ImportSecure" | "UploadPreparedSecure"
This enumerates the possible sources of a disk's creation.
galleryImageReference Property Map
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
imageReference Property Map
Disk source information for PIR or user images.
logicalSectorSize Number
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
performancePlus Boolean
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
securityDataUri String
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
sourceResourceId String
If createOption is Copy, this is the ARM id of the source snapshot or disk.
sourceUri String
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
storageAccountId String
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
uploadSizeBytes Number
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).

CreationDataResponse
, CreationDataResponseArgs

CreateOption This property is required. string
This enumerates the possible sources of a disk's creation.
SourceUniqueId This property is required. string
If this field is set, this is the unique id identifying the source of this resource.
GalleryImageReference Pulumi.AzureNative.Compute.Inputs.ImageDiskReferenceResponse
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
ImageReference Pulumi.AzureNative.Compute.Inputs.ImageDiskReferenceResponse
Disk source information for PIR or user images.
LogicalSectorSize int
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
PerformancePlus bool
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
SecurityDataUri string
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
SourceResourceId string
If createOption is Copy, this is the ARM id of the source snapshot or disk.
SourceUri string
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
StorageAccountId string
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
UploadSizeBytes double
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
CreateOption This property is required. string
This enumerates the possible sources of a disk's creation.
SourceUniqueId This property is required. string
If this field is set, this is the unique id identifying the source of this resource.
GalleryImageReference ImageDiskReferenceResponse
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
ImageReference ImageDiskReferenceResponse
Disk source information for PIR or user images.
LogicalSectorSize int
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
PerformancePlus bool
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
SecurityDataUri string
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
SourceResourceId string
If createOption is Copy, this is the ARM id of the source snapshot or disk.
SourceUri string
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
StorageAccountId string
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
UploadSizeBytes float64
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
createOption This property is required. String
This enumerates the possible sources of a disk's creation.
sourceUniqueId This property is required. String
If this field is set, this is the unique id identifying the source of this resource.
galleryImageReference ImageDiskReferenceResponse
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
imageReference ImageDiskReferenceResponse
Disk source information for PIR or user images.
logicalSectorSize Integer
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
performancePlus Boolean
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
securityDataUri String
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
sourceResourceId String
If createOption is Copy, this is the ARM id of the source snapshot or disk.
sourceUri String
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
storageAccountId String
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
uploadSizeBytes Double
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
createOption This property is required. string
This enumerates the possible sources of a disk's creation.
sourceUniqueId This property is required. string
If this field is set, this is the unique id identifying the source of this resource.
galleryImageReference ImageDiskReferenceResponse
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
imageReference ImageDiskReferenceResponse
Disk source information for PIR or user images.
logicalSectorSize number
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
performancePlus boolean
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
securityDataUri string
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
sourceResourceId string
If createOption is Copy, this is the ARM id of the source snapshot or disk.
sourceUri string
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
storageAccountId string
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
uploadSizeBytes number
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
create_option This property is required. str
This enumerates the possible sources of a disk's creation.
source_unique_id This property is required. str
If this field is set, this is the unique id identifying the source of this resource.
gallery_image_reference ImageDiskReferenceResponse
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
image_reference ImageDiskReferenceResponse
Disk source information for PIR or user images.
logical_sector_size int
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
performance_plus bool
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
security_data_uri str
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
source_resource_id str
If createOption is Copy, this is the ARM id of the source snapshot or disk.
source_uri str
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
storage_account_id str
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
upload_size_bytes float
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).
createOption This property is required. String
This enumerates the possible sources of a disk's creation.
sourceUniqueId This property is required. String
If this field is set, this is the unique id identifying the source of this resource.
galleryImageReference Property Map
Required if creating from a Gallery Image. The id/sharedGalleryImageId/communityGalleryImageId of the ImageDiskReference will be the ARM id of the shared galley image version from which to create a disk.
imageReference Property Map
Disk source information for PIR or user images.
logicalSectorSize Number
Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.
performancePlus Boolean
Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
securityDataUri String
If createOption is ImportSecure, this is the URI of a blob to be imported into VM guest state.
sourceResourceId String
If createOption is Copy, this is the ARM id of the source snapshot or disk.
sourceUri String
If createOption is Import, this is the URI of a blob to be imported into a managed disk.
storageAccountId String
Required if createOption is Import. The Azure Resource Manager identifier of the storage account containing the blob to import as a disk.
uploadSizeBytes Number
If createOption is Upload, this is the size of the contents of the upload including the VHD footer. This value should be between 20972032 (20 MiB + 512 bytes for the VHD footer) and 35183298347520 bytes (32 TiB + 512 bytes for the VHD footer).

DataAccessAuthMode
, DataAccessAuthModeArgs

AzureActiveDirectory
AzureActiveDirectoryWhen export/upload URL is used, the system checks if the user has an identity in Azure Active Directory and has necessary permissions to export/upload the data. Please refer to aka.ms/DisksAzureADAuth.
None
NoneNo additional authentication would be performed when accessing export/upload URL.
DataAccessAuthModeAzureActiveDirectory
AzureActiveDirectoryWhen export/upload URL is used, the system checks if the user has an identity in Azure Active Directory and has necessary permissions to export/upload the data. Please refer to aka.ms/DisksAzureADAuth.
DataAccessAuthModeNone
NoneNo additional authentication would be performed when accessing export/upload URL.
AzureActiveDirectory
AzureActiveDirectoryWhen export/upload URL is used, the system checks if the user has an identity in Azure Active Directory and has necessary permissions to export/upload the data. Please refer to aka.ms/DisksAzureADAuth.
None
NoneNo additional authentication would be performed when accessing export/upload URL.
AzureActiveDirectory
AzureActiveDirectoryWhen export/upload URL is used, the system checks if the user has an identity in Azure Active Directory and has necessary permissions to export/upload the data. Please refer to aka.ms/DisksAzureADAuth.
None
NoneNo additional authentication would be performed when accessing export/upload URL.
AZURE_ACTIVE_DIRECTORY
AzureActiveDirectoryWhen export/upload URL is used, the system checks if the user has an identity in Azure Active Directory and has necessary permissions to export/upload the data. Please refer to aka.ms/DisksAzureADAuth.
NONE
NoneNo additional authentication would be performed when accessing export/upload URL.
"AzureActiveDirectory"
AzureActiveDirectoryWhen export/upload URL is used, the system checks if the user has an identity in Azure Active Directory and has necessary permissions to export/upload the data. Please refer to aka.ms/DisksAzureADAuth.
"None"
NoneNo additional authentication would be performed when accessing export/upload URL.

DiskCreateOption
, DiskCreateOptionArgs

Empty
EmptyCreate an empty data disk of a size given by diskSizeGB.
Attach
AttachDisk will be attached to a VM.
FromImage
FromImageCreate a new disk from a platform image specified by the given imageReference or galleryImageReference.
Import
ImportCreate a disk by importing from a blob specified by a sourceUri in a storage account specified by storageAccountId.
Copy
CopyCreate a new disk or snapshot by copying from a disk or snapshot specified by the given sourceResourceId.
Restore
RestoreCreate a new disk by copying from a backup recovery point.
Upload
UploadCreate a new disk by obtaining a write token and using it to directly upload the contents of the disk.
CopyStart
CopyStartCreate a new disk by using a deep copy process, where the resource creation is considered complete only after all data has been copied from the source.
ImportSecure
ImportSecureSimilar to Import create option. Create a new Trusted Launch VM or Confidential VM supported disk by importing additional blob for VM guest state specified by securityDataUri in storage account specified by storageAccountId
UploadPreparedSecure
UploadPreparedSecureSimilar to Upload create option. Create a new Trusted Launch VM or Confidential VM supported disk and upload using write token in both disk and VM guest state
DiskCreateOptionEmpty
EmptyCreate an empty data disk of a size given by diskSizeGB.
DiskCreateOptionAttach
AttachDisk will be attached to a VM.
DiskCreateOptionFromImage
FromImageCreate a new disk from a platform image specified by the given imageReference or galleryImageReference.
DiskCreateOptionImport
ImportCreate a disk by importing from a blob specified by a sourceUri in a storage account specified by storageAccountId.
DiskCreateOptionCopy
CopyCreate a new disk or snapshot by copying from a disk or snapshot specified by the given sourceResourceId.
DiskCreateOptionRestore
RestoreCreate a new disk by copying from a backup recovery point.
DiskCreateOptionUpload
UploadCreate a new disk by obtaining a write token and using it to directly upload the contents of the disk.
DiskCreateOptionCopyStart
CopyStartCreate a new disk by using a deep copy process, where the resource creation is considered complete only after all data has been copied from the source.
DiskCreateOptionImportSecure
ImportSecureSimilar to Import create option. Create a new Trusted Launch VM or Confidential VM supported disk by importing additional blob for VM guest state specified by securityDataUri in storage account specified by storageAccountId
DiskCreateOptionUploadPreparedSecure
UploadPreparedSecureSimilar to Upload create option. Create a new Trusted Launch VM or Confidential VM supported disk and upload using write token in both disk and VM guest state
Empty
EmptyCreate an empty data disk of a size given by diskSizeGB.
Attach
AttachDisk will be attached to a VM.
FromImage
FromImageCreate a new disk from a platform image specified by the given imageReference or galleryImageReference.
Import
ImportCreate a disk by importing from a blob specified by a sourceUri in a storage account specified by storageAccountId.
Copy
CopyCreate a new disk or snapshot by copying from a disk or snapshot specified by the given sourceResourceId.
Restore
RestoreCreate a new disk by copying from a backup recovery point.
Upload
UploadCreate a new disk by obtaining a write token and using it to directly upload the contents of the disk.
CopyStart
CopyStartCreate a new disk by using a deep copy process, where the resource creation is considered complete only after all data has been copied from the source.
ImportSecure
ImportSecureSimilar to Import create option. Create a new Trusted Launch VM or Confidential VM supported disk by importing additional blob for VM guest state specified by securityDataUri in storage account specified by storageAccountId
UploadPreparedSecure
UploadPreparedSecureSimilar to Upload create option. Create a new Trusted Launch VM or Confidential VM supported disk and upload using write token in both disk and VM guest state
Empty
EmptyCreate an empty data disk of a size given by diskSizeGB.
Attach
AttachDisk will be attached to a VM.
FromImage
FromImageCreate a new disk from a platform image specified by the given imageReference or galleryImageReference.
Import
ImportCreate a disk by importing from a blob specified by a sourceUri in a storage account specified by storageAccountId.
Copy
CopyCreate a new disk or snapshot by copying from a disk or snapshot specified by the given sourceResourceId.
Restore
RestoreCreate a new disk by copying from a backup recovery point.
Upload
UploadCreate a new disk by obtaining a write token and using it to directly upload the contents of the disk.
CopyStart
CopyStartCreate a new disk by using a deep copy process, where the resource creation is considered complete only after all data has been copied from the source.
ImportSecure
ImportSecureSimilar to Import create option. Create a new Trusted Launch VM or Confidential VM supported disk by importing additional blob for VM guest state specified by securityDataUri in storage account specified by storageAccountId
UploadPreparedSecure
UploadPreparedSecureSimilar to Upload create option. Create a new Trusted Launch VM or Confidential VM supported disk and upload using write token in both disk and VM guest state
EMPTY
EmptyCreate an empty data disk of a size given by diskSizeGB.
ATTACH
AttachDisk will be attached to a VM.
FROM_IMAGE
FromImageCreate a new disk from a platform image specified by the given imageReference or galleryImageReference.
IMPORT_
ImportCreate a disk by importing from a blob specified by a sourceUri in a storage account specified by storageAccountId.
COPY
CopyCreate a new disk or snapshot by copying from a disk or snapshot specified by the given sourceResourceId.
RESTORE
RestoreCreate a new disk by copying from a backup recovery point.
UPLOAD
UploadCreate a new disk by obtaining a write token and using it to directly upload the contents of the disk.
COPY_START
CopyStartCreate a new disk by using a deep copy process, where the resource creation is considered complete only after all data has been copied from the source.
IMPORT_SECURE
ImportSecureSimilar to Import create option. Create a new Trusted Launch VM or Confidential VM supported disk by importing additional blob for VM guest state specified by securityDataUri in storage account specified by storageAccountId
UPLOAD_PREPARED_SECURE
UploadPreparedSecureSimilar to Upload create option. Create a new Trusted Launch VM or Confidential VM supported disk and upload using write token in both disk and VM guest state
"Empty"
EmptyCreate an empty data disk of a size given by diskSizeGB.
"Attach"
AttachDisk will be attached to a VM.
"FromImage"
FromImageCreate a new disk from a platform image specified by the given imageReference or galleryImageReference.
"Import"
ImportCreate a disk by importing from a blob specified by a sourceUri in a storage account specified by storageAccountId.
"Copy"
CopyCreate a new disk or snapshot by copying from a disk or snapshot specified by the given sourceResourceId.
"Restore"
RestoreCreate a new disk by copying from a backup recovery point.
"Upload"
UploadCreate a new disk by obtaining a write token and using it to directly upload the contents of the disk.
"CopyStart"
CopyStartCreate a new disk by using a deep copy process, where the resource creation is considered complete only after all data has been copied from the source.
"ImportSecure"
ImportSecureSimilar to Import create option. Create a new Trusted Launch VM or Confidential VM supported disk by importing additional blob for VM guest state specified by securityDataUri in storage account specified by storageAccountId
"UploadPreparedSecure"
UploadPreparedSecureSimilar to Upload create option. Create a new Trusted Launch VM or Confidential VM supported disk and upload using write token in both disk and VM guest state

DiskSecurityProfile
, DiskSecurityProfileArgs

SecureVMDiskEncryptionSetId string
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
SecurityType string | Pulumi.AzureNative.Compute.DiskSecurityTypes
Specifies the SecurityType of the VM. Applicable for OS disks only.
SecureVMDiskEncryptionSetId string
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
SecurityType string | DiskSecurityTypes
Specifies the SecurityType of the VM. Applicable for OS disks only.
secureVMDiskEncryptionSetId String
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
securityType String | DiskSecurityTypes
Specifies the SecurityType of the VM. Applicable for OS disks only.
secureVMDiskEncryptionSetId string
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
securityType string | DiskSecurityTypes
Specifies the SecurityType of the VM. Applicable for OS disks only.
secure_vm_disk_encryption_set_id str
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
security_type str | DiskSecurityTypes
Specifies the SecurityType of the VM. Applicable for OS disks only.
secureVMDiskEncryptionSetId String
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
securityType String | "TrustedLaunch" | "ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKey" | "ConfidentialVM_DiskEncryptedWithPlatformKey" | "ConfidentialVM_DiskEncryptedWithCustomerKey"
Specifies the SecurityType of the VM. Applicable for OS disks only.

DiskSecurityProfileResponse
, DiskSecurityProfileResponseArgs

SecureVMDiskEncryptionSetId string
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
SecurityType string
Specifies the SecurityType of the VM. Applicable for OS disks only.
SecureVMDiskEncryptionSetId string
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
SecurityType string
Specifies the SecurityType of the VM. Applicable for OS disks only.
secureVMDiskEncryptionSetId String
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
securityType String
Specifies the SecurityType of the VM. Applicable for OS disks only.
secureVMDiskEncryptionSetId string
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
securityType string
Specifies the SecurityType of the VM. Applicable for OS disks only.
secure_vm_disk_encryption_set_id str
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
security_type str
Specifies the SecurityType of the VM. Applicable for OS disks only.
secureVMDiskEncryptionSetId String
ResourceId of the disk encryption set associated to Confidential VM supported disk encrypted with customer managed key
securityType String
Specifies the SecurityType of the VM. Applicable for OS disks only.

DiskSecurityTypes
, DiskSecurityTypesArgs

TrustedLaunch
TrustedLaunchTrusted Launch provides security features such as secure boot and virtual Trusted Platform Module (vTPM)
ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKey
ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKeyIndicates Confidential VM disk with only VM guest state encrypted
ConfidentialVM_DiskEncryptedWithPlatformKey
ConfidentialVM_DiskEncryptedWithPlatformKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a platform managed key
ConfidentialVM_DiskEncryptedWithCustomerKey
ConfidentialVM_DiskEncryptedWithCustomerKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a customer managed key
DiskSecurityTypesTrustedLaunch
TrustedLaunchTrusted Launch provides security features such as secure boot and virtual Trusted Platform Module (vTPM)
DiskSecurityTypes_ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKey
ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKeyIndicates Confidential VM disk with only VM guest state encrypted
DiskSecurityTypes_ConfidentialVM_DiskEncryptedWithPlatformKey
ConfidentialVM_DiskEncryptedWithPlatformKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a platform managed key
DiskSecurityTypes_ConfidentialVM_DiskEncryptedWithCustomerKey
ConfidentialVM_DiskEncryptedWithCustomerKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a customer managed key
TrustedLaunch
TrustedLaunchTrusted Launch provides security features such as secure boot and virtual Trusted Platform Module (vTPM)
ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKey
ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKeyIndicates Confidential VM disk with only VM guest state encrypted
ConfidentialVM_DiskEncryptedWithPlatformKey
ConfidentialVM_DiskEncryptedWithPlatformKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a platform managed key
ConfidentialVM_DiskEncryptedWithCustomerKey
ConfidentialVM_DiskEncryptedWithCustomerKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a customer managed key
TrustedLaunch
TrustedLaunchTrusted Launch provides security features such as secure boot and virtual Trusted Platform Module (vTPM)
ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKey
ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKeyIndicates Confidential VM disk with only VM guest state encrypted
ConfidentialVM_DiskEncryptedWithPlatformKey
ConfidentialVM_DiskEncryptedWithPlatformKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a platform managed key
ConfidentialVM_DiskEncryptedWithCustomerKey
ConfidentialVM_DiskEncryptedWithCustomerKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a customer managed key
TRUSTED_LAUNCH
TrustedLaunchTrusted Launch provides security features such as secure boot and virtual Trusted Platform Module (vTPM)
CONFIDENTIAL_V_M_VM_GUEST_STATE_ONLY_ENCRYPTED_WITH_PLATFORM_KEY
ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKeyIndicates Confidential VM disk with only VM guest state encrypted
CONFIDENTIAL_V_M_DISK_ENCRYPTED_WITH_PLATFORM_KEY
ConfidentialVM_DiskEncryptedWithPlatformKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a platform managed key
CONFIDENTIAL_V_M_DISK_ENCRYPTED_WITH_CUSTOMER_KEY
ConfidentialVM_DiskEncryptedWithCustomerKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a customer managed key
"TrustedLaunch"
TrustedLaunchTrusted Launch provides security features such as secure boot and virtual Trusted Platform Module (vTPM)
"ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKey"
ConfidentialVM_VMGuestStateOnlyEncryptedWithPlatformKeyIndicates Confidential VM disk with only VM guest state encrypted
"ConfidentialVM_DiskEncryptedWithPlatformKey"
ConfidentialVM_DiskEncryptedWithPlatformKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a platform managed key
"ConfidentialVM_DiskEncryptedWithCustomerKey"
ConfidentialVM_DiskEncryptedWithCustomerKeyIndicates Confidential VM disk with both OS disk and VM guest state encrypted with a customer managed key

Encryption
, EncryptionArgs

DiskEncryptionSetId string
ResourceId of the disk encryption set to use for enabling encryption at rest.
Type string | Pulumi.AzureNative.Compute.EncryptionType
The type of key used to encrypt the data of the disk.
DiskEncryptionSetId string
ResourceId of the disk encryption set to use for enabling encryption at rest.
Type string | EncryptionType
The type of key used to encrypt the data of the disk.
diskEncryptionSetId String
ResourceId of the disk encryption set to use for enabling encryption at rest.
type String | EncryptionType
The type of key used to encrypt the data of the disk.
diskEncryptionSetId string
ResourceId of the disk encryption set to use for enabling encryption at rest.
type string | EncryptionType
The type of key used to encrypt the data of the disk.
disk_encryption_set_id str
ResourceId of the disk encryption set to use for enabling encryption at rest.
type str | EncryptionType
The type of key used to encrypt the data of the disk.
diskEncryptionSetId String
ResourceId of the disk encryption set to use for enabling encryption at rest.
type String | "EncryptionAtRestWithPlatformKey" | "EncryptionAtRestWithCustomerKey" | "EncryptionAtRestWithPlatformAndCustomerKeys"
The type of key used to encrypt the data of the disk.

EncryptionResponse
, EncryptionResponseArgs

DiskEncryptionSetId string
ResourceId of the disk encryption set to use for enabling encryption at rest.
Type string
The type of key used to encrypt the data of the disk.
DiskEncryptionSetId string
ResourceId of the disk encryption set to use for enabling encryption at rest.
Type string
The type of key used to encrypt the data of the disk.
diskEncryptionSetId String
ResourceId of the disk encryption set to use for enabling encryption at rest.
type String
The type of key used to encrypt the data of the disk.
diskEncryptionSetId string
ResourceId of the disk encryption set to use for enabling encryption at rest.
type string
The type of key used to encrypt the data of the disk.
disk_encryption_set_id str
ResourceId of the disk encryption set to use for enabling encryption at rest.
type str
The type of key used to encrypt the data of the disk.
diskEncryptionSetId String
ResourceId of the disk encryption set to use for enabling encryption at rest.
type String
The type of key used to encrypt the data of the disk.

EncryptionSettingsCollection
, EncryptionSettingsCollectionArgs

Enabled This property is required. bool
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
EncryptionSettings List<Pulumi.AzureNative.Compute.Inputs.EncryptionSettingsElement>
A collection of encryption settings, one for each disk volume.
EncryptionSettingsVersion string
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
Enabled This property is required. bool
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
EncryptionSettings []EncryptionSettingsElement
A collection of encryption settings, one for each disk volume.
EncryptionSettingsVersion string
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
enabled This property is required. Boolean
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
encryptionSettings List<EncryptionSettingsElement>
A collection of encryption settings, one for each disk volume.
encryptionSettingsVersion String
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
enabled This property is required. boolean
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
encryptionSettings EncryptionSettingsElement[]
A collection of encryption settings, one for each disk volume.
encryptionSettingsVersion string
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
enabled This property is required. bool
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
encryption_settings Sequence[EncryptionSettingsElement]
A collection of encryption settings, one for each disk volume.
encryption_settings_version str
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
enabled This property is required. Boolean
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
encryptionSettings List<Property Map>
A collection of encryption settings, one for each disk volume.
encryptionSettingsVersion String
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.

EncryptionSettingsCollectionResponse
, EncryptionSettingsCollectionResponseArgs

Enabled This property is required. bool
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
EncryptionSettings List<Pulumi.AzureNative.Compute.Inputs.EncryptionSettingsElementResponse>
A collection of encryption settings, one for each disk volume.
EncryptionSettingsVersion string
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
Enabled This property is required. bool
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
EncryptionSettings []EncryptionSettingsElementResponse
A collection of encryption settings, one for each disk volume.
EncryptionSettingsVersion string
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
enabled This property is required. Boolean
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
encryptionSettings List<EncryptionSettingsElementResponse>
A collection of encryption settings, one for each disk volume.
encryptionSettingsVersion String
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
enabled This property is required. boolean
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
encryptionSettings EncryptionSettingsElementResponse[]
A collection of encryption settings, one for each disk volume.
encryptionSettingsVersion string
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
enabled This property is required. bool
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
encryption_settings Sequence[EncryptionSettingsElementResponse]
A collection of encryption settings, one for each disk volume.
encryption_settings_version str
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.
enabled This property is required. Boolean
Set this flag to true and provide DiskEncryptionKey and optional KeyEncryptionKey to enable encryption. Set this flag to false and remove DiskEncryptionKey and KeyEncryptionKey to disable encryption. If EncryptionSettings is null in the request object, the existing settings remain unchanged.
encryptionSettings List<Property Map>
A collection of encryption settings, one for each disk volume.
encryptionSettingsVersion String
Describes what type of encryption is used for the disks. Once this field is set, it cannot be overwritten. '1.0' corresponds to Azure Disk Encryption with AAD app.'1.1' corresponds to Azure Disk Encryption.

EncryptionSettingsElement
, EncryptionSettingsElementArgs

DiskEncryptionKey Pulumi.AzureNative.Compute.Inputs.KeyVaultAndSecretReference
Key Vault Secret Url and vault id of the disk encryption key
KeyEncryptionKey Pulumi.AzureNative.Compute.Inputs.KeyVaultAndKeyReference
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
DiskEncryptionKey KeyVaultAndSecretReference
Key Vault Secret Url and vault id of the disk encryption key
KeyEncryptionKey KeyVaultAndKeyReference
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
diskEncryptionKey KeyVaultAndSecretReference
Key Vault Secret Url and vault id of the disk encryption key
keyEncryptionKey KeyVaultAndKeyReference
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
diskEncryptionKey KeyVaultAndSecretReference
Key Vault Secret Url and vault id of the disk encryption key
keyEncryptionKey KeyVaultAndKeyReference
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
disk_encryption_key KeyVaultAndSecretReference
Key Vault Secret Url and vault id of the disk encryption key
key_encryption_key KeyVaultAndKeyReference
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
diskEncryptionKey Property Map
Key Vault Secret Url and vault id of the disk encryption key
keyEncryptionKey Property Map
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.

EncryptionSettingsElementResponse
, EncryptionSettingsElementResponseArgs

DiskEncryptionKey Pulumi.AzureNative.Compute.Inputs.KeyVaultAndSecretReferenceResponse
Key Vault Secret Url and vault id of the disk encryption key
KeyEncryptionKey Pulumi.AzureNative.Compute.Inputs.KeyVaultAndKeyReferenceResponse
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
DiskEncryptionKey KeyVaultAndSecretReferenceResponse
Key Vault Secret Url and vault id of the disk encryption key
KeyEncryptionKey KeyVaultAndKeyReferenceResponse
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
diskEncryptionKey KeyVaultAndSecretReferenceResponse
Key Vault Secret Url and vault id of the disk encryption key
keyEncryptionKey KeyVaultAndKeyReferenceResponse
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
diskEncryptionKey KeyVaultAndSecretReferenceResponse
Key Vault Secret Url and vault id of the disk encryption key
keyEncryptionKey KeyVaultAndKeyReferenceResponse
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
disk_encryption_key KeyVaultAndSecretReferenceResponse
Key Vault Secret Url and vault id of the disk encryption key
key_encryption_key KeyVaultAndKeyReferenceResponse
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.
diskEncryptionKey Property Map
Key Vault Secret Url and vault id of the disk encryption key
keyEncryptionKey Property Map
Key Vault Key Url and vault id of the key encryption key. KeyEncryptionKey is optional and when provided is used to unwrap the disk encryption key.

EncryptionType
, EncryptionTypeArgs

EncryptionAtRestWithPlatformKey
EncryptionAtRestWithPlatformKeyDisk is encrypted at rest with Platform managed key. It is the default encryption type. This is not a valid encryption type for disk encryption sets.
EncryptionAtRestWithCustomerKey
EncryptionAtRestWithCustomerKeyDisk is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
EncryptionAtRestWithPlatformAndCustomerKeys
EncryptionAtRestWithPlatformAndCustomerKeysDisk is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.
EncryptionTypeEncryptionAtRestWithPlatformKey
EncryptionAtRestWithPlatformKeyDisk is encrypted at rest with Platform managed key. It is the default encryption type. This is not a valid encryption type for disk encryption sets.
EncryptionTypeEncryptionAtRestWithCustomerKey
EncryptionAtRestWithCustomerKeyDisk is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
EncryptionTypeEncryptionAtRestWithPlatformAndCustomerKeys
EncryptionAtRestWithPlatformAndCustomerKeysDisk is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.
EncryptionAtRestWithPlatformKey
EncryptionAtRestWithPlatformKeyDisk is encrypted at rest with Platform managed key. It is the default encryption type. This is not a valid encryption type for disk encryption sets.
EncryptionAtRestWithCustomerKey
EncryptionAtRestWithCustomerKeyDisk is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
EncryptionAtRestWithPlatformAndCustomerKeys
EncryptionAtRestWithPlatformAndCustomerKeysDisk is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.
EncryptionAtRestWithPlatformKey
EncryptionAtRestWithPlatformKeyDisk is encrypted at rest with Platform managed key. It is the default encryption type. This is not a valid encryption type for disk encryption sets.
EncryptionAtRestWithCustomerKey
EncryptionAtRestWithCustomerKeyDisk is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
EncryptionAtRestWithPlatformAndCustomerKeys
EncryptionAtRestWithPlatformAndCustomerKeysDisk is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.
ENCRYPTION_AT_REST_WITH_PLATFORM_KEY
EncryptionAtRestWithPlatformKeyDisk is encrypted at rest with Platform managed key. It is the default encryption type. This is not a valid encryption type for disk encryption sets.
ENCRYPTION_AT_REST_WITH_CUSTOMER_KEY
EncryptionAtRestWithCustomerKeyDisk is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
ENCRYPTION_AT_REST_WITH_PLATFORM_AND_CUSTOMER_KEYS
EncryptionAtRestWithPlatformAndCustomerKeysDisk is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.
"EncryptionAtRestWithPlatformKey"
EncryptionAtRestWithPlatformKeyDisk is encrypted at rest with Platform managed key. It is the default encryption type. This is not a valid encryption type for disk encryption sets.
"EncryptionAtRestWithCustomerKey"
EncryptionAtRestWithCustomerKeyDisk is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
"EncryptionAtRestWithPlatformAndCustomerKeys"
EncryptionAtRestWithPlatformAndCustomerKeysDisk is encrypted at rest with 2 layers of encryption. One of the keys is Customer managed and the other key is Platform managed.

ExtendedLocation
, ExtendedLocationArgs

Name string
The name of the extended location.
Type string | Pulumi.AzureNative.Compute.ExtendedLocationTypes
The type of the extended location.
Name string
The name of the extended location.
Type string | ExtendedLocationTypes
The type of the extended location.
name String
The name of the extended location.
type String | ExtendedLocationTypes
The type of the extended location.
name string
The name of the extended location.
type string | ExtendedLocationTypes
The type of the extended location.
name str
The name of the extended location.
type str | ExtendedLocationTypes
The type of the extended location.
name String
The name of the extended location.
type String | "EdgeZone"
The type of the extended location.

ExtendedLocationResponse
, ExtendedLocationResponseArgs

Name string
The name of the extended location.
Type string
The type of the extended location.
Name string
The name of the extended location.
Type string
The type of the extended location.
name String
The name of the extended location.
type String
The type of the extended location.
name string
The name of the extended location.
type string
The type of the extended location.
name str
The name of the extended location.
type str
The type of the extended location.
name String
The name of the extended location.
type String
The type of the extended location.

ExtendedLocationTypes
, ExtendedLocationTypesArgs

EdgeZone
EdgeZone
ExtendedLocationTypesEdgeZone
EdgeZone
EdgeZone
EdgeZone
EdgeZone
EdgeZone
EDGE_ZONE
EdgeZone
"EdgeZone"
EdgeZone

HyperVGeneration
, HyperVGenerationArgs

V1
V1
V2
V2
HyperVGenerationV1
V1
HyperVGenerationV2
V2
V1
V1
V2
V2
V1
V1
V2
V2
V1
V1
V2
V2
"V1"
V1
"V2"
V2

ImageDiskReference
, ImageDiskReferenceArgs

CommunityGalleryImageId string
A relative uri containing a community Azure Compute Gallery image reference.
Id string
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
Lun int
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
SharedGalleryImageId string
A relative uri containing a direct shared Azure Compute Gallery image reference.
CommunityGalleryImageId string
A relative uri containing a community Azure Compute Gallery image reference.
Id string
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
Lun int
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
SharedGalleryImageId string
A relative uri containing a direct shared Azure Compute Gallery image reference.
communityGalleryImageId String
A relative uri containing a community Azure Compute Gallery image reference.
id String
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
lun Integer
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
sharedGalleryImageId String
A relative uri containing a direct shared Azure Compute Gallery image reference.
communityGalleryImageId string
A relative uri containing a community Azure Compute Gallery image reference.
id string
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
lun number
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
sharedGalleryImageId string
A relative uri containing a direct shared Azure Compute Gallery image reference.
community_gallery_image_id str
A relative uri containing a community Azure Compute Gallery image reference.
id str
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
lun int
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
shared_gallery_image_id str
A relative uri containing a direct shared Azure Compute Gallery image reference.
communityGalleryImageId String
A relative uri containing a community Azure Compute Gallery image reference.
id String
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
lun Number
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
sharedGalleryImageId String
A relative uri containing a direct shared Azure Compute Gallery image reference.

ImageDiskReferenceResponse
, ImageDiskReferenceResponseArgs

CommunityGalleryImageId string
A relative uri containing a community Azure Compute Gallery image reference.
Id string
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
Lun int
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
SharedGalleryImageId string
A relative uri containing a direct shared Azure Compute Gallery image reference.
CommunityGalleryImageId string
A relative uri containing a community Azure Compute Gallery image reference.
Id string
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
Lun int
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
SharedGalleryImageId string
A relative uri containing a direct shared Azure Compute Gallery image reference.
communityGalleryImageId String
A relative uri containing a community Azure Compute Gallery image reference.
id String
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
lun Integer
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
sharedGalleryImageId String
A relative uri containing a direct shared Azure Compute Gallery image reference.
communityGalleryImageId string
A relative uri containing a community Azure Compute Gallery image reference.
id string
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
lun number
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
sharedGalleryImageId string
A relative uri containing a direct shared Azure Compute Gallery image reference.
community_gallery_image_id str
A relative uri containing a community Azure Compute Gallery image reference.
id str
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
lun int
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
shared_gallery_image_id str
A relative uri containing a direct shared Azure Compute Gallery image reference.
communityGalleryImageId String
A relative uri containing a community Azure Compute Gallery image reference.
id String
A relative uri containing either a Platform Image Repository, user image, or Azure Compute Gallery image reference.
lun Number
If the disk is created from an image's data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null.
sharedGalleryImageId String
A relative uri containing a direct shared Azure Compute Gallery image reference.

KeyVaultAndKeyReference
, KeyVaultAndKeyReferenceArgs

KeyUrl This property is required. string
Url pointing to a key or secret in KeyVault
SourceVault This property is required. Pulumi.AzureNative.Compute.Inputs.SourceVault
Resource id of the KeyVault containing the key or secret
KeyUrl This property is required. string
Url pointing to a key or secret in KeyVault
SourceVault This property is required. SourceVault
Resource id of the KeyVault containing the key or secret
keyUrl This property is required. String
Url pointing to a key or secret in KeyVault
sourceVault This property is required. SourceVault
Resource id of the KeyVault containing the key or secret
keyUrl This property is required. string
Url pointing to a key or secret in KeyVault
sourceVault This property is required. SourceVault
Resource id of the KeyVault containing the key or secret
key_url This property is required. str
Url pointing to a key or secret in KeyVault
source_vault This property is required. SourceVault
Resource id of the KeyVault containing the key or secret
keyUrl This property is required. String
Url pointing to a key or secret in KeyVault
sourceVault This property is required. Property Map
Resource id of the KeyVault containing the key or secret

KeyVaultAndKeyReferenceResponse
, KeyVaultAndKeyReferenceResponseArgs

KeyUrl This property is required. string
Url pointing to a key or secret in KeyVault
SourceVault This property is required. Pulumi.AzureNative.Compute.Inputs.SourceVaultResponse
Resource id of the KeyVault containing the key or secret
KeyUrl This property is required. string
Url pointing to a key or secret in KeyVault
SourceVault This property is required. SourceVaultResponse
Resource id of the KeyVault containing the key or secret
keyUrl This property is required. String
Url pointing to a key or secret in KeyVault
sourceVault This property is required. SourceVaultResponse
Resource id of the KeyVault containing the key or secret
keyUrl This property is required. string
Url pointing to a key or secret in KeyVault
sourceVault This property is required. SourceVaultResponse
Resource id of the KeyVault containing the key or secret
key_url This property is required. str
Url pointing to a key or secret in KeyVault
source_vault This property is required. SourceVaultResponse
Resource id of the KeyVault containing the key or secret
keyUrl This property is required. String
Url pointing to a key or secret in KeyVault
sourceVault This property is required. Property Map
Resource id of the KeyVault containing the key or secret

KeyVaultAndSecretReference
, KeyVaultAndSecretReferenceArgs

SecretUrl This property is required. string
Url pointing to a key or secret in KeyVault
SourceVault This property is required. Pulumi.AzureNative.Compute.Inputs.SourceVault
Resource id of the KeyVault containing the key or secret
SecretUrl This property is required. string
Url pointing to a key or secret in KeyVault
SourceVault This property is required. SourceVault
Resource id of the KeyVault containing the key or secret
secretUrl This property is required. String
Url pointing to a key or secret in KeyVault
sourceVault This property is required. SourceVault
Resource id of the KeyVault containing the key or secret
secretUrl This property is required. string
Url pointing to a key or secret in KeyVault
sourceVault This property is required. SourceVault
Resource id of the KeyVault containing the key or secret
secret_url This property is required. str
Url pointing to a key or secret in KeyVault
source_vault This property is required. SourceVault
Resource id of the KeyVault containing the key or secret
secretUrl This property is required. String
Url pointing to a key or secret in KeyVault
sourceVault This property is required. Property Map
Resource id of the KeyVault containing the key or secret

KeyVaultAndSecretReferenceResponse
, KeyVaultAndSecretReferenceResponseArgs

SecretUrl This property is required. string
Url pointing to a key or secret in KeyVault
SourceVault This property is required. Pulumi.AzureNative.Compute.Inputs.SourceVaultResponse
Resource id of the KeyVault containing the key or secret
SecretUrl This property is required. string
Url pointing to a key or secret in KeyVault
SourceVault This property is required. SourceVaultResponse
Resource id of the KeyVault containing the key or secret
secretUrl This property is required. String
Url pointing to a key or secret in KeyVault
sourceVault This property is required. SourceVaultResponse
Resource id of the KeyVault containing the key or secret
secretUrl This property is required. string
Url pointing to a key or secret in KeyVault
sourceVault This property is required. SourceVaultResponse
Resource id of the KeyVault containing the key or secret
secret_url This property is required. str
Url pointing to a key or secret in KeyVault
source_vault This property is required. SourceVaultResponse
Resource id of the KeyVault containing the key or secret
secretUrl This property is required. String
Url pointing to a key or secret in KeyVault
sourceVault This property is required. Property Map
Resource id of the KeyVault containing the key or secret

NetworkAccessPolicy
, NetworkAccessPolicyArgs

AllowAll
AllowAllThe disk can be exported or uploaded to from any network.
AllowPrivate
AllowPrivateThe disk can be exported or uploaded to using a DiskAccess resource's private endpoints.
DenyAll
DenyAllThe disk cannot be exported.
NetworkAccessPolicyAllowAll
AllowAllThe disk can be exported or uploaded to from any network.
NetworkAccessPolicyAllowPrivate
AllowPrivateThe disk can be exported or uploaded to using a DiskAccess resource's private endpoints.
NetworkAccessPolicyDenyAll
DenyAllThe disk cannot be exported.
AllowAll
AllowAllThe disk can be exported or uploaded to from any network.
AllowPrivate
AllowPrivateThe disk can be exported or uploaded to using a DiskAccess resource's private endpoints.
DenyAll
DenyAllThe disk cannot be exported.
AllowAll
AllowAllThe disk can be exported or uploaded to from any network.
AllowPrivate
AllowPrivateThe disk can be exported or uploaded to using a DiskAccess resource's private endpoints.
DenyAll
DenyAllThe disk cannot be exported.
ALLOW_ALL
AllowAllThe disk can be exported or uploaded to from any network.
ALLOW_PRIVATE
AllowPrivateThe disk can be exported or uploaded to using a DiskAccess resource's private endpoints.
DENY_ALL
DenyAllThe disk cannot be exported.
"AllowAll"
AllowAllThe disk can be exported or uploaded to from any network.
"AllowPrivate"
AllowPrivateThe disk can be exported or uploaded to using a DiskAccess resource's private endpoints.
"DenyAll"
DenyAllThe disk cannot be exported.

OperatingSystemTypes
, OperatingSystemTypesArgs

Windows
Windows
Linux
Linux
OperatingSystemTypesWindows
Windows
OperatingSystemTypesLinux
Linux
Windows
Windows
Linux
Linux
Windows
Windows
Linux
Linux
WINDOWS
Windows
LINUX
Linux
"Windows"
Windows
"Linux"
Linux

PublicNetworkAccess
, PublicNetworkAccessArgs

Enabled
EnabledYou can generate a SAS URI to access the underlying data of the disk publicly on the internet when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.
Disabled
DisabledYou cannot access the underlying data of the disk publicly on the internet even when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.
PublicNetworkAccessEnabled
EnabledYou can generate a SAS URI to access the underlying data of the disk publicly on the internet when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.
PublicNetworkAccessDisabled
DisabledYou cannot access the underlying data of the disk publicly on the internet even when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.
Enabled
EnabledYou can generate a SAS URI to access the underlying data of the disk publicly on the internet when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.
Disabled
DisabledYou cannot access the underlying data of the disk publicly on the internet even when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.
Enabled
EnabledYou can generate a SAS URI to access the underlying data of the disk publicly on the internet when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.
Disabled
DisabledYou cannot access the underlying data of the disk publicly on the internet even when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.
ENABLED
EnabledYou can generate a SAS URI to access the underlying data of the disk publicly on the internet when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.
DISABLED
DisabledYou cannot access the underlying data of the disk publicly on the internet even when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.
"Enabled"
EnabledYou can generate a SAS URI to access the underlying data of the disk publicly on the internet when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.
"Disabled"
DisabledYou cannot access the underlying data of the disk publicly on the internet even when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate.

PurchasePlan
, PurchasePlanArgs

Name This property is required. string
The plan ID.
Product This property is required. string
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
Publisher This property is required. string
The publisher ID.
PromotionCode string
The Offer Promotion Code.
Name This property is required. string
The plan ID.
Product This property is required. string
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
Publisher This property is required. string
The publisher ID.
PromotionCode string
The Offer Promotion Code.
name This property is required. String
The plan ID.
product This property is required. String
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
publisher This property is required. String
The publisher ID.
promotionCode String
The Offer Promotion Code.
name This property is required. string
The plan ID.
product This property is required. string
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
publisher This property is required. string
The publisher ID.
promotionCode string
The Offer Promotion Code.
name This property is required. str
The plan ID.
product This property is required. str
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
publisher This property is required. str
The publisher ID.
promotion_code str
The Offer Promotion Code.
name This property is required. String
The plan ID.
product This property is required. String
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
publisher This property is required. String
The publisher ID.
promotionCode String
The Offer Promotion Code.

PurchasePlanResponse
, PurchasePlanResponseArgs

Name This property is required. string
The plan ID.
Product This property is required. string
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
Publisher This property is required. string
The publisher ID.
PromotionCode string
The Offer Promotion Code.
Name This property is required. string
The plan ID.
Product This property is required. string
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
Publisher This property is required. string
The publisher ID.
PromotionCode string
The Offer Promotion Code.
name This property is required. String
The plan ID.
product This property is required. String
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
publisher This property is required. String
The publisher ID.
promotionCode String
The Offer Promotion Code.
name This property is required. string
The plan ID.
product This property is required. string
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
publisher This property is required. string
The publisher ID.
promotionCode string
The Offer Promotion Code.
name This property is required. str
The plan ID.
product This property is required. str
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
publisher This property is required. str
The publisher ID.
promotion_code str
The Offer Promotion Code.
name This property is required. String
The plan ID.
product This property is required. String
Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
publisher This property is required. String
The publisher ID.
promotionCode String
The Offer Promotion Code.

SnapshotSku
, SnapshotSkuArgs

Name string | SnapshotStorageAccountTypes
The sku name.
name String | SnapshotStorageAccountTypes
The sku name.
name string | SnapshotStorageAccountTypes
The sku name.

SnapshotSkuResponse
, SnapshotSkuResponseArgs

Tier This property is required. string
The sku tier.
Name string
The sku name.
Tier This property is required. string
The sku tier.
Name string
The sku name.
tier This property is required. String
The sku tier.
name String
The sku name.
tier This property is required. string
The sku tier.
name string
The sku name.
tier This property is required. str
The sku tier.
name str
The sku name.
tier This property is required. String
The sku tier.
name String
The sku name.

SnapshotStorageAccountTypes
, SnapshotStorageAccountTypesArgs

Standard_LRS
Standard_LRSStandard HDD locally redundant storage
Premium_LRS
Premium_LRSPremium SSD locally redundant storage
Standard_ZRS
Standard_ZRSStandard zone redundant storage
SnapshotStorageAccountTypes_Standard_LRS
Standard_LRSStandard HDD locally redundant storage
SnapshotStorageAccountTypes_Premium_LRS
Premium_LRSPremium SSD locally redundant storage
SnapshotStorageAccountTypes_Standard_ZRS
Standard_ZRSStandard zone redundant storage
Standard_LRS
Standard_LRSStandard HDD locally redundant storage
Premium_LRS
Premium_LRSPremium SSD locally redundant storage
Standard_ZRS
Standard_ZRSStandard zone redundant storage
Standard_LRS
Standard_LRSStandard HDD locally redundant storage
Premium_LRS
Premium_LRSPremium SSD locally redundant storage
Standard_ZRS
Standard_ZRSStandard zone redundant storage
STANDARD_LRS
Standard_LRSStandard HDD locally redundant storage
PREMIUM_LRS
Premium_LRSPremium SSD locally redundant storage
STANDARD_ZRS
Standard_ZRSStandard zone redundant storage
"Standard_LRS"
Standard_LRSStandard HDD locally redundant storage
"Premium_LRS"
Premium_LRSPremium SSD locally redundant storage
"Standard_ZRS"
Standard_ZRSStandard zone redundant storage

SourceVault
, SourceVaultArgs

Id string
Resource Id
Id string
Resource Id
id String
Resource Id
id string
Resource Id
id str
Resource Id
id String
Resource Id

SourceVaultResponse
, SourceVaultResponseArgs

Id string
Resource Id
Id string
Resource Id
id String
Resource Id
id string
Resource Id
id str
Resource Id
id String
Resource Id

SupportedCapabilities
, SupportedCapabilitiesArgs

AcceleratedNetwork bool
True if the image from which the OS disk is created supports accelerated networking.
Architecture string | Pulumi.AzureNative.Compute.Architecture
CPU architecture supported by an OS disk.
DiskControllerTypes string
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
AcceleratedNetwork bool
True if the image from which the OS disk is created supports accelerated networking.
Architecture string | Architecture
CPU architecture supported by an OS disk.
DiskControllerTypes string
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
acceleratedNetwork Boolean
True if the image from which the OS disk is created supports accelerated networking.
architecture String | Architecture
CPU architecture supported by an OS disk.
diskControllerTypes String
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
acceleratedNetwork boolean
True if the image from which the OS disk is created supports accelerated networking.
architecture string | Architecture
CPU architecture supported by an OS disk.
diskControllerTypes string
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
accelerated_network bool
True if the image from which the OS disk is created supports accelerated networking.
architecture str | Architecture
CPU architecture supported by an OS disk.
disk_controller_types str
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
acceleratedNetwork Boolean
True if the image from which the OS disk is created supports accelerated networking.
architecture String | "x64" | "Arm64"
CPU architecture supported by an OS disk.
diskControllerTypes String
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.

SupportedCapabilitiesResponse
, SupportedCapabilitiesResponseArgs

AcceleratedNetwork bool
True if the image from which the OS disk is created supports accelerated networking.
Architecture string
CPU architecture supported by an OS disk.
DiskControllerTypes string
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
AcceleratedNetwork bool
True if the image from which the OS disk is created supports accelerated networking.
Architecture string
CPU architecture supported by an OS disk.
DiskControllerTypes string
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
acceleratedNetwork Boolean
True if the image from which the OS disk is created supports accelerated networking.
architecture String
CPU architecture supported by an OS disk.
diskControllerTypes String
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
acceleratedNetwork boolean
True if the image from which the OS disk is created supports accelerated networking.
architecture string
CPU architecture supported by an OS disk.
diskControllerTypes string
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
accelerated_network bool
True if the image from which the OS disk is created supports accelerated networking.
architecture str
CPU architecture supported by an OS disk.
disk_controller_types str
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.
acceleratedNetwork Boolean
True if the image from which the OS disk is created supports accelerated networking.
architecture String
CPU architecture supported by an OS disk.
diskControllerTypes String
The disk controllers that an OS disk supports. If set it can be SCSI or SCSI, NVME or NVME, SCSI.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:compute:Snapshot mySnapshot2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/snapshots/{snapshotName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0