Package version:

Interface AzureSynapseOutputDataSourceProperties

The properties that are associated with an Azure Synapse output.

interface AzureSynapseOutputDataSourceProperties {
    authenticationMode?: string;
    database?: string;
    password?: string;
    server?: string;
    table?: string;
    user?: string;
}

Hierarchy (view full)

Properties

authenticationMode?: string

Authentication Mode.

database?: string

The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.

password?: string

The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.

server?: string

The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.

table?: string

The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.

user?: string

The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.

Generated using TypeDoc