We recommend using Azure Native.
azure.storage.DataLakeGen2Filesystem
Explore with Pulumi AI
Manages a Data Lake Gen2 File System within an Azure Storage Account.
NOTE: This resource requires some
Storagespecific roles which are not granted by default. Some of the built-ins roles that can be attributed areStorage Account Contributor,Storage Blob Data Owner,Storage Blob Data Contributor,Storage Blob Data Reader.
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: "examplestorageacc",
    resourceGroupName: example.name,
    location: example.location,
    accountTier: "Standard",
    accountReplicationType: "LRS",
    accountKind: "StorageV2",
    isHnsEnabled: true,
});
const exampleDataLakeGen2Filesystem = new azure.storage.DataLakeGen2Filesystem("example", {
    name: "example",
    storageAccountId: exampleAccount.id,
    properties: {
        hello: "aGVsbG8=",
    },
});
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="examplestorageacc",
    resource_group_name=example.name,
    location=example.location,
    account_tier="Standard",
    account_replication_type="LRS",
    account_kind="StorageV2",
    is_hns_enabled=True)
example_data_lake_gen2_filesystem = azure.storage.DataLakeGen2Filesystem("example",
    name="example",
    storage_account_id=example_account.id,
    properties={
        "hello": "aGVsbG8=",
    })
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v5/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("examplestorageacc"),
			ResourceGroupName:      example.Name,
			Location:               example.Location,
			AccountTier:            pulumi.String("Standard"),
			AccountReplicationType: pulumi.String("LRS"),
			AccountKind:            pulumi.String("StorageV2"),
			IsHnsEnabled:           pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		_, err = storage.NewDataLakeGen2Filesystem(ctx, "example", &storage.DataLakeGen2FilesystemArgs{
			Name:             pulumi.String("example"),
			StorageAccountId: exampleAccount.ID(),
			Properties: pulumi.StringMap{
				"hello": pulumi.String("aGVsbG8="),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });
    var exampleAccount = new Azure.Storage.Account("example", new()
    {
        Name = "examplestorageacc",
        ResourceGroupName = example.Name,
        Location = example.Location,
        AccountTier = "Standard",
        AccountReplicationType = "LRS",
        AccountKind = "StorageV2",
        IsHnsEnabled = true,
    });
    var exampleDataLakeGen2Filesystem = new Azure.Storage.DataLakeGen2Filesystem("example", new()
    {
        Name = "example",
        StorageAccountId = exampleAccount.Id,
        Properties = 
        {
            { "hello", "aGVsbG8=" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.storage.DataLakeGen2Filesystem;
import com.pulumi.azure.storage.DataLakeGen2FilesystemArgs;
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("examplestorageacc")
            .resourceGroupName(example.name())
            .location(example.location())
            .accountTier("Standard")
            .accountReplicationType("LRS")
            .accountKind("StorageV2")
            .isHnsEnabled("true")
            .build());
        var exampleDataLakeGen2Filesystem = new DataLakeGen2Filesystem("exampleDataLakeGen2Filesystem", DataLakeGen2FilesystemArgs.builder()
            .name("example")
            .storageAccountId(exampleAccount.id())
            .properties(Map.of("hello", "aGVsbG8="))
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleAccount:
    type: azure:storage:Account
    name: example
    properties:
      name: examplestorageacc
      resourceGroupName: ${example.name}
      location: ${example.location}
      accountTier: Standard
      accountReplicationType: LRS
      accountKind: StorageV2
      isHnsEnabled: 'true'
  exampleDataLakeGen2Filesystem:
    type: azure:storage:DataLakeGen2Filesystem
    name: example
    properties:
      name: example
      storageAccountId: ${exampleAccount.id}
      properties:
        hello: aGVsbG8=
Create DataLakeGen2Filesystem Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DataLakeGen2Filesystem(name: string, args: DataLakeGen2FilesystemArgs, opts?: CustomResourceOptions);@overload
def DataLakeGen2Filesystem(resource_name: str,
                           args: DataLakeGen2FilesystemArgs,
                           opts: Optional[ResourceOptions] = None)
@overload
def DataLakeGen2Filesystem(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           storage_account_id: Optional[str] = None,
                           aces: Optional[Sequence[DataLakeGen2FilesystemAceArgs]] = None,
                           default_encryption_scope: Optional[str] = None,
                           group: Optional[str] = None,
                           name: Optional[str] = None,
                           owner: Optional[str] = None,
                           properties: Optional[Mapping[str, str]] = None)func NewDataLakeGen2Filesystem(ctx *Context, name string, args DataLakeGen2FilesystemArgs, opts ...ResourceOption) (*DataLakeGen2Filesystem, error)public DataLakeGen2Filesystem(string name, DataLakeGen2FilesystemArgs args, CustomResourceOptions? opts = null)
public DataLakeGen2Filesystem(String name, DataLakeGen2FilesystemArgs args)
public DataLakeGen2Filesystem(String name, DataLakeGen2FilesystemArgs args, CustomResourceOptions options)
type: azure:storage:DataLakeGen2Filesystem
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 DataLakeGen2FilesystemArgs
- 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 DataLakeGen2FilesystemArgs
- 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 DataLakeGen2FilesystemArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataLakeGen2FilesystemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DataLakeGen2FilesystemArgs
- 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 dataLakeGen2FilesystemResource = new Azure.Storage.DataLakeGen2Filesystem("dataLakeGen2FilesystemResource", new()
{
    StorageAccountId = "string",
    Aces = new[]
    {
        new Azure.Storage.Inputs.DataLakeGen2FilesystemAceArgs
        {
            Permissions = "string",
            Type = "string",
            Id = "string",
            Scope = "string",
        },
    },
    DefaultEncryptionScope = "string",
    Group = "string",
    Name = "string",
    Owner = "string",
    Properties = 
    {
        { "string", "string" },
    },
});
example, err := storage.NewDataLakeGen2Filesystem(ctx, "dataLakeGen2FilesystemResource", &storage.DataLakeGen2FilesystemArgs{
	StorageAccountId: pulumi.String("string"),
	Aces: storage.DataLakeGen2FilesystemAceArray{
		&storage.DataLakeGen2FilesystemAceArgs{
			Permissions: pulumi.String("string"),
			Type:        pulumi.String("string"),
			Id:          pulumi.String("string"),
			Scope:       pulumi.String("string"),
		},
	},
	DefaultEncryptionScope: pulumi.String("string"),
	Group:                  pulumi.String("string"),
	Name:                   pulumi.String("string"),
	Owner:                  pulumi.String("string"),
	Properties: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var dataLakeGen2FilesystemResource = new DataLakeGen2Filesystem("dataLakeGen2FilesystemResource", DataLakeGen2FilesystemArgs.builder()
    .storageAccountId("string")
    .aces(DataLakeGen2FilesystemAceArgs.builder()
        .permissions("string")
        .type("string")
        .id("string")
        .scope("string")
        .build())
    .defaultEncryptionScope("string")
    .group("string")
    .name("string")
    .owner("string")
    .properties(Map.of("string", "string"))
    .build());
data_lake_gen2_filesystem_resource = azure.storage.DataLakeGen2Filesystem("dataLakeGen2FilesystemResource",
    storage_account_id="string",
    aces=[azure.storage.DataLakeGen2FilesystemAceArgs(
        permissions="string",
        type="string",
        id="string",
        scope="string",
    )],
    default_encryption_scope="string",
    group="string",
    name="string",
    owner="string",
    properties={
        "string": "string",
    })
const dataLakeGen2FilesystemResource = new azure.storage.DataLakeGen2Filesystem("dataLakeGen2FilesystemResource", {
    storageAccountId: "string",
    aces: [{
        permissions: "string",
        type: "string",
        id: "string",
        scope: "string",
    }],
    defaultEncryptionScope: "string",
    group: "string",
    name: "string",
    owner: "string",
    properties: {
        string: "string",
    },
});
type: azure:storage:DataLakeGen2Filesystem
properties:
    aces:
        - id: string
          permissions: string
          scope: string
          type: string
    defaultEncryptionScope: string
    group: string
    name: string
    owner: string
    properties:
        string: string
    storageAccountId: string
DataLakeGen2Filesystem Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The DataLakeGen2Filesystem resource accepts the following input properties:
- StorageAccount stringId 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
- Aces
List<DataLake Gen2Filesystem Ace> 
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- DefaultEncryption stringScope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- Group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- Name string
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- Owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- Properties Dictionary<string, string>
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
- StorageAccount stringId 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
- Aces
[]DataLake Gen2Filesystem Ace Args 
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- DefaultEncryption stringScope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- Group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- Name string
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- Owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- Properties map[string]string
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
- storageAccount StringId 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
- aces
List<DataLake Gen2Filesystem Ace> 
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- defaultEncryption StringScope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- group String
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- name String
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- owner String
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- properties Map<String,String>
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
- storageAccount stringId 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
- aces
DataLake Gen2Filesystem Ace[] 
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- defaultEncryption stringScope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- name string
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- properties {[key: string]: string}
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
- storage_account_ strid 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
- aces
Sequence[DataLake Gen2Filesystem Ace Args] 
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- default_encryption_ strscope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- group str
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- name str
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- owner str
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- properties Mapping[str, str]
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
- storageAccount StringId 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
- aces List<Property Map>
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- defaultEncryption StringScope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- group String
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- name String
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- owner String
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- properties Map<String>
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
Outputs
All input properties are implicitly available as output properties. Additionally, the DataLakeGen2Filesystem 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 DataLakeGen2Filesystem Resource
Get an existing DataLakeGen2Filesystem 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?: DataLakeGen2FilesystemState, opts?: CustomResourceOptions): DataLakeGen2Filesystem@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        aces: Optional[Sequence[DataLakeGen2FilesystemAceArgs]] = None,
        default_encryption_scope: Optional[str] = None,
        group: Optional[str] = None,
        name: Optional[str] = None,
        owner: Optional[str] = None,
        properties: Optional[Mapping[str, str]] = None,
        storage_account_id: Optional[str] = None) -> DataLakeGen2Filesystemfunc GetDataLakeGen2Filesystem(ctx *Context, name string, id IDInput, state *DataLakeGen2FilesystemState, opts ...ResourceOption) (*DataLakeGen2Filesystem, error)public static DataLakeGen2Filesystem Get(string name, Input<string> id, DataLakeGen2FilesystemState? state, CustomResourceOptions? opts = null)public static DataLakeGen2Filesystem get(String name, Output<String> id, DataLakeGen2FilesystemState state, CustomResourceOptions options)Resource lookup is not supported in YAML- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Aces
List<DataLake Gen2Filesystem Ace> 
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- DefaultEncryption stringScope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- Group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- Name string
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- Owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- Properties Dictionary<string, string>
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
- StorageAccount stringId 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
- Aces
[]DataLake Gen2Filesystem Ace Args 
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- DefaultEncryption stringScope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- Group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- Name string
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- Owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- Properties map[string]string
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
- StorageAccount stringId 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
- aces
List<DataLake Gen2Filesystem Ace> 
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- defaultEncryption StringScope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- group String
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- name String
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- owner String
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- properties Map<String,String>
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
- storageAccount StringId 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
- aces
DataLake Gen2Filesystem Ace[] 
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- defaultEncryption stringScope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- name string
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- properties {[key: string]: string}
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
- storageAccount stringId 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
- aces
Sequence[DataLake Gen2Filesystem Ace Args] 
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- default_encryption_ strscope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- group str
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- name str
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- owner str
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- properties Mapping[str, str]
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
- storage_account_ strid 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
- aces List<Property Map>
- One or more aceblocks as defined below to specify the entries for the ACL for the path.
- defaultEncryption StringScope 
- The default encryption scope to use for this filesystem. Changing this forces a new resource to be created.
- group String
- Specifies the Object ID of the Azure Active Directory Group to make the owning group of the root path (i.e. - /). Possible values also include- $superuser.- NOTE: The Storage Account requires - account_kindto be either- StorageV2or- BlobStorage. In addition,- is_hns_enabledhas to be set to- true.
- name String
- The name of the Data Lake Gen2 File System which should be created within the Storage Account. Must be unique within the storage account the queue is located. Changing this forces a new resource to be created.
- owner String
- Specifies the Object ID of the Azure Active Directory User to make the owning user of the root path (i.e. /). Possible values also include$superuser.
- properties Map<String>
- A mapping of Key to Base64-Encoded Values which should be assigned to this Data Lake Gen2 File System.
- storageAccount StringId 
- Specifies the ID of the Storage Account in which the Data Lake Gen2 File System should exist. Changing this forces a new resource to be created.
Supporting Types
DataLakeGen2FilesystemAce, DataLakeGen2FilesystemAceArgs        
- Permissions string
- Specifies the permissions for the entry in - rwxform. For example,- rwxgives full permissions but- r--only gives read permissions.- More details on ACLs can be found here: https://docs.microsoft.com/azure/storage/blobs/data-lake-storage-access-control#access-control-lists-on-files-and-directories 
- Type string
- Specifies the type of entry. Can be user,group,maskorother.
- Id string
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for userorgroupentries.
- Scope string
- Specifies whether the ACE represents an accessentry or adefaultentry. Default value isaccess.
- Permissions string
- Specifies the permissions for the entry in - rwxform. For example,- rwxgives full permissions but- r--only gives read permissions.- More details on ACLs can be found here: https://docs.microsoft.com/azure/storage/blobs/data-lake-storage-access-control#access-control-lists-on-files-and-directories 
- Type string
- Specifies the type of entry. Can be user,group,maskorother.
- Id string
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for userorgroupentries.
- Scope string
- Specifies whether the ACE represents an accessentry or adefaultentry. Default value isaccess.
- permissions String
- Specifies the permissions for the entry in - rwxform. For example,- rwxgives full permissions but- r--only gives read permissions.- More details on ACLs can be found here: https://docs.microsoft.com/azure/storage/blobs/data-lake-storage-access-control#access-control-lists-on-files-and-directories 
- type String
- Specifies the type of entry. Can be user,group,maskorother.
- id String
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for userorgroupentries.
- scope String
- Specifies whether the ACE represents an accessentry or adefaultentry. Default value isaccess.
- permissions string
- Specifies the permissions for the entry in - rwxform. For example,- rwxgives full permissions but- r--only gives read permissions.- More details on ACLs can be found here: https://docs.microsoft.com/azure/storage/blobs/data-lake-storage-access-control#access-control-lists-on-files-and-directories 
- type string
- Specifies the type of entry. Can be user,group,maskorother.
- id string
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for userorgroupentries.
- scope string
- Specifies whether the ACE represents an accessentry or adefaultentry. Default value isaccess.
- permissions str
- Specifies the permissions for the entry in - rwxform. For example,- rwxgives full permissions but- r--only gives read permissions.- More details on ACLs can be found here: https://docs.microsoft.com/azure/storage/blobs/data-lake-storage-access-control#access-control-lists-on-files-and-directories 
- type str
- Specifies the type of entry. Can be user,group,maskorother.
- id str
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for userorgroupentries.
- scope str
- Specifies whether the ACE represents an accessentry or adefaultentry. Default value isaccess.
- permissions String
- Specifies the permissions for the entry in - rwxform. For example,- rwxgives full permissions but- r--only gives read permissions.- More details on ACLs can be found here: https://docs.microsoft.com/azure/storage/blobs/data-lake-storage-access-control#access-control-lists-on-files-and-directories 
- type String
- Specifies the type of entry. Can be user,group,maskorother.
- id String
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for userorgroupentries.
- scope String
- Specifies whether the ACE represents an accessentry or adefaultentry. Default value isaccess.
Import
Data Lake Gen2 File System’s can be imported using the resource id, e.g.
$ pulumi import azure:storage/dataLakeGen2Filesystem:DataLakeGen2Filesystem queue1 https://account1.dfs.core.windows.net/fileSystem1
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 azurermTerraform Provider.