AzureSqlDatabaseDataSourceProperties Constructors

Definition

Overloads

AzureSqlDatabaseDataSourceProperties()

Initializes a new instance of the AzureSqlDatabaseDataSourceProperties class.

AzureSqlDatabaseDataSourceProperties(String, String, String, String, String, Nullable<Double>, Nullable<Double>, String)

Initializes a new instance of the AzureSqlDatabaseDataSourceProperties class.

AzureSqlDatabaseDataSourceProperties()

Initializes a new instance of the AzureSqlDatabaseDataSourceProperties class.

public AzureSqlDatabaseDataSourceProperties ();
Public Sub New ()

Applies to

AzureSqlDatabaseDataSourceProperties(String, String, String, String, String, Nullable<Double>, Nullable<Double>, String)

Initializes a new instance of the AzureSqlDatabaseDataSourceProperties class.

public AzureSqlDatabaseDataSourceProperties (string server = default, string database = default, string user = default, string password = default, string table = default, double? maxBatchCount = default, double? maxWriterCount = default, string authenticationMode = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.AzureSqlDatabaseDataSourceProperties : string * string * string * string * string * Nullable<double> * Nullable<double> * string -> Microsoft.Azure.Management.StreamAnalytics.Models.AzureSqlDatabaseDataSourceProperties
Public Sub New (Optional server As String = Nothing, Optional database As String = Nothing, Optional user As String = Nothing, Optional password As String = Nothing, Optional table As String = Nothing, Optional maxBatchCount As Nullable(Of Double) = Nothing, Optional maxWriterCount As Nullable(Of Double) = Nothing, Optional authenticationMode As String = Nothing)

Parameters

server
String

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

database
String

The name of 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.

password
String

The password that will be used to connect to 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.

maxBatchCount
Nullable<Double>

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

maxWriterCount
Nullable<Double>

Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.

authenticationMode
String

Authentication Mode. Possible values include: 'Msi', 'UserToken', 'ConnectionString'

Applies to