import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Data Share Data Lake Gen2 Dataset. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.datashare.getDatasetDataLakeGen2({ * name: "example-dsdlg2ds", * shareId: "example-share-id", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DataShare` - 2019-11-01 */ export declare function getDatasetDataLakeGen2(args: GetDatasetDataLakeGen2Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatasetDataLakeGen2. */ export interface GetDatasetDataLakeGen2Args { /** * The name of this Data Share Data Lake Gen2 Dataset. */ name: string; /** * The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. */ shareId: string; } /** * A collection of values returned by getDatasetDataLakeGen2. */ export interface GetDatasetDataLakeGen2Result { /** * The name of the Data Share Dataset. */ readonly displayName: string; /** * The path of the file in the data lake file system to be shared with the receiver. */ readonly filePath: string; /** * The name of the data lake file system to be shared with the receiver. */ readonly fileSystemName: string; /** * The folder path in the data lake file system to be shared with the receiver. */ readonly folderPath: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly shareId: string; /** * The resource ID of the storage account of the data lake file system to be shared with the receiver. */ readonly storageAccountId: string; } /** * Use this data source to access information about an existing Data Share Data Lake Gen2 Dataset. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.datashare.getDatasetDataLakeGen2({ * name: "example-dsdlg2ds", * shareId: "example-share-id", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DataShare` - 2019-11-01 */ export declare function getDatasetDataLakeGen2Output(args: GetDatasetDataLakeGen2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatasetDataLakeGen2. */ export interface GetDatasetDataLakeGen2OutputArgs { /** * The name of this Data Share Data Lake Gen2 Dataset. */ name: pulumi.Input; /** * The resource ID of the Data Share where this Data Share Data Lake Gen2 Dataset should be created. */ shareId: pulumi.Input; }