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

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.dataprotection.BackupInstanceBlogStorage

Explore with Pulumi AI

Manages a Backup Instance Blob 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",
});
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 exampleBackupPolicyBlobStorage = new azure.dataprotection.BackupPolicyBlobStorage("example", {
    name: "example-backup-policy",
    vaultId: exampleBackupVault.id,
    operationalDefaultRetentionDuration: "P30D",
});
const exampleBackupInstanceBlogStorage = new azure.dataprotection.BackupInstanceBlogStorage("example", {
    name: "example-backup-instance",
    vaultId: exampleBackupVault.id,
    location: example.location,
    storageAccountId: exampleAccount.id,
    backupPolicyId: exampleBackupPolicyBlobStorage.id,
}, {
    dependsOn: [exampleAssignment],
});
Copy
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")
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_blob_storage = azure.dataprotection.BackupPolicyBlobStorage("example",
    name="example-backup-policy",
    vault_id=example_backup_vault.id,
    operational_default_retention_duration="P30D")
example_backup_instance_blog_storage = azure.dataprotection.BackupInstanceBlogStorage("example",
    name="example-backup-instance",
    vault_id=example_backup_vault.id,
    location=example.location,
    storage_account_id=example_account.id,
    backup_policy_id=example_backup_policy_blob_storage.id,
    opts = pulumi.ResourceOptions(depends_on=[example_assignment]))
Copy
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"),
		})
		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
		}
		exampleBackupPolicyBlobStorage, err := dataprotection.NewBackupPolicyBlobStorage(ctx, "example", &dataprotection.BackupPolicyBlobStorageArgs{
			Name:                                pulumi.String("example-backup-policy"),
			VaultId:                             exampleBackupVault.ID(),
			OperationalDefaultRetentionDuration: pulumi.String("P30D"),
		})
		if err != nil {
			return err
		}
		_, err = dataprotection.NewBackupInstanceBlogStorage(ctx, "example", &dataprotection.BackupInstanceBlogStorageArgs{
			Name:             pulumi.String("example-backup-instance"),
			VaultId:          exampleBackupVault.ID(),
			Location:         example.Location,
			StorageAccountId: exampleAccount.ID(),
			BackupPolicyId:   exampleBackupPolicyBlobStorage.ID(),
		}, pulumi.DependsOn([]pulumi.Resource{
			exampleAssignment,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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",
    });

    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 exampleBackupPolicyBlobStorage = new Azure.DataProtection.BackupPolicyBlobStorage("example", new()
    {
        Name = "example-backup-policy",
        VaultId = exampleBackupVault.Id,
        OperationalDefaultRetentionDuration = "P30D",
    });

    var exampleBackupInstanceBlogStorage = new Azure.DataProtection.BackupInstanceBlogStorage("example", new()
    {
        Name = "example-backup-instance",
        VaultId = exampleBackupVault.Id,
        Location = example.Location,
        StorageAccountId = exampleAccount.Id,
        BackupPolicyId = exampleBackupPolicyBlobStorage.Id,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            exampleAssignment,
        },
    });

});
Copy
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.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.BackupPolicyBlobStorage;
import com.pulumi.azure.dataprotection.BackupPolicyBlobStorageArgs;
import com.pulumi.azure.dataprotection.BackupInstanceBlogStorage;
import com.pulumi.azure.dataprotection.BackupInstanceBlogStorageArgs;
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")
            .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 exampleBackupPolicyBlobStorage = new BackupPolicyBlobStorage("exampleBackupPolicyBlobStorage", BackupPolicyBlobStorageArgs.builder()
            .name("example-backup-policy")
            .vaultId(exampleBackupVault.id())
            .operationalDefaultRetentionDuration("P30D")
            .build());

        var exampleBackupInstanceBlogStorage = new BackupInstanceBlogStorage("exampleBackupInstanceBlogStorage", BackupInstanceBlogStorageArgs.builder()
            .name("example-backup-instance")
            .vaultId(exampleBackupVault.id())
            .location(example.location())
            .storageAccountId(exampleAccount.id())
            .backupPolicyId(exampleBackupPolicyBlobStorage.id())
            .build(), CustomResourceOptions.builder()
                .dependsOn(exampleAssignment)
                .build());

    }
}
Copy
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
  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}
  exampleBackupPolicyBlobStorage:
    type: azure:dataprotection:BackupPolicyBlobStorage
    name: example
    properties:
      name: example-backup-policy
      vaultId: ${exampleBackupVault.id}
      operationalDefaultRetentionDuration: P30D
  exampleBackupInstanceBlogStorage:
    type: azure:dataprotection:BackupInstanceBlogStorage
    name: example
    properties:
      name: example-backup-instance
      vaultId: ${exampleBackupVault.id}
      location: ${example.location}
      storageAccountId: ${exampleAccount.id}
      backupPolicyId: ${exampleBackupPolicyBlobStorage.id}
    options:
      dependsOn:
        - ${exampleAssignment}
