Show / Hide Table of Contents

Class GoogleBigQueryV2LinkedService

Google BigQuery service linked service.

Inheritance
System.Object
LinkedService
GoogleBigQueryV2LinkedService
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.GoogleBigQueryV2LinkedService/GoogleBigQueryV2LinkedServiceConverter))]
public class GoogleBigQueryV2LinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService

Constructors

GoogleBigQueryV2LinkedService(Object, GoogleBigQueryV2AuthenticationType)

Initializes a new instance of GoogleBigQueryV2LinkedService.

Declaration
public GoogleBigQueryV2LinkedService (object projectId, Azure.Analytics.Synapse.Artifacts.Models.GoogleBigQueryV2AuthenticationType authenticationType);
Parameters
System.Object projectId

The default BigQuery project id to query against.

GoogleBigQueryV2AuthenticationType authenticationType

The OAuth 2.0 authentication mechanism used for authentication.

Exceptions
System.ArgumentNullException

projectId is null.

Properties

AuthenticationType

The OAuth 2.0 authentication mechanism used for authentication.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.GoogleBigQueryV2AuthenticationType AuthenticationType { get; set; }
Property Value
GoogleBigQueryV2AuthenticationType

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

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 string EncryptedCredential { get; set; }
Property Value
System.String

KeyFileContent

The content of the .json key file that is used to authenticate the service account. 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 KeyFileContent { get; set; }
Property Value
SecretBase

ProjectId

The default BigQuery project id to query against.

Declaration
public object ProjectId { 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

Back to top Azure SDK for .NET