Class SalesforceLinkedService
Linked service for Salesforce.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.SalesforceLinkedService/SalesforceLinkedServiceConverter))]
public class SalesforceLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
SalesforceLinkedService()
Initializes a new instance of SalesforceLinkedService.
Declaration
public SalesforceLinkedService ();
Properties
ApiVersion
The Salesforce API version used in ADF. Type: string (or Expression with resultType string).
Declaration
public object ApiVersion { 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
|
EnvironmentUrl
The URL of Salesforce instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Declaration
public object EnvironmentUrl { get; set; }
Property Value
|
System.Object
|
Password
The password for Basic authentication of the Salesforce instance. 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
|
SecurityToken
The security token is optional to remotely access Salesforce instance. 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 SecurityToken { get; set; }
Property Value
|
SecretBase
|
Username
The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string).
Declaration
public object Username { get; set; }
Property Value
|
System.Object
|