Package version:

Interface PostgreSQLDataSourceProperties

The properties that are associated with an Azure SQL database data source.

interface PostgreSQLDataSourceProperties {
    authenticationMode?: string;
    database?: string;
    maxWriterCount?: number;
    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.

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.

user?: string

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

Generated using TypeDoc