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

105 lines (104 loc) 2.61 kB
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 getADLSGen2FolderDataSet(args: GetADLSGen2FolderDataSetArgs, opts?: pulumi.InvokeOptions): Promise<GetADLSGen2FolderDataSetResult>; export interface GetADLSGen2FolderDataSetArgs { /** * 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 2 folder data set. */ export interface GetADLSGen2FolderDataSetResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Unique id for identifying a data set resource */ readonly dataSetId: 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. * Expected value is 'AdlsGen2Folder'. */ readonly kind: "AdlsGen2Folder"; /** * Name of the azure resource */ readonly name: 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 DataSet in a share * * Uses Azure REST API version 2021-08-01. */ export declare function getADLSGen2FolderDataSetOutput(args: GetADLSGen2FolderDataSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetADLSGen2FolderDataSetResult>; export interface GetADLSGen2FolderDataSetOutputArgs { /** * 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>; }