azure-native.storage.BlobContainer
Explore with Pulumi AI
Properties of the blob container, including Id, resource name, resource type, Etag. Azure REST API version: 2022-09-01. Prior API version in Azure Native 1.x: 2021-02-01.
Other available API versions: 2023-01-01, 2023-04-01, 2023-05-01, 2024-01-01.
Example Usage
PutContainerWithDefaultEncryptionScope
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var blobContainer = new AzureNative.Storage.BlobContainer("blobContainer", new()
    {
        AccountName = "sto328",
        ContainerName = "container6185",
        DefaultEncryptionScope = "encryptionscope185",
        DenyEncryptionScopeOverride = true,
        ResourceGroupName = "res3376",
    });
});
package main
import (
	storage "github.com/pulumi/pulumi-azure-native-sdk/storage/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storage.NewBlobContainer(ctx, "blobContainer", &storage.BlobContainerArgs{
			AccountName:                 pulumi.String("sto328"),
			ContainerName:               pulumi.String("container6185"),
			DefaultEncryptionScope:      pulumi.String("encryptionscope185"),
			DenyEncryptionScopeOverride: pulumi.Bool(true),
			ResourceGroupName:           pulumi.String("res3376"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storage.BlobContainer;
import com.pulumi.azurenative.storage.BlobContainerArgs;
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 blobContainer = new BlobContainer("blobContainer", BlobContainerArgs.builder()
            .accountName("sto328")
            .containerName("container6185")
            .defaultEncryptionScope("encryptionscope185")
            .denyEncryptionScopeOverride(true)
            .resourceGroupName("res3376")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const blobContainer = new azure_native.storage.BlobContainer("blobContainer", {
    accountName: "sto328",
    containerName: "container6185",
    defaultEncryptionScope: "encryptionscope185",
    denyEncryptionScopeOverride: true,
    resourceGroupName: "res3376",
});
import pulumi
import pulumi_azure_native as azure_native
blob_container = azure_native.storage.BlobContainer("blobContainer",
    account_name="sto328",
    container_name="container6185",
    default_encryption_scope="encryptionscope185",
    deny_encryption_scope_override=True,
    resource_group_name="res3376")
resources:
  blobContainer:
    type: azure-native:storage:BlobContainer
    properties:
      accountName: sto328
      containerName: container6185
      defaultEncryptionScope: encryptionscope185
      denyEncryptionScopeOverride: true
      resourceGroupName: res3376
PutContainerWithObjectLevelWorm
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var blobContainer = new AzureNative.Storage.BlobContainer("blobContainer", new()
    {
        AccountName = "sto328",
        ContainerName = "container6185",
        ImmutableStorageWithVersioning = new AzureNative.Storage.Inputs.ImmutableStorageWithVersioningArgs
        {
            Enabled = true,
        },
        ResourceGroupName = "res3376",
    });
});
package main
import (
	storage "github.com/pulumi/pulumi-azure-native-sdk/storage/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storage.NewBlobContainer(ctx, "blobContainer", &storage.BlobContainerArgs{
			AccountName:   pulumi.String("sto328"),
			ContainerName: pulumi.String("container6185"),
			ImmutableStorageWithVersioning: &storage.ImmutableStorageWithVersioningArgs{
				Enabled: pulumi.Bool(true),
			},
			ResourceGroupName: pulumi.String("res3376"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storage.BlobContainer;
import com.pulumi.azurenative.storage.BlobContainerArgs;
import com.pulumi.azurenative.storage.inputs.ImmutableStorageWithVersioningArgs;
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 blobContainer = new BlobContainer("blobContainer", BlobContainerArgs.builder()
            .accountName("sto328")
            .containerName("container6185")
            .immutableStorageWithVersioning(ImmutableStorageWithVersioningArgs.builder()
                .enabled(true)
                .build())
            .resourceGroupName("res3376")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const blobContainer = new azure_native.storage.BlobContainer("blobContainer", {
    accountName: "sto328",
    containerName: "container6185",
    immutableStorageWithVersioning: {
        enabled: true,
    },
    resourceGroupName: "res3376",
});
import pulumi
import pulumi_azure_native as azure_native
blob_container = azure_native.storage.BlobContainer("blobContainer",
    account_name="sto328",
    container_name="container6185",
    immutable_storage_with_versioning={
        "enabled": True,
    },
    resource_group_name="res3376")
resources:
  blobContainer:
    type: azure-native:storage:BlobContainer
    properties:
      accountName: sto328
      containerName: container6185
      immutableStorageWithVersioning:
        enabled: true
      resourceGroupName: res3376
PutContainers
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var blobContainer = new AzureNative.Storage.BlobContainer("blobContainer", new()
    {
        AccountName = "sto328",
        ContainerName = "container6185",
        ResourceGroupName = "res3376",
    });
});
package main
import (
	storage "github.com/pulumi/pulumi-azure-native-sdk/storage/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storage.NewBlobContainer(ctx, "blobContainer", &storage.BlobContainerArgs{
			AccountName:       pulumi.String("sto328"),
			ContainerName:     pulumi.String("container6185"),
			ResourceGroupName: pulumi.String("res3376"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storage.BlobContainer;
import com.pulumi.azurenative.storage.BlobContainerArgs;
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 blobContainer = new BlobContainer("blobContainer", BlobContainerArgs.builder()
            .accountName("sto328")
            .containerName("container6185")
            .resourceGroupName("res3376")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const blobContainer = new azure_native.storage.BlobContainer("blobContainer", {
    accountName: "sto328",
    containerName: "container6185",
    resourceGroupName: "res3376",
});
import pulumi
import pulumi_azure_native as azure_native
blob_container = azure_native.storage.BlobContainer("blobContainer",
    account_name="sto328",
    container_name="container6185",
    resource_group_name="res3376")
resources:
  blobContainer:
    type: azure-native:storage:BlobContainer
    properties:
      accountName: sto328
      containerName: container6185
      resourceGroupName: res3376
Create BlobContainer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BlobContainer(name: string, args: BlobContainerArgs, opts?: CustomResourceOptions);@overload
def BlobContainer(resource_name: str,
                  args: BlobContainerArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def BlobContainer(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  account_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  container_name: Optional[str] = None,
                  default_encryption_scope: Optional[str] = None,
                  deny_encryption_scope_override: Optional[bool] = None,
                  enable_nfs_v3_all_squash: Optional[bool] = None,
                  enable_nfs_v3_root_squash: Optional[bool] = None,
                  immutable_storage_with_versioning: Optional[ImmutableStorageWithVersioningArgs] = None,
                  metadata: Optional[Mapping[str, str]] = None,
                  public_access: Optional[PublicAccess] = None)func NewBlobContainer(ctx *Context, name string, args BlobContainerArgs, opts ...ResourceOption) (*BlobContainer, error)public BlobContainer(string name, BlobContainerArgs args, CustomResourceOptions? opts = null)
public BlobContainer(String name, BlobContainerArgs args)
public BlobContainer(String name, BlobContainerArgs args, CustomResourceOptions options)
type: azure-native:storage:BlobContainer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BlobContainerArgs
- 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 BlobContainerArgs
- 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 BlobContainerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BlobContainerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BlobContainerArgs
- 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 blobContainerResource = new AzureNative.Storage.BlobContainer("blobContainerResource", new()
{
    AccountName = "string",
    ResourceGroupName = "string",
    ContainerName = "string",
    DefaultEncryptionScope = "string",
    DenyEncryptionScopeOverride = false,
    EnableNfsV3AllSquash = false,
    EnableNfsV3RootSquash = false,
    ImmutableStorageWithVersioning = new AzureNative.Storage.Inputs.ImmutableStorageWithVersioningArgs
    {
        Enabled = false,
    },
    Metadata = 
    {
        { "string", "string" },
    },
    PublicAccess = AzureNative.Storage.PublicAccess.Container,
});
example, err := storage.NewBlobContainer(ctx, "blobContainerResource", &storage.BlobContainerArgs{
	AccountName:                 pulumi.String("string"),
	ResourceGroupName:           pulumi.String("string"),
	ContainerName:               pulumi.String("string"),
	DefaultEncryptionScope:      pulumi.String("string"),
	DenyEncryptionScopeOverride: pulumi.Bool(false),
	EnableNfsV3AllSquash:        pulumi.Bool(false),
	EnableNfsV3RootSquash:       pulumi.Bool(false),
	ImmutableStorageWithVersioning: &storage.ImmutableStorageWithVersioningArgs{
		Enabled: pulumi.Bool(false),
	},
	Metadata: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	PublicAccess: storage.PublicAccessContainer,
})
var blobContainerResource = new BlobContainer("blobContainerResource", BlobContainerArgs.builder()
    .accountName("string")
    .resourceGroupName("string")
    .containerName("string")
    .defaultEncryptionScope("string")
    .denyEncryptionScopeOverride(false)
    .enableNfsV3AllSquash(false)
    .enableNfsV3RootSquash(false)
    .immutableStorageWithVersioning(ImmutableStorageWithVersioningArgs.builder()
        .enabled(false)
        .build())
    .metadata(Map.of("string", "string"))
    .publicAccess("Container")
    .build());
blob_container_resource = azure_native.storage.BlobContainer("blobContainerResource",
    account_name="string",
    resource_group_name="string",
    container_name="string",
    default_encryption_scope="string",
    deny_encryption_scope_override=False,
    enable_nfs_v3_all_squash=False,
    enable_nfs_v3_root_squash=False,
    immutable_storage_with_versioning={
        "enabled": False,
    },
    metadata={
        "string": "string",
    },
    public_access=azure_native.storage.PublicAccess.CONTAINER)
const blobContainerResource = new azure_native.storage.BlobContainer("blobContainerResource", {
    accountName: "string",
    resourceGroupName: "string",
    containerName: "string",
    defaultEncryptionScope: "string",
    denyEncryptionScopeOverride: false,
    enableNfsV3AllSquash: false,
    enableNfsV3RootSquash: false,
    immutableStorageWithVersioning: {
        enabled: false,
    },
    metadata: {
        string: "string",
    },
    publicAccess: azure_native.storage.PublicAccess.Container,
});
type: azure-native:storage:BlobContainer
properties:
    accountName: string
    containerName: string
    defaultEncryptionScope: string
    denyEncryptionScopeOverride: false
    enableNfsV3AllSquash: false
    enableNfsV3RootSquash: false
    immutableStorageWithVersioning:
        enabled: false
    metadata:
        string: string
    publicAccess: Container
    resourceGroupName: string
BlobContainer 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 BlobContainer resource accepts the following input properties:
- AccountName string
- The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- ResourceGroup stringName 
- The name of the resource group within the user's subscription. The name is case insensitive.
- ContainerName string
- The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- DefaultEncryption stringScope 
- Default the container to use specified encryption scope for all writes.
- DenyEncryption boolScope Override 
- Block override of encryption scope from the container default.
- EnableNfs boolV3All Squash 
- Enable NFSv3 all squash on blob container.
- EnableNfs boolV3Root Squash 
- Enable NFSv3 root squash on blob container.
- ImmutableStorage Pulumi.With Versioning Azure Native. Storage. Inputs. Immutable Storage With Versioning 
- The object level immutability property of the container. The property is immutable and can only be set to true at the container creation time. Existing containers must undergo a migration process.
- Metadata Dictionary<string, string>
- A name-value pair to associate with the container as metadata.
- PublicAccess Pulumi.Azure Native. Storage. Public Access 
- Specifies whether data in the container may be accessed publicly and the level of access.
- AccountName string
- The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- ResourceGroup stringName 
- The name of the resource group within the user's subscription. The name is case insensitive.
- ContainerName string
- The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- DefaultEncryption stringScope 
- Default the container to use specified encryption scope for all writes.
- DenyEncryption boolScope Override 
- Block override of encryption scope from the container default.
- EnableNfs boolV3All Squash 
- Enable NFSv3 all squash on blob container.
- EnableNfs boolV3Root Squash 
- Enable NFSv3 root squash on blob container.
- ImmutableStorage ImmutableWith Versioning Storage With Versioning Args 
- The object level immutability property of the container. The property is immutable and can only be set to true at the container creation time. Existing containers must undergo a migration process.
- Metadata map[string]string
- A name-value pair to associate with the container as metadata.
- PublicAccess PublicAccess 
- Specifies whether data in the container may be accessed publicly and the level of access.
- accountName String
- The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resourceGroup StringName 
- The name of the resource group within the user's subscription. The name is case insensitive.
- containerName String
- The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- defaultEncryption StringScope 
- Default the container to use specified encryption scope for all writes.
- denyEncryption BooleanScope Override 
- Block override of encryption scope from the container default.
- enableNfs BooleanV3All Squash 
- Enable NFSv3 all squash on blob container.
- enableNfs BooleanV3Root Squash 
- Enable NFSv3 root squash on blob container.
- immutableStorage ImmutableWith Versioning Storage With Versioning 
- The object level immutability property of the container. The property is immutable and can only be set to true at the container creation time. Existing containers must undergo a migration process.
- metadata Map<String,String>
- A name-value pair to associate with the container as metadata.
- publicAccess PublicAccess 
- Specifies whether data in the container may be accessed publicly and the level of access.
- accountName string
- The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resourceGroup stringName 
- The name of the resource group within the user's subscription. The name is case insensitive.
- containerName string
- The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- defaultEncryption stringScope 
- Default the container to use specified encryption scope for all writes.
- denyEncryption booleanScope Override 
- Block override of encryption scope from the container default.
- enableNfs booleanV3All Squash 
- Enable NFSv3 all squash on blob container.
- enableNfs booleanV3Root Squash 
- Enable NFSv3 root squash on blob container.
- immutableStorage ImmutableWith Versioning Storage With Versioning 
- The object level immutability property of the container. The property is immutable and can only be set to true at the container creation time. Existing containers must undergo a migration process.
- metadata {[key: string]: string}
- A name-value pair to associate with the container as metadata.
- publicAccess PublicAccess 
- Specifies whether data in the container may be accessed publicly and the level of access.
- account_name str
- The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resource_group_ strname 
- The name of the resource group within the user's subscription. The name is case insensitive.
- container_name str
- The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- default_encryption_ strscope 
- Default the container to use specified encryption scope for all writes.
- deny_encryption_ boolscope_ override 
- Block override of encryption scope from the container default.
- enable_nfs_ boolv3_ all_ squash 
- Enable NFSv3 all squash on blob container.
- enable_nfs_ boolv3_ root_ squash 
- Enable NFSv3 root squash on blob container.
- immutable_storage_ Immutablewith_ versioning Storage With Versioning Args 
- The object level immutability property of the container. The property is immutable and can only be set to true at the container creation time. Existing containers must undergo a migration process.
- metadata Mapping[str, str]
- A name-value pair to associate with the container as metadata.
- public_access PublicAccess 
- Specifies whether data in the container may be accessed publicly and the level of access.
- accountName String
- The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resourceGroup StringName 
- The name of the resource group within the user's subscription. The name is case insensitive.
- containerName String
- The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- defaultEncryption StringScope 
- Default the container to use specified encryption scope for all writes.
- denyEncryption BooleanScope Override 
- Block override of encryption scope from the container default.
- enableNfs BooleanV3All Squash 
- Enable NFSv3 all squash on blob container.
- enableNfs BooleanV3Root Squash 
- Enable NFSv3 root squash on blob container.
- immutableStorage Property MapWith Versioning 
- The object level immutability property of the container. The property is immutable and can only be set to true at the container creation time. Existing containers must undergo a migration process.
- metadata Map<String>
- A name-value pair to associate with the container as metadata.
- publicAccess "Container" | "Blob" | "None"
- Specifies whether data in the container may be accessed publicly and the level of access.
Outputs
All input properties are implicitly available as output properties. Additionally, the BlobContainer resource produces the following output properties:
- Deleted bool
- Indicates whether the blob container was deleted.
- DeletedTime string
- Blob container deletion time.
- Etag string
- Resource Etag.
- HasImmutability boolPolicy 
- The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container.
- HasLegal boolHold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- Id string
- The provider-assigned unique ID for this managed resource.
- ImmutabilityPolicy Pulumi.Azure Native. Storage. Outputs. Immutability Policy Properties Response 
- The ImmutabilityPolicy property of the container.
- LastModified stringTime 
- Returns the date and time the container was last modified.
- LeaseDuration string
- Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased.
- LeaseState string
- Lease state of the container.
- LeaseStatus string
- The lease status of the container.
- LegalHold Pulumi.Azure Native. Storage. Outputs. Legal Hold Properties Response 
- The LegalHold property of the container.
- Name string
- The name of the resource
- RemainingRetention intDays 
- Remaining retention days for soft deleted blob container.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Version string
- The version of the deleted blob container.
- Deleted bool
- Indicates whether the blob container was deleted.
- DeletedTime string
- Blob container deletion time.
- Etag string
- Resource Etag.
- HasImmutability boolPolicy 
- The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container.
- HasLegal boolHold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- Id string
- The provider-assigned unique ID for this managed resource.
- ImmutabilityPolicy ImmutabilityPolicy Properties Response 
- The ImmutabilityPolicy property of the container.
- LastModified stringTime 
- Returns the date and time the container was last modified.
- LeaseDuration string
- Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased.
- LeaseState string
- Lease state of the container.
- LeaseStatus string
- The lease status of the container.
- LegalHold LegalHold Properties Response 
- The LegalHold property of the container.
- Name string
- The name of the resource
- RemainingRetention intDays 
- Remaining retention days for soft deleted blob container.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Version string
- The version of the deleted blob container.
- deleted Boolean
- Indicates whether the blob container was deleted.
- deletedTime String
- Blob container deletion time.
- etag String
- Resource Etag.
- hasImmutability BooleanPolicy 
- The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container.
- hasLegal BooleanHold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- id String
- The provider-assigned unique ID for this managed resource.
- immutabilityPolicy ImmutabilityPolicy Properties Response 
- The ImmutabilityPolicy property of the container.
- lastModified StringTime 
- Returns the date and time the container was last modified.
- leaseDuration String
- Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased.
- leaseState String
- Lease state of the container.
- leaseStatus String
- The lease status of the container.
- legalHold LegalHold Properties Response 
- The LegalHold property of the container.
- name String
- The name of the resource
- remainingRetention IntegerDays 
- Remaining retention days for soft deleted blob container.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- version String
- The version of the deleted blob container.
- deleted boolean
- Indicates whether the blob container was deleted.
- deletedTime string
- Blob container deletion time.
- etag string
- Resource Etag.
- hasImmutability booleanPolicy 
- The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container.
- hasLegal booleanHold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- id string
- The provider-assigned unique ID for this managed resource.
- immutabilityPolicy ImmutabilityPolicy Properties Response 
- The ImmutabilityPolicy property of the container.
- lastModified stringTime 
- Returns the date and time the container was last modified.
- leaseDuration string
- Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased.
- leaseState string
- Lease state of the container.
- leaseStatus string
- The lease status of the container.
- legalHold LegalHold Properties Response 
- The LegalHold property of the container.
- name string
- The name of the resource
- remainingRetention numberDays 
- Remaining retention days for soft deleted blob container.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- version string
- The version of the deleted blob container.
- deleted bool
- Indicates whether the blob container was deleted.
- deleted_time str
- Blob container deletion time.
- etag str
- Resource Etag.
- has_immutability_ boolpolicy 
- The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container.
- has_legal_ boolhold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- id str
- The provider-assigned unique ID for this managed resource.
- immutability_policy ImmutabilityPolicy Properties Response 
- The ImmutabilityPolicy property of the container.
- last_modified_ strtime 
- Returns the date and time the container was last modified.
- lease_duration str
- Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased.
- lease_state str
- Lease state of the container.
- lease_status str
- The lease status of the container.
- legal_hold LegalHold Properties Response 
- The LegalHold property of the container.
- name str
- The name of the resource
- remaining_retention_ intdays 
- Remaining retention days for soft deleted blob container.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- version str
- The version of the deleted blob container.
- deleted Boolean
- Indicates whether the blob container was deleted.
- deletedTime String
- Blob container deletion time.
- etag String
- Resource Etag.
- hasImmutability BooleanPolicy 
- The hasImmutabilityPolicy public property is set to true by SRP if ImmutabilityPolicy has been created for this container. The hasImmutabilityPolicy public property is set to false by SRP if ImmutabilityPolicy has not been created for this container.
- hasLegal BooleanHold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- id String
- The provider-assigned unique ID for this managed resource.
- immutabilityPolicy Property Map
- The ImmutabilityPolicy property of the container.
- lastModified StringTime 
- Returns the date and time the container was last modified.
- leaseDuration String
- Specifies whether the lease on a container is of infinite or fixed duration, only when the container is leased.
- leaseState String
- Lease state of the container.
- leaseStatus String
- The lease status of the container.
- legalHold Property Map
- The LegalHold property of the container.
- name String
- The name of the resource
- remainingRetention NumberDays 
- Remaining retention days for soft deleted blob container.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- version String
- The version of the deleted blob container.
Supporting Types
ImmutabilityPolicyPropertiesResponse, ImmutabilityPolicyPropertiesResponseArgs        
- Etag string
- ImmutabilityPolicy Etag.
- State string
- The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked.
- UpdateHistory List<Pulumi.Azure Native. Storage. Inputs. Update History Property Response> 
- The ImmutabilityPolicy update history of the blob container.
- AllowProtected boolAppend Writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- AllowProtected boolAppend Writes All 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
- ImmutabilityPeriod intSince Creation In Days 
- The immutability period for the blobs in the container since the policy creation, in days.
- Etag string
- ImmutabilityPolicy Etag.
- State string
- The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked.
- UpdateHistory []UpdateHistory Property Response 
- The ImmutabilityPolicy update history of the blob container.
- AllowProtected boolAppend Writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- AllowProtected boolAppend Writes All 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
- ImmutabilityPeriod intSince Creation In Days 
- The immutability period for the blobs in the container since the policy creation, in days.
- etag String
- ImmutabilityPolicy Etag.
- state String
- The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked.
- updateHistory List<UpdateHistory Property Response> 
- The ImmutabilityPolicy update history of the blob container.
- allowProtected BooleanAppend Writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- allowProtected BooleanAppend Writes All 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
- immutabilityPeriod IntegerSince Creation In Days 
- The immutability period for the blobs in the container since the policy creation, in days.
- etag string
- ImmutabilityPolicy Etag.
- state string
- The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked.
- updateHistory UpdateHistory Property Response[] 
- The ImmutabilityPolicy update history of the blob container.
- allowProtected booleanAppend Writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- allowProtected booleanAppend Writes All 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
- immutabilityPeriod numberSince Creation In Days 
- The immutability period for the blobs in the container since the policy creation, in days.
- etag str
- ImmutabilityPolicy Etag.
- state str
- The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked.
- update_history Sequence[UpdateHistory Property Response] 
- The ImmutabilityPolicy update history of the blob container.
- allow_protected_ boolappend_ writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- allow_protected_ boolappend_ writes_ all 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
- immutability_period_ intsince_ creation_ in_ days 
- The immutability period for the blobs in the container since the policy creation, in days.
- etag String
- ImmutabilityPolicy Etag.
- state String
- The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked.
- updateHistory List<Property Map>
- The ImmutabilityPolicy update history of the blob container.
- allowProtected BooleanAppend Writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- allowProtected BooleanAppend Writes All 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
- immutabilityPeriod NumberSince Creation In Days 
- The immutability period for the blobs in the container since the policy creation, in days.
ImmutableStorageWithVersioning, ImmutableStorageWithVersioningArgs        
- Enabled bool
- This is an immutable property, when set to true it enables object level immutability at the container level.
- Enabled bool
- This is an immutable property, when set to true it enables object level immutability at the container level.
- enabled Boolean
- This is an immutable property, when set to true it enables object level immutability at the container level.
- enabled boolean
- This is an immutable property, when set to true it enables object level immutability at the container level.
- enabled bool
- This is an immutable property, when set to true it enables object level immutability at the container level.
- enabled Boolean
- This is an immutable property, when set to true it enables object level immutability at the container level.
ImmutableStorageWithVersioningResponse, ImmutableStorageWithVersioningResponseArgs          
- MigrationState string
- This property denotes the container level immutability to object level immutability migration state.
- TimeStamp string
- Returns the date and time the object level immutability was enabled.
- Enabled bool
- This is an immutable property, when set to true it enables object level immutability at the container level.
- MigrationState string
- This property denotes the container level immutability to object level immutability migration state.
- TimeStamp string
- Returns the date and time the object level immutability was enabled.
- Enabled bool
- This is an immutable property, when set to true it enables object level immutability at the container level.
- migrationState String
- This property denotes the container level immutability to object level immutability migration state.
- timeStamp String
- Returns the date and time the object level immutability was enabled.
- enabled Boolean
- This is an immutable property, when set to true it enables object level immutability at the container level.
- migrationState string
- This property denotes the container level immutability to object level immutability migration state.
- timeStamp string
- Returns the date and time the object level immutability was enabled.
- enabled boolean
- This is an immutable property, when set to true it enables object level immutability at the container level.
- migration_state str
- This property denotes the container level immutability to object level immutability migration state.
- time_stamp str
- Returns the date and time the object level immutability was enabled.
- enabled bool
- This is an immutable property, when set to true it enables object level immutability at the container level.
- migrationState String
- This property denotes the container level immutability to object level immutability migration state.
- timeStamp String
- Returns the date and time the object level immutability was enabled.
- enabled Boolean
- This is an immutable property, when set to true it enables object level immutability at the container level.
LegalHoldPropertiesResponse, LegalHoldPropertiesResponseArgs        
- HasLegal boolHold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- ProtectedAppend Pulumi.Writes History Azure Native. Storage. Inputs. Protected Append Writes History Response 
- Protected append blob writes history.
- 
List<Pulumi.Azure Native. Storage. Inputs. Tag Property Response> 
- The list of LegalHold tags of a blob container.
- HasLegal boolHold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- ProtectedAppend ProtectedWrites History Append Writes History Response 
- Protected append blob writes history.
- 
[]TagProperty Response 
- The list of LegalHold tags of a blob container.
- hasLegal BooleanHold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- protectedAppend ProtectedWrites History Append Writes History Response 
- Protected append blob writes history.
- 
List<TagProperty Response> 
- The list of LegalHold tags of a blob container.
- hasLegal booleanHold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- protectedAppend ProtectedWrites History Append Writes History Response 
- Protected append blob writes history.
- 
TagProperty Response[] 
- The list of LegalHold tags of a blob container.
- has_legal_ boolhold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- protected_append_ Protectedwrites_ history Append Writes History Response 
- Protected append blob writes history.
- 
Sequence[TagProperty Response] 
- The list of LegalHold tags of a blob container.
- hasLegal BooleanHold 
- The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
- protectedAppend Property MapWrites History 
- Protected append blob writes history.
- List<Property Map>
- The list of LegalHold tags of a blob container.
ProtectedAppendWritesHistoryResponse, ProtectedAppendWritesHistoryResponseArgs          
- Timestamp string
- Returns the date and time the tag was added.
- AllowProtected boolAppend Writes All 
- When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining legal hold protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted.
- Timestamp string
- Returns the date and time the tag was added.
- AllowProtected boolAppend Writes All 
- When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining legal hold protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted.
- timestamp String
- Returns the date and time the tag was added.
- allowProtected BooleanAppend Writes All 
- When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining legal hold protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted.
- timestamp string
- Returns the date and time the tag was added.
- allowProtected booleanAppend Writes All 
- When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining legal hold protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted.
- timestamp str
- Returns the date and time the tag was added.
- allow_protected_ boolappend_ writes_ all 
- When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining legal hold protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted.
- timestamp String
- Returns the date and time the tag was added.
- allowProtected BooleanAppend Writes All 
- When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining legal hold protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted.
PublicAccess, PublicAccessArgs    
- Container
- Container
- Blob
- Blob
- None
- None
- PublicAccess Container 
- Container
- PublicAccess Blob 
- Blob
- PublicAccess None 
- None
- Container
- Container
- Blob
- Blob
- None
- None
- Container
- Container
- Blob
- Blob
- None
- None
- CONTAINER
- Container
- BLOB
- Blob
- NONE
- None
- "Container"
- Container
- "Blob"
- Blob
- "None"
- None
TagPropertyResponse, TagPropertyResponseArgs      
- ObjectIdentifier string
- Returns the Object ID of the user who added the tag.
- Tag string
- The tag value.
- TenantId string
- Returns the Tenant ID that issued the token for the user who added the tag.
- Timestamp string
- Returns the date and time the tag was added.
- Upn string
- Returns the User Principal Name of the user who added the tag.
- ObjectIdentifier string
- Returns the Object ID of the user who added the tag.
- Tag string
- The tag value.
- TenantId string
- Returns the Tenant ID that issued the token for the user who added the tag.
- Timestamp string
- Returns the date and time the tag was added.
- Upn string
- Returns the User Principal Name of the user who added the tag.
- objectIdentifier String
- Returns the Object ID of the user who added the tag.
- tag String
- The tag value.
- tenantId String
- Returns the Tenant ID that issued the token for the user who added the tag.
- timestamp String
- Returns the date and time the tag was added.
- upn String
- Returns the User Principal Name of the user who added the tag.
- objectIdentifier string
- Returns the Object ID of the user who added the tag.
- tag string
- The tag value.
- tenantId string
- Returns the Tenant ID that issued the token for the user who added the tag.
- timestamp string
- Returns the date and time the tag was added.
- upn string
- Returns the User Principal Name of the user who added the tag.
- object_identifier str
- Returns the Object ID of the user who added the tag.
- tag str
- The tag value.
- tenant_id str
- Returns the Tenant ID that issued the token for the user who added the tag.
- timestamp str
- Returns the date and time the tag was added.
- upn str
- Returns the User Principal Name of the user who added the tag.
- objectIdentifier String
- Returns the Object ID of the user who added the tag.
- tag String
- The tag value.
- tenantId String
- Returns the Tenant ID that issued the token for the user who added the tag.
- timestamp String
- Returns the date and time the tag was added.
- upn String
- Returns the User Principal Name of the user who added the tag.
UpdateHistoryPropertyResponse, UpdateHistoryPropertyResponseArgs        
- ImmutabilityPeriod intSince Creation In Days 
- The immutability period for the blobs in the container since the policy creation, in days.
- ObjectIdentifier string
- Returns the Object ID of the user who updated the ImmutabilityPolicy.
- TenantId string
- Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy.
- Timestamp string
- Returns the date and time the ImmutabilityPolicy was updated.
- Update string
- The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend.
- Upn string
- Returns the User Principal Name of the user who updated the ImmutabilityPolicy.
- AllowProtected boolAppend Writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- AllowProtected boolAppend Writes All 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
- ImmutabilityPeriod intSince Creation In Days 
- The immutability period for the blobs in the container since the policy creation, in days.
- ObjectIdentifier string
- Returns the Object ID of the user who updated the ImmutabilityPolicy.
- TenantId string
- Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy.
- Timestamp string
- Returns the date and time the ImmutabilityPolicy was updated.
- Update string
- The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend.
- Upn string
- Returns the User Principal Name of the user who updated the ImmutabilityPolicy.
- AllowProtected boolAppend Writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- AllowProtected boolAppend Writes All 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
- immutabilityPeriod IntegerSince Creation In Days 
- The immutability period for the blobs in the container since the policy creation, in days.
- objectIdentifier String
- Returns the Object ID of the user who updated the ImmutabilityPolicy.
- tenantId String
- Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy.
- timestamp String
- Returns the date and time the ImmutabilityPolicy was updated.
- update String
- The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend.
- upn String
- Returns the User Principal Name of the user who updated the ImmutabilityPolicy.
- allowProtected BooleanAppend Writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- allowProtected BooleanAppend Writes All 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
- immutabilityPeriod numberSince Creation In Days 
- The immutability period for the blobs in the container since the policy creation, in days.
- objectIdentifier string
- Returns the Object ID of the user who updated the ImmutabilityPolicy.
- tenantId string
- Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy.
- timestamp string
- Returns the date and time the ImmutabilityPolicy was updated.
- update string
- The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend.
- upn string
- Returns the User Principal Name of the user who updated the ImmutabilityPolicy.
- allowProtected booleanAppend Writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- allowProtected booleanAppend Writes All 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
- immutability_period_ intsince_ creation_ in_ days 
- The immutability period for the blobs in the container since the policy creation, in days.
- object_identifier str
- Returns the Object ID of the user who updated the ImmutabilityPolicy.
- tenant_id str
- Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy.
- timestamp str
- Returns the date and time the ImmutabilityPolicy was updated.
- update str
- The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend.
- upn str
- Returns the User Principal Name of the user who updated the ImmutabilityPolicy.
- allow_protected_ boolappend_ writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- allow_protected_ boolappend_ writes_ all 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
- immutabilityPeriod NumberSince Creation In Days 
- The immutability period for the blobs in the container since the policy creation, in days.
- objectIdentifier String
- Returns the Object ID of the user who updated the ImmutabilityPolicy.
- tenantId String
- Returns the Tenant ID that issued the token for the user who updated the ImmutabilityPolicy.
- timestamp String
- Returns the date and time the ImmutabilityPolicy was updated.
- update String
- The ImmutabilityPolicy update type of a blob container, possible values include: put, lock and extend.
- upn String
- Returns the User Principal Name of the user who updated the ImmutabilityPolicy.
- allowProtected BooleanAppend Writes 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to an append blob while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API.
- allowProtected BooleanAppend Writes All 
- This property can only be changed for unlocked time-based retention policies. When enabled, new blocks can be written to both 'Append and Bock Blobs' while maintaining immutability protection and compliance. Only new blocks can be added and any existing blocks cannot be modified or deleted. This property cannot be changed with ExtendImmutabilityPolicy API. The 'allowProtectedAppendWrites' and 'allowProtectedAppendWritesAll' properties are mutually exclusive.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:storage:BlobContainer container6185 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/blobServices/default/containers/{containerName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0