@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.49 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a DataSet in a share
*
* Uses Azure REST API version 2021-08-01.
*/
export declare function getADLSGen1FolderDataSet(args: GetADLSGen1FolderDataSetArgs, opts?: pulumi.InvokeOptions): Promise<GetADLSGen1FolderDataSetResult>;
export interface GetADLSGen1FolderDataSetArgs {
/**
* The name of the share account.
*/
accountName: string;
/**
* The name of the dataSet.
*/
dataSetName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
/**
* The name of the share.
*/
shareName: string;
}
/**
* An ADLS Gen 1 folder data set.
*/
export interface GetADLSGen1FolderDataSetResult {
/**
* The ADLS account name.
*/
readonly accountName: string;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Unique id for identifying a data set resource
*/
readonly dataSetId: string;
/**
* The folder path within the ADLS account.
*/
readonly folderPath: string;
/**
* The resource id of the azure resource
*/
readonly id: string;
/**
* Kind of data set.
* Expected value is 'AdlsGen1Folder'.
*/
readonly kind: "AdlsGen1Folder";
/**
* Name of the azure resource
*/
readonly name: string;
/**
* Resource group of ADLS account.
*/
readonly resourceGroup: string;
/**
* Subscription id of ADLS account.
*/
readonly subscriptionId: string;
/**
* System Data of the Azure resource.
*/
readonly systemData: outputs.datashare.SystemDataResponse;
/**
* Type of the azure resource
*/
readonly type: string;
}
/**
* Get a DataSet in a share
*
* Uses Azure REST API version 2021-08-01.
*/
export declare function getADLSGen1FolderDataSetOutput(args: GetADLSGen1FolderDataSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetADLSGen1FolderDataSetResult>;
export interface GetADLSGen1FolderDataSetOutputArgs {
/**
* The name of the share account.
*/
accountName: pulumi.Input<string>;
/**
* The name of the dataSet.
*/
dataSetName: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the share.
*/
shareName: pulumi.Input<string>;
}