Class ZendeskLinkedService
Linked service for Zendesk.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.ZendeskLinkedService/ZendeskLinkedServiceConverter))]
public class ZendeskLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
ZendeskLinkedService(ZendeskAuthenticationType, Object)
Initializes a new instance of ZendeskLinkedService.
Declaration
public ZendeskLinkedService (Azure.Analytics.Synapse.Artifacts.Models.ZendeskAuthenticationType authenticationType, object url);
Parameters
|
ZendeskAuthenticationType
authenticationType
The authentication type to use. |
|
System.Object
url
The url to connect Zendesk source. Type: string (or Expression with resultType string). |
Exceptions
|
System.ArgumentNullException
|
Properties
ApiToken
The api token for the Zendesk source. 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 ApiToken { get; set; }
Property Value
|
SecretBase
|
AuthenticationType
The authentication type to use.
Declaration
public Azure.Analytics.Synapse.Artifacts.Models.ZendeskAuthenticationType AuthenticationType { get; set; }
Property Value
|
ZendeskAuthenticationType
|
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
The password of the Zendesk source. 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
|
Url
The url to connect Zendesk source. Type: string (or Expression with resultType string).
Declaration
public object Url { get; set; }
Property Value
|
System.Object
|
UserName
The username of the Zendesk source. Type: string (or Expression with resultType string).
Declaration
public object UserName { get; set; }
Property Value
|
System.Object
|