We recommend using Azure Native.
azure.datashare.DatasetDataLakeGen2
Explore with Pulumi AI
Manages a Data Share Data Lake Gen2 Dataset.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
import * as azuread from "@pulumi/azuread";
const exampleResourceGroup = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleAccount = new azure.datashare.Account("example", {
name: "example-dsa",
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
identity: {
type: "SystemAssigned",
},
});
const exampleShare = new azure.datashare.Share("example", {
name: "example_ds",
accountId: exampleAccount.id,
kind: "CopyBased",
});
const exampleAccount2 = new azure.storage.Account("example", {
name: "examplestr",
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
accountKind: "BlobStorage",
accountTier: "Standard",
accountReplicationType: "LRS",
});
const exampleDataLakeGen2Filesystem = new azure.storage.DataLakeGen2Filesystem("example", {
name: "example-dlg2fs",
storageAccountId: exampleAccount2.id,
});
const example = azuread.getServicePrincipalOutput({
displayName: exampleAccount.name,
});
const exampleAssignment = new azure.authorization.Assignment("example", {
scope: exampleAccount2.id,
roleDefinitionName: "Storage Blob Data Reader",
principalId: example.apply(example => example.objectId),
});
const exampleDatasetDataLakeGen2 = new azure.datashare.DatasetDataLakeGen2("example", {
name: "accexample-dlg2ds",
shareId: exampleShare.id,
storageAccountId: exampleAccount2.id,
fileSystemName: exampleDataLakeGen2Filesystem.name,
filePath: "myfile.txt",
}, {
dependsOn: [exampleAssignment],
});
import pulumi
import pulumi_azure as azure
import pulumi_azuread as azuread
example_resource_group = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_account = azure.datashare.Account("example",
name="example-dsa",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
identity=azure.datashare.AccountIdentityArgs(
type="SystemAssigned",
))
example_share = azure.datashare.Share("example",
name="example_ds",
account_id=example_account.id,
kind="CopyBased")
example_account2 = azure.storage.Account("example",
name="examplestr",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
account_kind="BlobStorage",
account_tier="Standard",
account_replication_type="LRS")
example_data_lake_gen2_filesystem = azure.storage.DataLakeGen2Filesystem("example",
name="example-dlg2fs",
storage_account_id=example_account2.id)
example = azuread.get_service_principal_output(display_name=example_account.name)
example_assignment = azure.authorization.Assignment("example",
scope=example_account2.id,
role_definition_name="Storage Blob Data Reader",
principal_id=example.object_id)
example_dataset_data_lake_gen2 = azure.datashare.DatasetDataLakeGen2("example",
name="accexample-dlg2ds",
share_id=example_share.id,
storage_account_id=example_account2.id,
file_system_name=example_data_lake_gen2_filesystem.name,
file_path="myfile.txt",
opts=pulumi.ResourceOptions(depends_on=[example_assignment]))
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/authorization"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/datashare"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
"github.com/pulumi/pulumi-azuread/sdk/v5/go/azuread"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleAccount, err := datashare.NewAccount(ctx, "example", &datashare.AccountArgs{
Name: pulumi.String("example-dsa"),
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
Identity: &datashare.AccountIdentityArgs{
Type: pulumi.String("SystemAssigned"),
},
})
if err != nil {
return err
}
exampleShare, err := datashare.NewShare(ctx, "example", &datashare.ShareArgs{
Name: pulumi.String("example_ds"),
AccountId: exampleAccount.ID(),
Kind: pulumi.String("CopyBased"),
})
if err != nil {
return err
}
exampleAccount2, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
Name: pulumi.String("examplestr"),
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
AccountKind: pulumi.String("BlobStorage"),
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("LRS"),
})
if err != nil {
return err
}
exampleDataLakeGen2Filesystem, err := storage.NewDataLakeGen2Filesystem(ctx, "example", &storage.DataLakeGen2FilesystemArgs{
Name: pulumi.String("example-dlg2fs"),
StorageAccountId: exampleAccount2.ID(),
})
if err != nil {
return err
}
example := azuread.LookupServicePrincipalOutput(ctx, azuread.GetServicePrincipalOutputArgs{
DisplayName: exampleAccount.Name,
}, nil)
exampleAssignment, err := authorization.NewAssignment(ctx, "example", &authorization.AssignmentArgs{
Scope: exampleAccount2.ID(),
RoleDefinitionName: pulumi.String("Storage Blob Data Reader"),
PrincipalId: example.ApplyT(func(example azuread.GetServicePrincipalResult) (*string, error) {
return &example.ObjectId, nil
}).(pulumi.StringPtrOutput),
})
if err != nil {
return err
}
_, err = datashare.NewDatasetDataLakeGen2(ctx, "example", &datashare.DatasetDataLakeGen2Args{
Name: pulumi.String("accexample-dlg2ds"),
ShareId: exampleShare.ID(),
StorageAccountId: exampleAccount2.ID(),
FileSystemName: exampleDataLakeGen2Filesystem.Name,
FilePath: pulumi.String("myfile.txt"),
}, pulumi.DependsOn([]pulumi.Resource{
exampleAssignment,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
using AzureAD = Pulumi.AzureAD;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleAccount = new Azure.DataShare.Account("example", new()
{
Name = "example-dsa",
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
Identity = new Azure.DataShare.Inputs.AccountIdentityArgs
{
Type = "SystemAssigned",
},
});
var exampleShare = new Azure.DataShare.Share("example", new()
{
Name = "example_ds",
AccountId = exampleAccount.Id,
Kind = "CopyBased",
});
var exampleAccount2 = new Azure.Storage.Account("example", new()
{
Name = "examplestr",
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AccountKind = "BlobStorage",
AccountTier = "Standard",
AccountReplicationType = "LRS",
});
var exampleDataLakeGen2Filesystem = new Azure.Storage.DataLakeGen2Filesystem("example", new()
{
Name = "example-dlg2fs",
StorageAccountId = exampleAccount2.Id,
});
var example = AzureAD.GetServicePrincipal.Invoke(new()
{
DisplayName = exampleAccount.Name,
});
var exampleAssignment = new Azure.Authorization.Assignment("example", new()
{
Scope = exampleAccount2.Id,
RoleDefinitionName = "Storage Blob Data Reader",
PrincipalId = example.Apply(getServicePrincipalResult => getServicePrincipalResult.ObjectId),
});
var exampleDatasetDataLakeGen2 = new Azure.DataShare.DatasetDataLakeGen2("example", new()
{
Name = "accexample-dlg2ds",
ShareId = exampleShare.Id,
StorageAccountId = exampleAccount2.Id,
FileSystemName = exampleDataLakeGen2Filesystem.Name,
FilePath = "myfile.txt",
}, new CustomResourceOptions
{
DependsOn =
{
exampleAssignment,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.datashare.Account;
import com.pulumi.azure.datashare.AccountArgs;
import com.pulumi.azure.datashare.inputs.AccountIdentityArgs;
import com.pulumi.azure.datashare.Share;
import com.pulumi.azure.datashare.ShareArgs;
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.azuread.AzureadFunctions;
import com.pulumi.azuread.inputs.GetServicePrincipalArgs;
import com.pulumi.azure.authorization.Assignment;
import com.pulumi.azure.authorization.AssignmentArgs;
import com.pulumi.azure.datashare.DatasetDataLakeGen2;
import com.pulumi.azure.datashare.DatasetDataLakeGen2Args;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.name("example-dsa")
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.identity(AccountIdentityArgs.builder()
.type("SystemAssigned")
.build())
.build());
var exampleShare = new Share("exampleShare", ShareArgs.builder()
.name("example_ds")
.accountId(exampleAccount.id())
.kind("CopyBased")
.build());
var exampleAccount2 = new Account("exampleAccount2", AccountArgs.builder()
.name("examplestr")
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.accountKind("BlobStorage")
.accountTier("Standard")
.accountReplicationType("LRS")
.build());
var exampleDataLakeGen2Filesystem = new DataLakeGen2Filesystem("exampleDataLakeGen2Filesystem", DataLakeGen2FilesystemArgs.builder()
.name("example-dlg2fs")
.storageAccountId(exampleAccount2.id())
.build());
final var example = AzureadFunctions.getServicePrincipal(GetServicePrincipalArgs.builder()
.displayName(exampleAccount.name())
.build());
var exampleAssignment = new Assignment("exampleAssignment", AssignmentArgs.builder()
.scope(exampleAccount2.id())
.roleDefinitionName("Storage Blob Data Reader")
.principalId(example.applyValue(getServicePrincipalResult -> getServicePrincipalResult).applyValue(example -> example.applyValue(getServicePrincipalResult -> getServicePrincipalResult.objectId())))
.build());
var exampleDatasetDataLakeGen2 = new DatasetDataLakeGen2("exampleDatasetDataLakeGen2", DatasetDataLakeGen2Args.builder()
.name("accexample-dlg2ds")
.shareId(exampleShare.id())
.storageAccountId(exampleAccount2.id())
.fileSystemName(exampleDataLakeGen2Filesystem.name())
.filePath("myfile.txt")
.build(), CustomResourceOptions.builder()
.dependsOn(exampleAssignment)
.build());
}
}
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
name: example
properties:
name: example-resources
location: West Europe
exampleAccount:
type: azure:datashare:Account
name: example
properties:
name: example-dsa
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
identity:
type: SystemAssigned
exampleShare:
type: azure:datashare:Share
name: example
properties:
name: example_ds
accountId: ${exampleAccount.id}
kind: CopyBased
exampleAccount2:
type: azure:storage:Account
name: example
properties:
name: examplestr
resourceGroupName: ${exampleResourceGroup.name}
location: ${exampleResourceGroup.location}
accountKind: BlobStorage
accountTier: Standard
accountReplicationType: LRS
exampleDataLakeGen2Filesystem:
type: azure:storage:DataLakeGen2Filesystem
name: example
properties:
name: example-dlg2fs
storageAccountId: ${exampleAccount2.id}
exampleAssignment:
type: azure:authorization:Assignment
name: example
properties:
scope: ${exampleAccount2.id}
roleDefinitionName: Storage Blob Data Reader
principalId: ${example.objectId}
exampleDatasetDataLakeGen2:
type: azure:datashare:DatasetDataLakeGen2
name: example
properties:
name: accexample-dlg2ds
shareId: ${exampleShare.id}
storageAccountId: ${exampleAccount2.id}
fileSystemName: ${exampleDataLakeGen2Filesystem.name}
filePath: myfile.txt
options:
dependson:
- ${exampleAssignment}
variables:
example:
fn::invoke:
Function: azuread:getServicePrincipal
Arguments:
displayName: ${exampleAccount.name}
Create DatasetDataLakeGen2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DatasetDataLakeGen2(name: string, args: DatasetDataLakeGen2Args, opts?: CustomResourceOptions);
@overload
def DatasetDataLakeGen2(resource_name: str,
args: DatasetDataLakeGen2Args,
opts: Optional[ResourceOptions] = None)
@overload
def DatasetDataLakeGen2(resource_name: str,
opts: Optional[ResourceOptions] = None,
file_system_name: Optional[str] = None,
share_id: Optional[str] = None,
storage_account_id: Optional[str] = None,
file_path: Optional[str] = None,
folder_path: Optional[str] = None,
name: Optional[str] = None)
func NewDatasetDataLakeGen2(ctx *Context, name string, args DatasetDataLakeGen2Args, opts ...ResourceOption) (*DatasetDataLakeGen2, error)
public DatasetDataLakeGen2(string name, DatasetDataLakeGen2Args args, CustomResourceOptions? opts = null)
public DatasetDataLakeGen2(String name, DatasetDataLakeGen2Args args)
public DatasetDataLakeGen2(String name, DatasetDataLakeGen2Args args, CustomResourceOptions options)
type: azure:datashare:DatasetDataLakeGen2
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 DatasetDataLakeGen2Args
- 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 DatasetDataLakeGen2Args
- 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 DatasetDataLakeGen2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DatasetDataLakeGen2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DatasetDataLakeGen2Args
- 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 datasetDataLakeGen2Resource = new Azure.DataShare.DatasetDataLakeGen2("datasetDataLakeGen2Resource", new()
{
FileSystemName = "string",
ShareId = "string",
StorageAccountId = "string",
FilePath = "string",
FolderPath = "string",
Name = "string",
});
example, err := datashare.NewDatasetDataLakeGen2(ctx, "datasetDataLakeGen2Resource", &datashare.DatasetDataLakeGen2Args{
FileSystemName: pulumi.String("string"),
ShareId: pulumi.String("string"),
StorageAccountId: pulumi.String("string"),
FilePath: pulumi.String("string"),
FolderPath: pulumi.String("string"),
Name: pulumi.String("string"),
})
var datasetDataLakeGen2Resource = new DatasetDataLakeGen2("datasetDataLakeGen2Resource", DatasetDataLakeGen2Args.builder()
.fileSystemName("string")
.shareId("string")
.storageAccountId("string")
.filePath("string")
.folderPath("string")
.name("string")
.build());
dataset_data_lake_gen2_resource = azure.datashare.DatasetDataLakeGen2("datasetDataLakeGen2Resource",
file_system_name="string",
share_id="string",
storage_account_id="string",
file_path="string",
folder_path="string",
name="string")
const datasetDataLakeGen2Resource = new azure.datashare.DatasetDataLakeGen2("datasetDataLakeGen2Resource", {
fileSystemName: "string",
shareId: "string",
storageAccountId: "string",
filePath: "string",
folderPath: "string",
name: "string",
});
type: azure:datashare:DatasetDataLakeGen2
properties:
filePath: string
fileSystemName: string
folderPath: string
name: string
shareId: string
storageAccountId: string
DatasetDataLakeGen2 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 DatasetDataLakeGen2 resource accepts the following input properties:
- File
System stringName - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- string
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- Storage
Account stringId - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- File
Path string - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - Folder
Path string - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - Name string
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- File
System stringName - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- string
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- Storage
Account stringId - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- File
Path string - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - Folder
Path string - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - Name string
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- file
System StringName - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- String
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- storage
Account StringId - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- file
Path String - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - folder
Path String - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - name String
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- file
System stringName - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- string
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- storage
Account stringId - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- file
Path string - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - folder
Path string - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - name string
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- file_
system_ strname - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- str
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- storage_
account_ strid - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- file_
path str - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - folder_
path str - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - name str
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- file
System StringName - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- String
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- storage
Account StringId - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- file
Path String - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - folder
Path String - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - name String
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the DatasetDataLakeGen2 resource produces the following output properties:
- Display
Name string - The name of the Data Share Dataset.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - The name of the Data Share Dataset.
- Id string
- The provider-assigned unique ID for this managed resource.
- display
Name String - The name of the Data Share Dataset.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name string - The name of the Data Share Dataset.
- id string
- The provider-assigned unique ID for this managed resource.
- display_
name str - The name of the Data Share Dataset.
- id str
- The provider-assigned unique ID for this managed resource.
- display
Name String - The name of the Data Share Dataset.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing DatasetDataLakeGen2 Resource
Get an existing DatasetDataLakeGen2 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?: DatasetDataLakeGen2State, opts?: CustomResourceOptions): DatasetDataLakeGen2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
file_path: Optional[str] = None,
file_system_name: Optional[str] = None,
folder_path: Optional[str] = None,
name: Optional[str] = None,
share_id: Optional[str] = None,
storage_account_id: Optional[str] = None) -> DatasetDataLakeGen2
func GetDatasetDataLakeGen2(ctx *Context, name string, id IDInput, state *DatasetDataLakeGen2State, opts ...ResourceOption) (*DatasetDataLakeGen2, error)
public static DatasetDataLakeGen2 Get(string name, Input<string> id, DatasetDataLakeGen2State? state, CustomResourceOptions? opts = null)
public static DatasetDataLakeGen2 get(String name, Output<String> id, DatasetDataLakeGen2State 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.
- Display
Name string - The name of the Data Share Dataset.
- File
Path string - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - File
System stringName - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- Folder
Path string - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - Name string
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- string
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- Storage
Account stringId - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- Display
Name string - The name of the Data Share Dataset.
- File
Path string - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - File
System stringName - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- Folder
Path string - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - Name string
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- string
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- Storage
Account stringId - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- display
Name String - The name of the Data Share Dataset.
- file
Path String - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - file
System StringName - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- folder
Path String - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - name String
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- String
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- storage
Account StringId - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- display
Name string - The name of the Data Share Dataset.
- file
Path string - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - file
System stringName - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- folder
Path string - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - name string
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- string
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- storage
Account stringId - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- display_
name str - The name of the Data Share Dataset.
- file_
path str - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - file_
system_ strname - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- folder_
path str - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - name str
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- str
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- storage_
account_ strid - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- display
Name String - The name of the Data Share Dataset.
- file
Path String - The path of the file in the data lake file system to be shared with the receiver. Conflicts with
folder_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - file
System StringName - The name of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- folder
Path String - The folder path in the data lake file system to be shared with the receiver. Conflicts with
file_path
Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. - name String
- The name which should be used for this Data Share Data Lake Gen2 Dataset. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- String
- The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
- storage
Account StringId - The resource id of the storage account of the data lake file system to be shared with the receiver. Changing this forces a new Data Share Data Lake Gen2 Dataset to be created.
Import
Data Share Data Lake Gen2 Datasets can be imported using the resource id
, e.g.
$ pulumi import azure:datashare/datasetDataLakeGen2:DatasetDataLakeGen2 example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DataShare/accounts/account1/shares/share1/dataSets/dataSet1
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.