1. Packages
  2. Packages
  3. Azure Classic
  4. API Docs
  5. dataprotection
  6. BackupInstanceDataLakeStorage

We recommend using Azure Native.

Viewing docs for Azure v6.35.0
published on Tuesday, Apr 21, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v6.35.0
published on Tuesday, Apr 21, 2026 by Pulumi

    Manages a Backup Instance to back up Data Lake Storage.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleAccount = new azure.storage.Account("example", {
        name: "storageaccountname",
        resourceGroupName: example.name,
        location: example.location,
        accountTier: "Standard",
        accountReplicationType: "LRS",
        isHnsEnabled: true,
    });
    const exampleContainer = new azure.storage.Container("example", {
        name: "example-container",
        storageAccountId: exampleAccount.id,
    });
    const example2 = new azure.storage.Container("example2", {
        name: "example-container2",
        storageAccountId: exampleAccount.id,
    });
    const exampleBackupVault = new azure.dataprotection.BackupVault("example", {
        name: "example-backup-vault",
        resourceGroupName: example.name,
        location: example.location,
        datastoreType: "VaultStore",
        redundancy: "LocallyRedundant",
        identity: {
            type: "SystemAssigned",
        },
    });
    const exampleAssignment = new azure.authorization.Assignment("example", {
        scope: exampleAccount.id,
        roleDefinitionName: "Storage Account Backup Contributor",
        principalId: exampleBackupVault.identity.apply(identity => identity?.principalId),
    });
    const exampleBackupPolicyDataLakeStorage = new azure.dataprotection.BackupPolicyDataLakeStorage("example", {
        name: "example-backup-policy",
        dataProtectionBackupVaultId: exampleBackupVault.id,
        backupSchedules: ["R/2021-05-23T02:30:00+00:00/P1W"],
        defaultRetentionDuration: "P4M",
    });
    const exampleBackupInstanceDataLakeStorage = new azure.dataprotection.BackupInstanceDataLakeStorage("example", {
        name: "example-data-protection-backup-instance-data-lake-storage",
        dataProtectionBackupVaultId: exampleBackupVault.id,
        location: example.location,
        storageAccountId: exampleAccount.id,
        backupPolicyDataLakeStorageId: exampleBackupPolicyDataLakeStorage.id,
        storageContainerNames: [
            exampleContainer.name,
            example2.name,
        ],
    }, {
        dependsOn: [exampleAssignment],
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_account = azure.storage.Account("example",
        name="storageaccountname",
        resource_group_name=example.name,
        location=example.location,
        account_tier="Standard",
        account_replication_type="LRS",
        is_hns_enabled=True)
    example_container = azure.storage.Container("example",
        name="example-container",
        storage_account_id=example_account.id)
    example2 = azure.storage.Container("example2",
        name="example-container2",
        storage_account_id=example_account.id)
    example_backup_vault = azure.dataprotection.BackupVault("example",
        name="example-backup-vault",
        resource_group_name=example.name,
        location=example.location,
        datastore_type="VaultStore",
        redundancy="LocallyRedundant",
        identity={
            "type": "SystemAssigned",
        })
    example_assignment = azure.authorization.Assignment("example",
        scope=example_account.id,
        role_definition_name="Storage Account Backup Contributor",
        principal_id=example_backup_vault.identity.principal_id)
    example_backup_policy_data_lake_storage = azure.dataprotection.BackupPolicyDataLakeStorage("example",
        name="example-backup-policy",
        data_protection_backup_vault_id=example_backup_vault.id,
        backup_schedules=["R/2021-05-23T02:30:00+00:00/P1W"],
        default_retention_duration="P4M")
    example_backup_instance_data_lake_storage = azure.dataprotection.BackupInstanceDataLakeStorage("example",
        name="example-data-protection-backup-instance-data-lake-storage",
        data_protection_backup_vault_id=example_backup_vault.id,
        location=example.location,
        storage_account_id=example_account.id,
        backup_policy_data_lake_storage_id=example_backup_policy_data_lake_storage.id,
        storage_container_names=[
            example_container.name,
            example2.name,
        ],
        opts = pulumi.ResourceOptions(depends_on=[example_assignment]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/authorization"
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/dataprotection"
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/storage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
    			Name:                   pulumi.String("storageaccountname"),
    			ResourceGroupName:      example.Name,
    			Location:               example.Location,
    			AccountTier:            pulumi.String("Standard"),
    			AccountReplicationType: pulumi.String("LRS"),
    			IsHnsEnabled:           pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		exampleContainer, err := storage.NewContainer(ctx, "example", &storage.ContainerArgs{
    			Name:             pulumi.String("example-container"),
    			StorageAccountId: exampleAccount.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		example2, err := storage.NewContainer(ctx, "example2", &storage.ContainerArgs{
    			Name:             pulumi.String("example-container2"),
    			StorageAccountId: exampleAccount.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		exampleBackupVault, err := dataprotection.NewBackupVault(ctx, "example", &dataprotection.BackupVaultArgs{
    			Name:              pulumi.String("example-backup-vault"),
    			ResourceGroupName: example.Name,
    			Location:          example.Location,
    			DatastoreType:     pulumi.String("VaultStore"),
    			Redundancy:        pulumi.String("LocallyRedundant"),
    			Identity: &dataprotection.BackupVaultIdentityArgs{
    				Type: pulumi.String("SystemAssigned"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		exampleAssignment, err := authorization.NewAssignment(ctx, "example", &authorization.AssignmentArgs{
    			Scope:              exampleAccount.ID(),
    			RoleDefinitionName: pulumi.String("Storage Account Backup Contributor"),
    			PrincipalId: pulumi.String(exampleBackupVault.Identity.ApplyT(func(identity dataprotection.BackupVaultIdentity) (*string, error) {
    				return &identity.PrincipalId, nil
    			}).(pulumi.StringPtrOutput)),
    		})
    		if err != nil {
    			return err
    		}
    		exampleBackupPolicyDataLakeStorage, err := dataprotection.NewBackupPolicyDataLakeStorage(ctx, "example", &dataprotection.BackupPolicyDataLakeStorageArgs{
    			Name:                        pulumi.String("example-backup-policy"),
    			DataProtectionBackupVaultId: exampleBackupVault.ID(),
    			BackupSchedules: pulumi.StringArray{
    				pulumi.String("R/2021-05-23T02:30:00+00:00/P1W"),
    			},
    			DefaultRetentionDuration: pulumi.String("P4M"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = dataprotection.NewBackupInstanceDataLakeStorage(ctx, "example", &dataprotection.BackupInstanceDataLakeStorageArgs{
    			Name:                          pulumi.String("example-data-protection-backup-instance-data-lake-storage"),
    			DataProtectionBackupVaultId:   exampleBackupVault.ID(),
    			Location:                      example.Location,
    			StorageAccountId:              exampleAccount.ID(),
    			BackupPolicyDataLakeStorageId: exampleBackupPolicyDataLakeStorage.ID(),
    			StorageContainerNames: pulumi.StringArray{
    				exampleContainer.Name,
    				example2.Name,
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			exampleAssignment,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleAccount = new Azure.Storage.Account("example", new()
        {
            Name = "storageaccountname",
            ResourceGroupName = example.Name,
            Location = example.Location,
            AccountTier = "Standard",
            AccountReplicationType = "LRS",
            IsHnsEnabled = true,
        });
    
        var exampleContainer = new Azure.Storage.Container("example", new()
        {
            Name = "example-container",
            StorageAccountId = exampleAccount.Id,
        });
    
        var example2 = new Azure.Storage.Container("example2", new()
        {
            Name = "example-container2",
            StorageAccountId = exampleAccount.Id,
        });
    
        var exampleBackupVault = new Azure.DataProtection.BackupVault("example", new()
        {
            Name = "example-backup-vault",
            ResourceGroupName = example.Name,
            Location = example.Location,
            DatastoreType = "VaultStore",
            Redundancy = "LocallyRedundant",
            Identity = new Azure.DataProtection.Inputs.BackupVaultIdentityArgs
            {
                Type = "SystemAssigned",
            },
        });
    
        var exampleAssignment = new Azure.Authorization.Assignment("example", new()
        {
            Scope = exampleAccount.Id,
            RoleDefinitionName = "Storage Account Backup Contributor",
            PrincipalId = exampleBackupVault.Identity.Apply(identity => identity?.PrincipalId),
        });
    
        var exampleBackupPolicyDataLakeStorage = new Azure.DataProtection.BackupPolicyDataLakeStorage("example", new()
        {
            Name = "example-backup-policy",
            DataProtectionBackupVaultId = exampleBackupVault.Id,
            BackupSchedules = new[]
            {
                "R/2021-05-23T02:30:00+00:00/P1W",
            },
            DefaultRetentionDuration = "P4M",
        });
    
        var exampleBackupInstanceDataLakeStorage = new Azure.DataProtection.BackupInstanceDataLakeStorage("example", new()
        {
            Name = "example-data-protection-backup-instance-data-lake-storage",
            DataProtectionBackupVaultId = exampleBackupVault.Id,
            Location = example.Location,
            StorageAccountId = exampleAccount.Id,
            BackupPolicyDataLakeStorageId = exampleBackupPolicyDataLakeStorage.Id,
            StorageContainerNames = new[]
            {
                exampleContainer.Name,
                example2.Name,
            },
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                exampleAssignment,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.storage.Account;
    import com.pulumi.azure.storage.AccountArgs;
    import com.pulumi.azure.storage.Container;
    import com.pulumi.azure.storage.ContainerArgs;
    import com.pulumi.azure.dataprotection.BackupVault;
    import com.pulumi.azure.dataprotection.BackupVaultArgs;
    import com.pulumi.azure.dataprotection.inputs.BackupVaultIdentityArgs;
    import com.pulumi.azure.authorization.Assignment;
    import com.pulumi.azure.authorization.AssignmentArgs;
    import com.pulumi.azure.dataprotection.BackupPolicyDataLakeStorage;
    import com.pulumi.azure.dataprotection.BackupPolicyDataLakeStorageArgs;
    import com.pulumi.azure.dataprotection.BackupInstanceDataLakeStorage;
    import com.pulumi.azure.dataprotection.BackupInstanceDataLakeStorageArgs;
    import com.pulumi.resources.CustomResourceOptions;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new ResourceGroup("example", ResourceGroupArgs.builder()
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
                .name("storageaccountname")
                .resourceGroupName(example.name())
                .location(example.location())
                .accountTier("Standard")
                .accountReplicationType("LRS")
                .isHnsEnabled(true)
                .build());
    
            var exampleContainer = new Container("exampleContainer", ContainerArgs.builder()
                .name("example-container")
                .storageAccountId(exampleAccount.id())
                .build());
    
            var example2 = new Container("example2", ContainerArgs.builder()
                .name("example-container2")
                .storageAccountId(exampleAccount.id())
                .build());
    
            var exampleBackupVault = new BackupVault("exampleBackupVault", BackupVaultArgs.builder()
                .name("example-backup-vault")
                .resourceGroupName(example.name())
                .location(example.location())
                .datastoreType("VaultStore")
                .redundancy("LocallyRedundant")
                .identity(BackupVaultIdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .build());
    
            var exampleAssignment = new Assignment("exampleAssignment", AssignmentArgs.builder()
                .scope(exampleAccount.id())
                .roleDefinitionName("Storage Account Backup Contributor")
                .principalId(exampleBackupVault.identity().applyValue(_identity -> _identity.principalId()))
                .build());
    
            var exampleBackupPolicyDataLakeStorage = new BackupPolicyDataLakeStorage("exampleBackupPolicyDataLakeStorage", BackupPolicyDataLakeStorageArgs.builder()
                .name("example-backup-policy")
                .dataProtectionBackupVaultId(exampleBackupVault.id())
                .backupSchedules("R/2021-05-23T02:30:00+00:00/P1W")
                .defaultRetentionDuration("P4M")
                .build());
    
            var exampleBackupInstanceDataLakeStorage = new BackupInstanceDataLakeStorage("exampleBackupInstanceDataLakeStorage", BackupInstanceDataLakeStorageArgs.builder()
                .name("example-data-protection-backup-instance-data-lake-storage")
                .dataProtectionBackupVaultId(exampleBackupVault.id())
                .location(example.location())
                .storageAccountId(exampleAccount.id())
                .backupPolicyDataLakeStorageId(exampleBackupPolicyDataLakeStorage.id())
                .storageContainerNames(            
                    exampleContainer.name(),
                    example2.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(exampleAssignment)
                    .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleAccount:
        type: azure:storage:Account
        name: example
        properties:
          name: storageaccountname
          resourceGroupName: ${example.name}
          location: ${example.location}
          accountTier: Standard
          accountReplicationType: LRS
          isHnsEnabled: true
      exampleContainer:
        type: azure:storage:Container
        name: example
        properties:
          name: example-container
          storageAccountId: ${exampleAccount.id}
      example2:
        type: azure:storage:Container
        properties:
          name: example-container2
          storageAccountId: ${exampleAccount.id}
      exampleBackupVault:
        type: azure:dataprotection:BackupVault
        name: example
        properties:
          name: example-backup-vault
          resourceGroupName: ${example.name}
          location: ${example.location}
          datastoreType: VaultStore
          redundancy: LocallyRedundant
          identity:
            type: SystemAssigned
      exampleAssignment:
        type: azure:authorization:Assignment
        name: example
        properties:
          scope: ${exampleAccount.id}
          roleDefinitionName: Storage Account Backup Contributor
          principalId: ${exampleBackupVault.identity.principalId}
      exampleBackupPolicyDataLakeStorage:
        type: azure:dataprotection:BackupPolicyDataLakeStorage
        name: example
        properties:
          name: example-backup-policy
          dataProtectionBackupVaultId: ${exampleBackupVault.id}
          backupSchedules:
            - R/2021-05-23T02:30:00+00:00/P1W
          defaultRetentionDuration: P4M
      exampleBackupInstanceDataLakeStorage:
        type: azure:dataprotection:BackupInstanceDataLakeStorage
        name: example
        properties:
          name: example-data-protection-backup-instance-data-lake-storage
          dataProtectionBackupVaultId: ${exampleBackupVault.id}
          location: ${example.location}
          storageAccountId: ${exampleAccount.id}
          backupPolicyDataLakeStorageId: ${exampleBackupPolicyDataLakeStorage.id}
          storageContainerNames:
            - ${exampleContainer.name}
            - ${example2.name}
        options:
          dependsOn:
            - ${exampleAssignment}
    
    Example coming soon!
    

    API Providers

    This resource uses the following Azure API Providers:

    • Microsoft.DataProtection - 2025-07-01

    Create BackupInstanceDataLakeStorage Resource

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

    Constructor syntax

    new BackupInstanceDataLakeStorage(name: string, args: BackupInstanceDataLakeStorageArgs, opts?: CustomResourceOptions);
    @overload
    def BackupInstanceDataLakeStorage(resource_name: str,
                                      args: BackupInstanceDataLakeStorageArgs,
                                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def BackupInstanceDataLakeStorage(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      backup_policy_data_lake_storage_id: Optional[str] = None,
                                      data_protection_backup_vault_id: Optional[str] = None,
                                      storage_account_id: Optional[str] = None,
                                      storage_container_names: Optional[Sequence[str]] = None,
                                      location: Optional[str] = None,
                                      name: Optional[str] = None)
    func NewBackupInstanceDataLakeStorage(ctx *Context, name string, args BackupInstanceDataLakeStorageArgs, opts ...ResourceOption) (*BackupInstanceDataLakeStorage, error)
    public BackupInstanceDataLakeStorage(string name, BackupInstanceDataLakeStorageArgs args, CustomResourceOptions? opts = null)
    public BackupInstanceDataLakeStorage(String name, BackupInstanceDataLakeStorageArgs args)
    public BackupInstanceDataLakeStorage(String name, BackupInstanceDataLakeStorageArgs args, CustomResourceOptions options)
    
    type: azure:dataprotection:BackupInstanceDataLakeStorage
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure_dataprotection_backupinstancedatalakestorage" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args BackupInstanceDataLakeStorageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args BackupInstanceDataLakeStorageArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args BackupInstanceDataLakeStorageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BackupInstanceDataLakeStorageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BackupInstanceDataLakeStorageArgs
    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 backupInstanceDataLakeStorageResource = new Azure.DataProtection.BackupInstanceDataLakeStorage("backupInstanceDataLakeStorageResource", new()
    {
        BackupPolicyDataLakeStorageId = "string",
        DataProtectionBackupVaultId = "string",
        StorageAccountId = "string",
        StorageContainerNames = new[]
        {
            "string",
        },
        Location = "string",
        Name = "string",
    });
    
    example, err := dataprotection.NewBackupInstanceDataLakeStorage(ctx, "backupInstanceDataLakeStorageResource", &dataprotection.BackupInstanceDataLakeStorageArgs{
    	BackupPolicyDataLakeStorageId: pulumi.String("string"),
    	DataProtectionBackupVaultId:   pulumi.String("string"),
    	StorageAccountId:              pulumi.String("string"),
    	StorageContainerNames: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Name:     pulumi.String("string"),
    })
    
    resource "azure_dataprotection_backupinstancedatalakestorage" "backupInstanceDataLakeStorageResource" {
      backup_policy_data_lake_storage_id = "string"
      data_protection_backup_vault_id    = "string"
      storage_account_id                 = "string"
      storage_container_names            = ["string"]
      location                           = "string"
      name                               = "string"
    }
    
    var backupInstanceDataLakeStorageResource = new BackupInstanceDataLakeStorage("backupInstanceDataLakeStorageResource", BackupInstanceDataLakeStorageArgs.builder()
        .backupPolicyDataLakeStorageId("string")
        .dataProtectionBackupVaultId("string")
        .storageAccountId("string")
        .storageContainerNames("string")
        .location("string")
        .name("string")
        .build());
    
    backup_instance_data_lake_storage_resource = azure.dataprotection.BackupInstanceDataLakeStorage("backupInstanceDataLakeStorageResource",
        backup_policy_data_lake_storage_id="string",
        data_protection_backup_vault_id="string",
        storage_account_id="string",
        storage_container_names=["string"],
        location="string",
        name="string")
    
    const backupInstanceDataLakeStorageResource = new azure.dataprotection.BackupInstanceDataLakeStorage("backupInstanceDataLakeStorageResource", {
        backupPolicyDataLakeStorageId: "string",
        dataProtectionBackupVaultId: "string",
        storageAccountId: "string",
        storageContainerNames: ["string"],
        location: "string",
        name: "string",
    });
    
    type: azure:dataprotection:BackupInstanceDataLakeStorage
    properties:
        backupPolicyDataLakeStorageId: string
        dataProtectionBackupVaultId: string
        location: string
        name: string
        storageAccountId: string
        storageContainerNames:
            - string
    

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

    BackupPolicyDataLakeStorageId string
    The ID of the Backup Policy.
    DataProtectionBackupVaultId string
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    StorageAccountId string
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    StorageContainerNames List<string>
    The names of the storage containers of the source Storage Account.
    Location string
    The location of the source Storage Account. Changing this forces a new resource to be created.
    Name string
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    BackupPolicyDataLakeStorageId string
    The ID of the Backup Policy.
    DataProtectionBackupVaultId string
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    StorageAccountId string
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    StorageContainerNames []string
    The names of the storage containers of the source Storage Account.
    Location string
    The location of the source Storage Account. Changing this forces a new resource to be created.
    Name string
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    backup_policy_data_lake_storage_id string
    The ID of the Backup Policy.
    data_protection_backup_vault_id string
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    storage_account_id string
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    storage_container_names list(string)
    The names of the storage containers of the source Storage Account.
    location string
    The location of the source Storage Account. Changing this forces a new resource to be created.
    name string
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    backupPolicyDataLakeStorageId String
    The ID of the Backup Policy.
    dataProtectionBackupVaultId String
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    storageAccountId String
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    storageContainerNames List<String>
    The names of the storage containers of the source Storage Account.
    location String
    The location of the source Storage Account. Changing this forces a new resource to be created.
    name String
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    backupPolicyDataLakeStorageId string
    The ID of the Backup Policy.
    dataProtectionBackupVaultId string
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    storageAccountId string
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    storageContainerNames string[]
    The names of the storage containers of the source Storage Account.
    location string
    The location of the source Storage Account. Changing this forces a new resource to be created.
    name string
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    backup_policy_data_lake_storage_id str
    The ID of the Backup Policy.
    data_protection_backup_vault_id str
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    storage_account_id str
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    storage_container_names Sequence[str]
    The names of the storage containers of the source Storage Account.
    location str
    The location of the source Storage Account. Changing this forces a new resource to be created.
    name str
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    backupPolicyDataLakeStorageId String
    The ID of the Backup Policy.
    dataProtectionBackupVaultId String
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    storageAccountId String
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    storageContainerNames List<String>
    The names of the storage containers of the source Storage Account.
    location String
    The location of the source Storage Account. Changing this forces a new resource to be created.
    name String
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    ProtectionState string
    The protection state of the Backup Instance Data Lake Storage.
    Id string
    The provider-assigned unique ID for this managed resource.
    ProtectionState string
    The protection state of the Backup Instance Data Lake Storage.
    id string
    The provider-assigned unique ID for this managed resource.
    protection_state string
    The protection state of the Backup Instance Data Lake Storage.
    id String
    The provider-assigned unique ID for this managed resource.
    protectionState String
    The protection state of the Backup Instance Data Lake Storage.
    id string
    The provider-assigned unique ID for this managed resource.
    protectionState string
    The protection state of the Backup Instance Data Lake Storage.
    id str
    The provider-assigned unique ID for this managed resource.
    protection_state str
    The protection state of the Backup Instance Data Lake Storage.
    id String
    The provider-assigned unique ID for this managed resource.
    protectionState String
    The protection state of the Backup Instance Data Lake Storage.

    Look up Existing BackupInstanceDataLakeStorage Resource

    Get an existing BackupInstanceDataLakeStorage resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: BackupInstanceDataLakeStorageState, opts?: CustomResourceOptions): BackupInstanceDataLakeStorage
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backup_policy_data_lake_storage_id: Optional[str] = None,
            data_protection_backup_vault_id: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            protection_state: Optional[str] = None,
            storage_account_id: Optional[str] = None,
            storage_container_names: Optional[Sequence[str]] = None) -> BackupInstanceDataLakeStorage
    func GetBackupInstanceDataLakeStorage(ctx *Context, name string, id IDInput, state *BackupInstanceDataLakeStorageState, opts ...ResourceOption) (*BackupInstanceDataLakeStorage, error)
    public static BackupInstanceDataLakeStorage Get(string name, Input<string> id, BackupInstanceDataLakeStorageState? state, CustomResourceOptions? opts = null)
    public static BackupInstanceDataLakeStorage get(String name, Output<String> id, BackupInstanceDataLakeStorageState state, CustomResourceOptions options)
    resources:  _:    type: azure:dataprotection:BackupInstanceDataLakeStorage    get:      id: ${id}
    import {
      to = azure_dataprotection_backupinstancedatalakestorage.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BackupPolicyDataLakeStorageId string
    The ID of the Backup Policy.
    DataProtectionBackupVaultId string
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    Location string
    The location of the source Storage Account. Changing this forces a new resource to be created.
    Name string
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    ProtectionState string
    The protection state of the Backup Instance Data Lake Storage.
    StorageAccountId string
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    StorageContainerNames List<string>
    The names of the storage containers of the source Storage Account.
    BackupPolicyDataLakeStorageId string
    The ID of the Backup Policy.
    DataProtectionBackupVaultId string
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    Location string
    The location of the source Storage Account. Changing this forces a new resource to be created.
    Name string
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    ProtectionState string
    The protection state of the Backup Instance Data Lake Storage.
    StorageAccountId string
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    StorageContainerNames []string
    The names of the storage containers of the source Storage Account.
    backup_policy_data_lake_storage_id string
    The ID of the Backup Policy.
    data_protection_backup_vault_id string
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    location string
    The location of the source Storage Account. Changing this forces a new resource to be created.
    name string
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    protection_state string
    The protection state of the Backup Instance Data Lake Storage.
    storage_account_id string
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    storage_container_names list(string)
    The names of the storage containers of the source Storage Account.
    backupPolicyDataLakeStorageId String
    The ID of the Backup Policy.
    dataProtectionBackupVaultId String
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    location String
    The location of the source Storage Account. Changing this forces a new resource to be created.
    name String
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    protectionState String
    The protection state of the Backup Instance Data Lake Storage.
    storageAccountId String
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    storageContainerNames List<String>
    The names of the storage containers of the source Storage Account.
    backupPolicyDataLakeStorageId string
    The ID of the Backup Policy.
    dataProtectionBackupVaultId string
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    location string
    The location of the source Storage Account. Changing this forces a new resource to be created.
    name string
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    protectionState string
    The protection state of the Backup Instance Data Lake Storage.
    storageAccountId string
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    storageContainerNames string[]
    The names of the storage containers of the source Storage Account.
    backup_policy_data_lake_storage_id str
    The ID of the Backup Policy.
    data_protection_backup_vault_id str
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    location str
    The location of the source Storage Account. Changing this forces a new resource to be created.
    name str
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    protection_state str
    The protection state of the Backup Instance Data Lake Storage.
    storage_account_id str
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    storage_container_names Sequence[str]
    The names of the storage containers of the source Storage Account.
    backupPolicyDataLakeStorageId String
    The ID of the Backup Policy.
    dataProtectionBackupVaultId String
    The ID of the Backup Vault within which the Backup Instance Data Lake Storage should exist. Changing this forces a new resource to be created.
    location String
    The location of the source Storage Account. Changing this forces a new resource to be created.
    name String
    The name which should be used for this Backup Instance Data Lake Storage. Changing this forces a new resource to be created.
    protectionState String
    The protection state of the Backup Instance Data Lake Storage.
    storageAccountId String
    The ID of the source Storage Account. The Storage Account must have Hierarchical Namespace enabled. Changing this forces a new resource to be created.
    storageContainerNames List<String>
    The names of the storage containers of the source Storage Account.

    Import

    Backup Instance Data Lake Storages can be imported using the resource id, e.g.

    $ pulumi import azure:dataprotection/backupInstanceDataLakeStorage:BackupInstanceDataLakeStorage example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DataProtection/backupVaults/vault1/backupInstances/backupInstance1
    

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

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v6.35.0
    published on Tuesday, Apr 21, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.