@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a DataSetMapping in a shareSubscription
*
* Uses Azure REST API version 2021-08-01.
*/
export declare function getADLSGen2FolderDataSetMapping(args: GetADLSGen2FolderDataSetMappingArgs, opts?: pulumi.InvokeOptions): Promise<GetADLSGen2FolderDataSetMappingResult>;
export interface GetADLSGen2FolderDataSetMappingArgs {
/**
* The name of the share account.
*/
accountName: string;
/**
* The name of the dataSetMapping.
*/
dataSetMappingName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
/**
* The name of the shareSubscription.
*/
shareSubscriptionName: string;
}
/**
* An ADLS Gen2 folder data set mapping.
*/
export interface GetADLSGen2FolderDataSetMappingResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The id of the source data set.
*/
readonly dataSetId: string;
/**
* Gets the status of the data set mapping.
*/
readonly dataSetMappingStatus: string;
/**
* File system to which the folder belongs.
*/
readonly fileSystem: string;
/**
* Folder path within the file system.
*/
readonly folderPath: string;
/**
* The resource id of the azure resource
*/
readonly id: string;
/**
* Kind of data set mapping.
* Expected value is 'AdlsGen2Folder'.
*/
readonly kind: "AdlsGen2Folder";
/**
* Name of the azure resource
*/
readonly name: string;
/**
* Provisioning state of the data set mapping.
*/
readonly provisioningState: string;
/**
* Resource group of storage account.
*/
readonly resourceGroup: string;
/**
* Storage account name of the source data set.
*/
readonly storageAccountName: string;
/**
* Subscription id of storage 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 DataSetMapping in a shareSubscription
*
* Uses Azure REST API version 2021-08-01.
*/
export declare function getADLSGen2FolderDataSetMappingOutput(args: GetADLSGen2FolderDataSetMappingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetADLSGen2FolderDataSetMappingResult>;
export interface GetADLSGen2FolderDataSetMappingOutputArgs {
/**
* The name of the share account.
*/
accountName: pulumi.Input<string>;
/**
* The name of the dataSetMapping.
*/
dataSetMappingName: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the shareSubscription.
*/
shareSubscriptionName: pulumi.Input<string>;
}