Show / Hide Table of Contents

Class QuickBooksLinkedService

QuickBooks server linked service.

Inheritance
System.Object
LinkedService
QuickBooksLinkedService
Inherited Members
LinkedService.AdditionalProperties
LinkedService.Annotations
LinkedService.ConnectVia
LinkedService.Description
LinkedService.Parameters
LinkedService.Version
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.QuickBooksLinkedService/QuickBooksLinkedServiceConverter))]
public class QuickBooksLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService

Constructors

QuickBooksLinkedService(Object, Object, Object, SecretBase, SecretBase, SecretBase)

Initializes a new instance of QuickBooksLinkedService.

Declaration
public QuickBooksLinkedService (object endpoint, object companyId, object consumerKey, Azure.Analytics.Synapse.Artifacts.Models.SecretBase consumerSecret, Azure.Analytics.Synapse.Artifacts.Models.SecretBase accessToken, Azure.Analytics.Synapse.Artifacts.Models.SecretBase accessTokenSecret);
Parameters
System.Object endpoint

The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com).

System.Object companyId

The company ID of the QuickBooks company to authorize.

System.Object consumerKey

The consumer key for OAuth 1.0 authentication.

SecretBase consumerSecret

The consumer secret for OAuth 1.0 authentication. 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 accessToken

The access token for OAuth 1.0 authentication. 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 accessTokenSecret

The access token secret for OAuth 1.0 authentication. 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

endpoint, companyId, consumerKey, consumerSecret, accessToken or accessTokenSecret is null.

Properties

AccessToken

The access token for OAuth 1.0 authentication. 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 AccessToken { get; set; }
Property Value
SecretBase

AccessTokenSecret

The access token secret for OAuth 1.0 authentication. 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 AccessTokenSecret { get; set; }
Property Value
SecretBase

CompanyId

The company ID of the QuickBooks company to authorize.

Declaration
public object CompanyId { get; set; }
Property Value
System.Object

ConnectionProperties

Properties used to connect to QuickBooks. It is mutually exclusive with any other properties in the linked service. Type: object.

Declaration
public object ConnectionProperties { get; set; }
Property Value
System.Object

ConsumerKey

The consumer key for OAuth 1.0 authentication.

Declaration
public object ConsumerKey { get; set; }
Property Value
System.Object

ConsumerSecret

The consumer secret for OAuth 1.0 authentication. 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 ConsumerSecret { get; set; }
Property Value
SecretBase

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

Endpoint

The endpoint of the QuickBooks server. (i.e. quickbooks.api.intuit.com).

Declaration
public object Endpoint { get; set; }
Property Value
System.Object

UseEncryptedEndpoints

Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true.

Declaration
public object UseEncryptedEndpoints { get; set; }
Property Value
System.Object

Back to top Azure SDK for .NET