@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.44 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 getSqlDWTableDataSet(args: GetSqlDWTableDataSetArgs, opts?: pulumi.InvokeOptions): Promise<GetSqlDWTableDataSetResult>;
export interface GetSqlDWTableDataSetArgs {
/**
* 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;
}
/**
* A SQL DW table data set.
*/
export interface GetSqlDWTableDataSetResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Unique id for identifying a data set resource
*/
readonly dataSetId: string;
/**
* DataWarehouse name of the source data set
*/
readonly dataWarehouseName: string;
/**
* The resource id of the azure resource
*/
readonly id: string;
/**
* Kind of data set.
* Expected value is 'SqlDWTable'.
*/
readonly kind: "SqlDWTable";
/**
* Name of the azure resource
*/
readonly name: string;
/**
* Schema of the table. Default value is dbo.
*/
readonly schemaName: string;
/**
* Resource id of SQL server
*/
readonly sqlServerResourceId: string;
/**
* System Data of the Azure resource.
*/
readonly systemData: outputs.datashare.SystemDataResponse;
/**
* SQL DW table name.
*/
readonly tableName: string;
/**
* 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 getSqlDWTableDataSetOutput(args: GetSqlDWTableDataSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSqlDWTableDataSetResult>;
export interface GetSqlDWTableDataSetOutputArgs {
/**
* 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>;
}