Class CassandraLinkedService
Linked service for Cassandra 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.CassandraLinkedService/CassandraLinkedServiceConverter))]
public class CassandraLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
CassandraLinkedService(Object)
Initializes a new instance of CassandraLinkedService.
Declaration
public CassandraLinkedService (object host);
Parameters
|
System.Object
host
Host name for connection. Type: string (or Expression with resultType string). |
Exceptions
|
System.ArgumentNullException
|
Properties
AuthenticationType
AuthenticationType to be used for connection. Type: string (or Expression with resultType string).
Declaration
public object AuthenticationType { 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
|
Host
Host name for connection. Type: string (or Expression with resultType string).
Declaration
public object Host { 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
|
Port
The port for the connection. Type: integer (or Expression with resultType integer).
Declaration
public object Port { 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
|