Share via


AzureSynapseDataSourceProperties Constructors

Definition

Overloads

AzureSynapseDataSourceProperties()

Initializes a new instance of the AzureSynapseDataSourceProperties class.

AzureSynapseDataSourceProperties(String, String, String, String, String)

Initializes a new instance of the AzureSynapseDataSourceProperties class.

AzureSynapseDataSourceProperties()

Initializes a new instance of the AzureSynapseDataSourceProperties class.

public AzureSynapseDataSourceProperties ();
Public Sub New ()

Applies to

AzureSynapseDataSourceProperties(String, String, String, String, String)

Initializes a new instance of the AzureSynapseDataSourceProperties class.

public AzureSynapseDataSourceProperties (string server = default, string database = default, string table = default, string user = default, string password = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.AzureSynapseDataSourceProperties : string * string * string * string * string -> Microsoft.Azure.Management.StreamAnalytics.Models.AzureSynapseDataSourceProperties
Public Sub New (Optional server As String = Nothing, Optional database As String = Nothing, Optional table As String = Nothing, Optional user As String = Nothing, Optional password 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.

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.

password
String

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

Applies to