@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 getBlobContainerDataSet(args: GetBlobContainerDataSetArgs, opts?: pulumi.InvokeOptions): Promise<GetBlobContainerDataSetResult>;
export interface GetBlobContainerDataSetArgs {
/**
* 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 container data set.
*/
export interface GetBlobContainerDataSetResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* BLOB Container name.
*/
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 'Container'.
*/
readonly kind: "Container";
/**
* 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 getBlobContainerDataSetOutput(args: GetBlobContainerDataSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBlobContainerDataSetResult>;
export interface GetBlobContainerDataSetOutputArgs {
/**
* 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>;
}