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