Copy

Create BackupInstanceBlogStorage Resource

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

Constructor syntax

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

@overload
def BackupInstanceBlogStorage(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              backup_policy_id: Optional[str] = None,
                              storage_account_id: Optional[str] = None,
                              vault_id: Optional[str] = None,
                              location: Optional[str] = None,
                              name: Optional[str] = None,
                              storage_account_container_names: Optional[Sequence[str]] = None)
func NewBackupInstanceBlogStorage(ctx *Context, name string, args BackupInstanceBlogStorageArgs, opts ...ResourceOption) (*BackupInstanceBlogStorage, error)
public BackupInstanceBlogStorage(string name, BackupInstanceBlogStorageArgs args, CustomResourceOptions? opts = null)
public BackupInstanceBlogStorage(String name, BackupInstanceBlogStorageArgs args)
public BackupInstanceBlogStorage(String name, BackupInstanceBlogStorageArgs args, CustomResourceOptions options)
type: azure:dataprotection:BackupInstanceBlogStorage
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. BackupInstanceBlogStorageArgs
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. BackupInstanceBlogStorageArgs
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. BackupInstanceBlogStorageArgs
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. BackupInstanceBlogStorageArgs
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. BackupInstanceBlogStorageArgs
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 backupInstanceBlogStorageResource = new Azure.DataProtection.BackupInstanceBlogStorage("backupInstanceBlogStorageResource", new()
{
    BackupPolicyId = "string",
    StorageAccountId = "string",
    VaultId = "string",
    Location = "string",
    Name = "string",
    StorageAccountContainerNames = new[]
    {
        "string",
    },
});
Copy
example, err := dataprotection.NewBackupInstanceBlogStorage(ctx, "backupInstanceBlogStorageResource", &dataprotection.BackupInstanceBlogStorageArgs{
	BackupPolicyId:   pulumi.String("string"),
	StorageAccountId: pulumi.String("string"),
	VaultId:          pulumi.String("string"),
	Location:         pulumi.String("string"),
	Name:             pulumi.String("string"),
	StorageAccountContainerNames: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var backupInstanceBlogStorageResource = new BackupInstanceBlogStorage("backupInstanceBlogStorageResource", BackupInstanceBlogStorageArgs.builder()
    .backupPolicyId("string")
    .storageAccountId("string")
    .vaultId("string")
    .location("string")
    .name("string")
    .storageAccountContainerNames("string")
    .build());
Copy
backup_instance_blog_storage_resource = azure.dataprotection.BackupInstanceBlogStorage("backupInstanceBlogStorageResource",
    backup_policy_id="string",
    storage_account_id="string",
    vault_id="string",
    location="string",
    name="string",
    storage_account_container_names=["string"])
Copy
const backupInstanceBlogStorageResource = new azure.dataprotection.BackupInstanceBlogStorage("backupInstanceBlogStorageResource", {
    backupPolicyId: "string",
    storageAccountId: "string",
    vaultId: "string",
    location: "string",
    name: "string",
    storageAccountContainerNames: ["string"],
});
Copy
type: azure:dataprotection:BackupInstanceBlogStorage
properties:
    backupPolicyId: string
    location: string
    name: string
    storageAccountContainerNames:
        - string
    storageAccountId: string
    vaultId: string
Copy

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

BackupPolicyId This property is required. string
The ID of the Backup Policy.
StorageAccountId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
VaultId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.
Location Changes to this property will trigger replacement. string
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
StorageAccountContainerNames List<string>

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

BackupPolicyId This property is required. string
The ID of the Backup Policy.
StorageAccountId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
VaultId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.
Location Changes to this property will trigger replacement. string
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
StorageAccountContainerNames []string

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

backupPolicyId This property is required. String
The ID of the Backup Policy.
storageAccountId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
vaultId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.
location Changes to this property will trigger replacement. String
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
storageAccountContainerNames List<String>

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

backupPolicyId This property is required. string
The ID of the Backup Policy.
storageAccountId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
vaultId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.
location Changes to this property will trigger replacement. string
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
storageAccountContainerNames string[]

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

backup_policy_id This property is required. str
The ID of the Backup Policy.
storage_account_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
vault_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.
location Changes to this property will trigger replacement. str
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
storage_account_container_names Sequence[str]

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

backupPolicyId This property is required. String
The ID of the Backup Policy.
storageAccountId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
vaultId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.
location Changes to this property will trigger replacement. String
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
storageAccountContainerNames List<String>

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing BackupInstanceBlogStorage Resource

Get an existing BackupInstanceBlogStorage 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?: BackupInstanceBlogStorageState, opts?: CustomResourceOptions): BackupInstanceBlogStorage
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        backup_policy_id: Optional[str] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        storage_account_container_names: Optional[Sequence[str]] = None,
        storage_account_id: Optional[str] = None,
        vault_id: Optional[str] = None) -> BackupInstanceBlogStorage
