Class SybaseLinkedService
Linked service for Sybase data source.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.SybaseLinkedService/SybaseLinkedServiceConverter))]
public class SybaseLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
SybaseLinkedService(Object, Object)
Initializes a new instance of SybaseLinkedService.
Declaration
public SybaseLinkedService (object server, object database);
Parameters
|
System.Object
server
Server name for connection. Type: string (or Expression with resultType string). |
|
System.Object
database
Database name for connection. Type: string (or Expression with resultType string). |
Exceptions
|
System.ArgumentNullException
|
Properties
AuthenticationType
AuthenticationType to be used for connection.
Declaration
public Nullable<Azure.Analytics.Synapse.Artifacts.Models.SybaseAuthenticationType> AuthenticationType { get; set; }
Property Value
|
System.Nullable<SybaseAuthenticationType>
|
Database
Database name for connection. Type: string (or Expression with resultType string).
Declaration
public object Database { get; set; }
Property Value
|
System.Object
|
EncryptedCredential
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
Declaration
public object EncryptedCredential { get; set; }
Property Value
|
System.Object
|
Password
Password for authentication. Please note SecretBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AzureKeyVaultSecretReference and SecureString.
Declaration
public Azure.Analytics.Synapse.Artifacts.Models.SecretBase Password { get; set; }
Property Value
|
SecretBase
|
Schema
Schema name for connection. Type: string (or Expression with resultType string).
Declaration
public object Schema { get; set; }
Property Value
|
System.Object
|
Server
Server name for connection. Type: string (or Expression with resultType string).
Declaration
public object Server { get; set; }
Property Value
|
System.Object
|
Username
Username for authentication. Type: string (or Expression with resultType string).
Declaration
public object Username { get; set; }
Property Value
|
System.Object
|