Package version:

Interface AzureSynapseOutputDataSource

Describes an Azure Synapse output data source.

interface AzureSynapseOutputDataSource {
    authenticationMode?: string;
    database?: string;
    password?: string;
    server?: string;
    table?: string;
    type: "Microsoft.Sql/Server/DataWarehouse";
    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.

type: "Microsoft.Sql/Server/DataWarehouse"

Polymorphic discriminator, which specifies the different types this object can be

user?: string

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

Generated using TypeDoc