Class SalesforceV2LinkedService
Linked service for Salesforce V2.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.SalesforceV2LinkedService/SalesforceV2LinkedServiceConverter))]
public class SalesforceV2LinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
SalesforceV2LinkedService()
Initializes a new instance of SalesforceV2LinkedService.
Declaration
public SalesforceV2LinkedService ();
Properties
ApiVersion
The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string).
Declaration
public object ApiVersion { get; set; }
Property Value
|
System.Object
|
AuthenticationType
The authentication type to be used to connect to the Salesforce. Currently, we only support OAuth2ClientCredentials, it is also the default value.
Declaration
public object AuthenticationType { get; set; }
Property Value
|
System.Object
|
ClientId
The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string).
Declaration
public object ClientId { get; set; }
Property Value
|
System.Object
|
ClientSecret
The client secret for OAuth 2.0 Client Credentials Flow 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 ClientSecret { get; set; }
Property Value
|
SecretBase
|
EncryptedCredential
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
Declaration
public string EncryptedCredential { get; set; }
Property Value
|
System.String
|
EnvironmentUrl
The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string).
Declaration
public object EnvironmentUrl { get; set; }
Property Value
|
System.Object
|