We recommend using Azure Native.
azure.storage.DataLakeGen2Path
Explore with Pulumi AI
Manages a Data Lake Gen2 Path in a File System within an Azure Storage Account.
NOTE: This resource requires some
Storage
specific 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,
});
const exampleDataLakeGen2Path = new azure.storage.DataLakeGen2Path("example", {
path: "example",
filesystemName: exampleDataLakeGen2Filesystem.name,
storageAccountId: exampleAccount.id,
resource: "directory",
});
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)
example_data_lake_gen2_path = azure.storage.DataLakeGen2Path("example",
path="example",
filesystem_name=example_data_lake_gen2_filesystem.name,
storage_account_id=example_account.id,
resource="directory")
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
}
exampleDataLakeGen2Filesystem, err := storage.NewDataLakeGen2Filesystem(ctx, "example", &storage.DataLakeGen2FilesystemArgs{
Name: pulumi.String("example"),
StorageAccountId: exampleAccount.ID(),
})
if err != nil {
return err
}
_, err = storage.NewDataLakeGen2Path(ctx, "example", &storage.DataLakeGen2PathArgs{
Path: pulumi.String("example"),
FilesystemName: exampleDataLakeGen2Filesystem.Name,
StorageAccountId: exampleAccount.ID(),
Resource: pulumi.String("directory"),
})
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,
});
var exampleDataLakeGen2Path = new Azure.Storage.DataLakeGen2Path("example", new()
{
Path = "example",
FilesystemName = exampleDataLakeGen2Filesystem.Name,
StorageAccountId = exampleAccount.Id,
Resource = "directory",
});
});
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 com.pulumi.azure.storage.DataLakeGen2Path;
import com.pulumi.azure.storage.DataLakeGen2PathArgs;
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())
.build());
var exampleDataLakeGen2Path = new DataLakeGen2Path("exampleDataLakeGen2Path", DataLakeGen2PathArgs.builder()
.path("example")
.filesystemName(exampleDataLakeGen2Filesystem.name())
.storageAccountId(exampleAccount.id())
.resource("directory")
.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}
exampleDataLakeGen2Path:
type: azure:storage:DataLakeGen2Path
name: example
properties:
path: example
filesystemName: ${exampleDataLakeGen2Filesystem.name}
storageAccountId: ${exampleAccount.id}
resource: directory
Create DataLakeGen2Path Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DataLakeGen2Path(name: string, args: DataLakeGen2PathArgs, opts?: CustomResourceOptions);
@overload
def DataLakeGen2Path(resource_name: str,
args: DataLakeGen2PathArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DataLakeGen2Path(resource_name: str,
opts: Optional[ResourceOptions] = None,
filesystem_name: Optional[str] = None,
path: Optional[str] = None,
resource: Optional[str] = None,
storage_account_id: Optional[str] = None,
aces: Optional[Sequence[DataLakeGen2PathAceArgs]] = None,
group: Optional[str] = None,
owner: Optional[str] = None)
func NewDataLakeGen2Path(ctx *Context, name string, args DataLakeGen2PathArgs, opts ...ResourceOption) (*DataLakeGen2Path, error)
public DataLakeGen2Path(string name, DataLakeGen2PathArgs args, CustomResourceOptions? opts = null)
public DataLakeGen2Path(String name, DataLakeGen2PathArgs args)
public DataLakeGen2Path(String name, DataLakeGen2PathArgs args, CustomResourceOptions options)
type: azure:storage:DataLakeGen2Path
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 DataLakeGen2PathArgs
- 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 DataLakeGen2PathArgs
- 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 DataLakeGen2PathArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataLakeGen2PathArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DataLakeGen2PathArgs
- 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 dataLakeGen2PathResource = new Azure.Storage.DataLakeGen2Path("dataLakeGen2PathResource", new()
{
FilesystemName = "string",
Path = "string",
Resource = "string",
StorageAccountId = "string",
Aces = new[]
{
new Azure.Storage.Inputs.DataLakeGen2PathAceArgs
{
Permissions = "string",
Type = "string",
Id = "string",
Scope = "string",
},
},
Group = "string",
Owner = "string",
});
example, err := storage.NewDataLakeGen2Path(ctx, "dataLakeGen2PathResource", &storage.DataLakeGen2PathArgs{
FilesystemName: pulumi.String("string"),
Path: pulumi.String("string"),
Resource: pulumi.String("string"),
StorageAccountId: pulumi.String("string"),
Aces: storage.DataLakeGen2PathAceArray{
&storage.DataLakeGen2PathAceArgs{
Permissions: pulumi.String("string"),
Type: pulumi.String("string"),
Id: pulumi.String("string"),
Scope: pulumi.String("string"),
},
},
Group: pulumi.String("string"),
Owner: pulumi.String("string"),
})
var dataLakeGen2PathResource = new DataLakeGen2Path("dataLakeGen2PathResource", DataLakeGen2PathArgs.builder()
.filesystemName("string")
.path("string")
.resource("string")
.storageAccountId("string")
.aces(DataLakeGen2PathAceArgs.builder()
.permissions("string")
.type("string")
.id("string")
.scope("string")
.build())
.group("string")
.owner("string")
.build());
data_lake_gen2_path_resource = azure.storage.DataLakeGen2Path("dataLakeGen2PathResource",
filesystem_name="string",
path="string",
resource="string",
storage_account_id="string",
aces=[azure.storage.DataLakeGen2PathAceArgs(
permissions="string",
type="string",
id="string",
scope="string",
)],
group="string",
owner="string")
const dataLakeGen2PathResource = new azure.storage.DataLakeGen2Path("dataLakeGen2PathResource", {
filesystemName: "string",
path: "string",
resource: "string",
storageAccountId: "string",
aces: [{
permissions: "string",
type: "string",
id: "string",
scope: "string",
}],
group: "string",
owner: "string",
});
type: azure:storage:DataLakeGen2Path
properties:
aces:
- id: string
permissions: string
scope: string
type: string
filesystemName: string
group: string
owner: string
path: string
resource: string
storageAccountId: string
DataLakeGen2Path 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 DataLakeGen2Path resource accepts the following input properties:
- Filesystem
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.
- Path string
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- Resource string
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - Storage
Account 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<Data
Lake Gen2Path Ace> - One or more
ace
blocks as defined below to specify the entries for the ACL for the path. - Group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - Owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
.
- Filesystem
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.
- Path string
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- Resource string
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - Storage
Account 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
[]Data
Lake Gen2Path Ace Args - One or more
ace
blocks as defined below to specify the entries for the ACL for the path. - Group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - Owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
.
- filesystem
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.
- path String
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- resource String
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - storage
Account 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<Data
Lake Gen2Path Ace> - One or more
ace
blocks as defined below to specify the entries for the ACL for the path. - group String
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - owner String
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
.
- filesystem
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.
- path string
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- resource string
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - storage
Account 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
Data
Lake Gen2Path Ace[] - One or more
ace
blocks as defined below to specify the entries for the ACL for the path. - group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
.
- filesystem_
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.
- path str
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- resource str
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - 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[Data
Lake Gen2Path Ace Args] - One or more
ace
blocks as defined below to specify the entries for the ACL for the path. - group str
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - owner str
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
.
- filesystem
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.
- path String
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- resource String
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - storage
Account 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
ace
blocks as defined below to specify the entries for the ACL for the path. - group String
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - owner String
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
.
Outputs
All input properties are implicitly available as output properties. Additionally, the DataLakeGen2Path 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 DataLakeGen2Path Resource
Get an existing DataLakeGen2Path 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?: DataLakeGen2PathState, opts?: CustomResourceOptions): DataLakeGen2Path
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aces: Optional[Sequence[DataLakeGen2PathAceArgs]] = None,
filesystem_name: Optional[str] = None,
group: Optional[str] = None,
owner: Optional[str] = None,
path: Optional[str] = None,
resource: Optional[str] = None,
storage_account_id: Optional[str] = None) -> DataLakeGen2Path
func GetDataLakeGen2Path(ctx *Context, name string, id IDInput, state *DataLakeGen2PathState, opts ...ResourceOption) (*DataLakeGen2Path, error)
public static DataLakeGen2Path Get(string name, Input<string> id, DataLakeGen2PathState? state, CustomResourceOptions? opts = null)
public static DataLakeGen2Path get(String name, Output<String> id, DataLakeGen2PathState 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<Data
Lake Gen2Path Ace> - One or more
ace
blocks as defined below to specify the entries for the ACL for the path. - Filesystem
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.
- Group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - Owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
. - Path string
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- Resource string
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - Storage
Account 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
[]Data
Lake Gen2Path Ace Args - One or more
ace
blocks as defined below to specify the entries for the ACL for the path. - Filesystem
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.
- Group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - Owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
. - Path string
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- Resource string
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - Storage
Account 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<Data
Lake Gen2Path Ace> - One or more
ace
blocks as defined below to specify the entries for the ACL for the path. - filesystem
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.
- group String
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - owner String
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
. - path String
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- resource String
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - storage
Account 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
Data
Lake Gen2Path Ace[] - One or more
ace
blocks as defined below to specify the entries for the ACL for the path. - filesystem
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.
- group string
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - owner string
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
. - path string
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- resource string
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - storage
Account 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[Data
Lake Gen2Path Ace Args] - One or more
ace
blocks as defined below to specify the entries for the ACL for the path. - filesystem_
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.
- group str
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - owner str
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
. - path str
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- resource str
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - 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
ace
blocks as defined below to specify the entries for the ACL for the path. - filesystem
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.
- group String
- Specifies the Object ID of the Azure Active Directory Group to make the owning group. Possible values also include
$superuser
. - owner String
- Specifies the Object ID of the Azure Active Directory User to make the owning user. Possible values also include
$superuser
. - path String
- The path which should be created within the Data Lake Gen2 File System in the Storage Account. Changing this forces a new resource to be created.
- resource String
- Specifies the type for path to create. Currently only
directory
is supported. Changing this forces a new resource to be created. - storage
Account 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
DataLakeGen2PathAce, DataLakeGen2PathAceArgs
- Permissions string
- Type string
- Specifies the type of entry. Can be
user
,group
,mask
orother
. - Id string
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for
user
orgroup
entries. - Scope string
- Specifies whether the ACE represents an
access
entry or adefault
entry. Default value isaccess
.
- Permissions string
- Type string
- Specifies the type of entry. Can be
user
,group
,mask
orother
. - Id string
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for
user
orgroup
entries. - Scope string
- Specifies whether the ACE represents an
access
entry or adefault
entry. Default value isaccess
.
- permissions String
- type String
- Specifies the type of entry. Can be
user
,group
,mask
orother
. - id String
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for
user
orgroup
entries. - scope String
- Specifies whether the ACE represents an
access
entry or adefault
entry. Default value isaccess
.
- permissions string
- type string
- Specifies the type of entry. Can be
user
,group
,mask
orother
. - id string
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for
user
orgroup
entries. - scope string
- Specifies whether the ACE represents an
access
entry or adefault
entry. Default value isaccess
.
- permissions str
- type str
- Specifies the type of entry. Can be
user
,group
,mask
orother
. - id str
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for
user
orgroup
entries. - scope str
- Specifies whether the ACE represents an
access
entry or adefault
entry. Default value isaccess
.
- permissions String
- type String
- Specifies the type of entry. Can be
user
,group
,mask
orother
. - id String
- Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for
user
orgroup
entries. - scope String
- Specifies whether the ACE represents an
access
entry or adefault
entry. Default value isaccess
.
Import
Data Lake Gen2 Paths can be imported using the resource id
, e.g.
$ pulumi import azure:storage/dataLakeGen2Path:DataLakeGen2Path example https://account1.dfs.core.windows.net/fileSystem1/path
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.