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

109 lines (108 loc) 2.84 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get a DataSetMapping in a shareSubscription * * Uses Azure REST API version 2021-08-01. */ export declare function getSqlDWTableDataSetMapping(args: GetSqlDWTableDataSetMappingArgs, opts?: pulumi.InvokeOptions): Promise<GetSqlDWTableDataSetMappingResult>; export interface GetSqlDWTableDataSetMappingArgs { /** * The name of the share account. */ accountName: string; /** * The name of the dataSetMapping. */ dataSetMappingName: string; /** * The resource group name. */ resourceGroupName: string; /** * The name of the shareSubscription. */ shareSubscriptionName: string; } /** * A SQL DW Table data set mapping. */ export interface GetSqlDWTableDataSetMappingResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The id of the source data set. */ readonly dataSetId: string; /** * Gets the status of the data set mapping. */ readonly dataSetMappingStatus: 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 mapping. * Expected value is 'SqlDWTable'. */ readonly kind: "SqlDWTable"; /** * Name of the azure resource */ readonly name: string; /** * Provisioning state of the data set mapping. */ readonly provisioningState: 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 DataSetMapping in a shareSubscription * * Uses Azure REST API version 2021-08-01. */ export declare function getSqlDWTableDataSetMappingOutput(args: GetSqlDWTableDataSetMappingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSqlDWTableDataSetMappingResult>; export interface GetSqlDWTableDataSetMappingOutputArgs { /** * The name of the share account. */ accountName: pulumi.Input<string>; /** * The name of the dataSetMapping. */ dataSetMappingName: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; /** * The name of the shareSubscription. */ shareSubscriptionName: pulumi.Input<string>; }