Share via


AzureSynapseOutputDataSource Constructors

Definition

Overloads

AzureSynapseOutputDataSource()

Initializes a new instance of the AzureSynapseOutputDataSource class.

AzureSynapseOutputDataSource(String, String, String, String, String)

Initializes a new instance of the AzureSynapseOutputDataSource class.

AzureSynapseOutputDataSource()

Initializes a new instance of the AzureSynapseOutputDataSource class.

public AzureSynapseOutputDataSource ();
Public Sub New ()

Applies to

AzureSynapseOutputDataSource(String, String, String, String, String)

Initializes a new instance of the AzureSynapseOutputDataSource class.

public AzureSynapseOutputDataSource (string server = default, string database = default, string table = default, string user = default, string password = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.AzureSynapseOutputDataSource : string * string * string * string * string -> Microsoft.Azure.Management.StreamAnalytics.Models.AzureSynapseOutputDataSource
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