@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.43 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 getSqlDBTableDataSet(args: GetSqlDBTableDataSetArgs, opts?: pulumi.InvokeOptions): Promise<GetSqlDBTableDataSetResult>;
export interface GetSqlDBTableDataSetArgs {
/**
* 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 DB table data set.
*/
export interface GetSqlDBTableDataSetResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Unique id for identifying a data set resource
*/
readonly dataSetId: string;
/**
* Database name of the source data set
*/
readonly databaseName: string;
/**
* The resource id of the azure resource
*/
readonly id: string;
/**
* Kind of data set.
* Expected value is 'SqlDBTable'.
*/
readonly kind: "SqlDBTable";
/**
* 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 DB 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 getSqlDBTableDataSetOutput(args: GetSqlDBTableDataSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSqlDBTableDataSetResult>;
export interface GetSqlDBTableDataSetOutputArgs {
/**
* 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>;
}