@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.82 kB
TypeScript
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 getSynapseWorkspaceSqlPoolTableDataSetMapping(args: GetSynapseWorkspaceSqlPoolTableDataSetMappingArgs, opts?: pulumi.InvokeOptions): Promise<GetSynapseWorkspaceSqlPoolTableDataSetMappingResult>;
export interface GetSynapseWorkspaceSqlPoolTableDataSetMappingArgs {
/**
* 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 Synapse Workspace Sql Pool Table data set mapping
*/
export interface GetSynapseWorkspaceSqlPoolTableDataSetMappingResult {
/**
* 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;
/**
* The resource id of the azure resource
*/
readonly id: string;
/**
* Kind of data set mapping.
* Expected value is 'SynapseWorkspaceSqlPoolTable'.
*/
readonly kind: "SynapseWorkspaceSqlPoolTable";
/**
* Name of the azure resource
*/
readonly name: string;
/**
* Provisioning state of the data set mapping.
*/
readonly provisioningState: string;
/**
* Resource id of the Synapse Workspace SQL Pool Table
*/
readonly synapseWorkspaceSqlPoolTableResourceId: string;
/**
* System Data of the Azure resource.
*/
readonly systemData: outputs.datashare.SystemDataResponse;
/**
* 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 getSynapseWorkspaceSqlPoolTableDataSetMappingOutput(args: GetSynapseWorkspaceSqlPoolTableDataSetMappingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSynapseWorkspaceSqlPoolTableDataSetMappingResult>;
export interface GetSynapseWorkspaceSqlPoolTableDataSetMappingOutputArgs {
/**
* 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>;
}