Class GoogleBigQueryLinkedService
Google BigQuery service linked service.
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.GoogleBigQueryLinkedService/GoogleBigQueryLinkedServiceConverter))]
public class GoogleBigQueryLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService
Constructors
GoogleBigQueryLinkedService(Object, GoogleBigQueryAuthenticationType)
Initializes a new instance of GoogleBigQueryLinkedService.
Declaration
public GoogleBigQueryLinkedService (object project, Azure.Analytics.Synapse.Artifacts.Models.GoogleBigQueryAuthenticationType authenticationType);
Parameters
|
System.Object
project
The default BigQuery project to query against. |
|
GoogleBigQueryAuthenticationType
authenticationType
The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR. |
Exceptions
|
System.ArgumentNullException
|
Properties
AdditionalProjects
A comma-separated list of public BigQuery projects to access.
Declaration
public object AdditionalProjects { get; set; }
Property Value
|
System.Object
|
AuthenticationType
The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR.
Declaration
public Azure.Analytics.Synapse.Artifacts.Models.GoogleBigQueryAuthenticationType AuthenticationType { get; set; }
Property Value
|
GoogleBigQueryAuthenticationType
|
ClientId
The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string).
Declaration
public object ClientId { get; set; }
Property Value
|
System.Object
|
ClientSecret
The client secret of the google application used to acquire the refresh token. 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
|
The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR.
Declaration
public object Email { get; set; }
Property Value
|
System.Object
|
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
|
KeyFilePath
The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR.
Declaration
public object KeyFilePath { get; set; }
Property Value
|
System.Object
|
Project
The default BigQuery project to query against.
Declaration
public object Project { get; set; }
Property Value
|
System.Object
|
RefreshToken
The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication. 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 RefreshToken { get; set; }
Property Value
|
SecretBase
|
RequestGoogleDriveScope
Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false.
Declaration
public object RequestGoogleDriveScope { get; set; }
Property Value
|
System.Object
|
TrustedCertPath
The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR.
Declaration
public object TrustedCertPath { get; set; }
Property Value
|
System.Object
|
UseSystemTrustStore
Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.
Declaration
public object UseSystemTrustStore { get; set; }
Property Value
|
System.Object
|