import * as pulumi from "@pulumi/pulumi"; /** * Manages a Data Share Data Lake Gen2 Dataset. * * ## Import * * Data Share Data Lake Gen2 Datasets can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:datashare/datasetDataLakeGen2:DatasetDataLakeGen2 example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DataShare/accounts/account1/shares/share1/dataSets/dataSet1 * ``` */ export declare class DatasetDataLakeGen2 extends pulumi.CustomResource { /** * Get an existing DatasetDataLakeGen2 resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DatasetDataLakeGen2State, opts?: pulumi.CustomResourceOptions): DatasetDataLakeGen2; /** * Returns true if the given object is an instance of DatasetDataLakeGen2. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DatasetDataLakeGen2; /** * The name of the Data Share Dataset. */ readonly displayName: pulumi.Output; /** * The path of the file in the data lake file system to be shared with the receiver. Conflicts with `folderPath` Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. */ readonly filePath: pulumi.Output; /** * 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. */ readonly fileSystemName: pulumi.Output; /** * The folder path in the data lake file system to be shared with the receiver. Conflicts with `filePath` Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. */ readonly folderPath: pulumi.Output; /** * 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. */ readonly name: pulumi.Output; /** * 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. */ readonly shareId: pulumi.Output; /** * 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. */ readonly storageAccountId: pulumi.Output; /** * Create a DatasetDataLakeGen2 resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DatasetDataLakeGen2Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DatasetDataLakeGen2 resources. */ export interface DatasetDataLakeGen2State { /** * The name of the Data Share Dataset. */ displayName?: pulumi.Input; /** * The path of the file in the data lake file system to be shared with the receiver. Conflicts with `folderPath` Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. */ filePath?: pulumi.Input; /** * 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. */ fileSystemName?: pulumi.Input; /** * The folder path in the data lake file system to be shared with the receiver. Conflicts with `filePath` Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. */ folderPath?: pulumi.Input; /** * 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. */ name?: pulumi.Input; /** * 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. */ shareId?: pulumi.Input; /** * 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. */ storageAccountId?: pulumi.Input; } /** * The set of arguments for constructing a DatasetDataLakeGen2 resource. */ export interface DatasetDataLakeGen2Args { /** * The path of the file in the data lake file system to be shared with the receiver. Conflicts with `folderPath` Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. */ filePath?: pulumi.Input; /** * 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. */ fileSystemName: pulumi.Input; /** * The folder path in the data lake file system to be shared with the receiver. Conflicts with `filePath` Changing this forces a new Data Share Data Lake Gen2 Dataset to be created. */ folderPath?: pulumi.Input; /** * 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. */ name?: pulumi.Input; /** * 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. */ shareId: pulumi.Input; /** * 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. */ storageAccountId: pulumi.Input; }