Package version:

Interface AzureSqlDatabaseOutputDataSource

Describes an Azure SQL database output data source.

interface AzureSqlDatabaseOutputDataSource {
    authenticationMode?: string;
    database?: string;
    maxBatchCount?: number;
    maxWriterCount?: number;
    password?: string;
    server?: string;
    table?: string;
    type: "Microsoft.Sql/Server/Database";
    user?: string;
}

Hierarchy (view full)

Properties

authenticationMode?: string

Authentication Mode.

database?: string

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

maxBatchCount?: number

Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.

maxWriterCount?: number

Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT 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/Database"

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