@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.55 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 getBlobFolderDataSet(args: GetBlobFolderDataSetArgs, opts?: pulumi.InvokeOptions): Promise<GetBlobFolderDataSetResult>;
export interface GetBlobFolderDataSetArgs {
/**
* 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 Azure storage blob folder data set.
*/
export interface GetBlobFolderDataSetResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Container that has the file path.
*/
readonly containerName: string;
/**
* Unique id for identifying a data set resource
*/
readonly dataSetId: string;
/**
* The resource id of the azure resource
*/
readonly id: string;
/**
* Kind of data set.
* Expected value is 'BlobFolder'.
*/
readonly kind: "BlobFolder";
/**
* Name of the azure resource
*/
readonly name: string;
/**
* Prefix for blob folder
*/
readonly prefix: 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 getBlobFolderDataSetOutput(args: GetBlobFolderDataSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBlobFolderDataSetResult>;
export interface GetBlobFolderDataSetOutputArgs {
/**
* 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>;
}