Class AppFiguresLinkedService
Linked service for AppFigures.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.AppFiguresLinkedService/AppFiguresLinkedServiceConverter))]
public class AppFiguresLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
AppFiguresLinkedService(Object, SecretBase, SecretBase)
Initializes a new instance of AppFiguresLinkedService.
Declaration
public AppFiguresLinkedService (object userName, Azure.Analytics.Synapse.Artifacts.Models.SecretBase password, Azure.Analytics.Synapse.Artifacts.Models.SecretBase clientKey);
Parameters
|
System.Object
userName
The username of the Appfigures source. |
|
SecretBase
password
The password of the AppFigures 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. |
|
SecretBase
clientKey
The client key for the AppFigures 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. |
Exceptions
|
System.ArgumentNullException
|
Properties
ClientKey
The client key for the AppFigures 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 ClientKey { get; set; }
Property Value
|
SecretBase
|
Password
The password of the AppFigures 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
|
UserName
The username of the Appfigures source.
Declaration
public object UserName { get; set; }
Property Value
|
System.Object
|