UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

117 lines (116 loc) 3.05 kB
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 getADLSGen2FileDataSetMapping(args: GetADLSGen2FileDataSetMappingArgs, opts?: pulumi.InvokeOptions): Promise<GetADLSGen2FileDataSetMappingResult>; export interface GetADLSGen2FileDataSetMappingArgs { /** * 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 file data set mapping. */ export interface GetADLSGen2FileDataSetMappingResult { /** * 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 path within the file system. */ readonly filePath: string; /** * File system to which the file belongs. */ readonly fileSystem: string; /** * The resource id of the azure resource */ readonly id: string; /** * Kind of data set mapping. * Expected value is 'AdlsGen2File'. */ readonly kind: "AdlsGen2File"; /** * Name of the azure resource */ readonly name: string; /** * Type of output file */ readonly outputType?: 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 getADLSGen2FileDataSetMappingOutput(args: GetADLSGen2FileDataSetMappingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetADLSGen2FileDataSetMappingResult>; export interface GetADLSGen2FileDataSetMappingOutputArgs { /** * 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>; }