func GetBackupInstanceBlogStorage(ctx *Context, name string, id IDInput, state *BackupInstanceBlogStorageState, opts ...ResourceOption) (*BackupInstanceBlogStorage, error)
public static BackupInstanceBlogStorage Get(string name, Input<string> id, BackupInstanceBlogStorageState? state, CustomResourceOptions? opts = null)
public static BackupInstanceBlogStorage get(String name, Output<String> id, BackupInstanceBlogStorageState state, CustomResourceOptions options)
resources:  _:    type: azure:dataprotection:BackupInstanceBlogStorage    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
BackupPolicyId string
The ID of the Backup Policy.
Location Changes to this property will trigger replacement. string
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
StorageAccountContainerNames List<string>

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

StorageAccountId Changes to this property will trigger replacement. string
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
VaultId Changes to this property will trigger replacement. string
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.
BackupPolicyId string
The ID of the Backup Policy.
Location Changes to this property will trigger replacement. string
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
StorageAccountContainerNames []string

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

StorageAccountId Changes to this property will trigger replacement. string
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
VaultId Changes to this property will trigger replacement. string
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.
backupPolicyId String
The ID of the Backup Policy.
location Changes to this property will trigger replacement. String
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
storageAccountContainerNames List<String>

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

storageAccountId Changes to this property will trigger replacement. String
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
vaultId Changes to this property will trigger replacement. String
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.
backupPolicyId string
The ID of the Backup Policy.
location Changes to this property will trigger replacement. string
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
storageAccountContainerNames string[]

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

storageAccountId Changes to this property will trigger replacement. string
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
vaultId Changes to this property will trigger replacement. string
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.
backup_policy_id str
The ID of the Backup Policy.
location Changes to this property will trigger replacement. str
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
storage_account_container_names Sequence[str]

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

storage_account_id Changes to this property will trigger replacement. str
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
vault_id Changes to this property will trigger replacement. str
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.
backupPolicyId String
The ID of the Backup Policy.
location Changes to this property will trigger replacement. String
The location of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Backup Instance Blob Storage. Changing this forces a new Backup Instance Blob Storage to be created.
storageAccountContainerNames List<String>

The list of the container names of the source Storage Account.

Note: The storage_account_container_names should be specified in the vaulted backup policy/operational and vaulted hybrid backup policy. Removing the storage_account_container_names will force a new resource to be created since it can't be removed once specified.

storageAccountId Changes to this property will trigger replacement. String
The ID of the source Storage Account. Changing this forces a new Backup Instance Blob Storage to be created.
vaultId Changes to this property will trigger replacement. String
The ID of the Backup Vault within which the Backup Instance Blob Storage should exist. Changing this forces a new Backup Instance Blob Storage to be created.

Import

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

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

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.