Show / Hide Table of Contents

Class SnowflakeV2LinkedService

Snowflake linked service.

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

Constructors

SnowflakeV2LinkedService(Object, Object, Object)

Initializes a new instance of SnowflakeV2LinkedService.

Declaration
public SnowflakeV2LinkedService (object accountIdentifier, object database, object warehouse);
Parameters
System.Object accountIdentifier

The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure.

System.Object database

The name of the Snowflake database.

System.Object warehouse

The name of the Snowflake warehouse.

Exceptions
System.ArgumentNullException

accountIdentifier, database or warehouse is null.

Properties

AccountIdentifier

The account identifier of your Snowflake account, e.g. xy12345.east-us-2.azure.

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

AuthenticationType

The type used for authentication. Type: string.

Declaration
public Nullable<Azure.Analytics.Synapse.Artifacts.Models.SnowflakeAuthenticationType> AuthenticationType { get; set; }
Property Value
System.Nullable<SnowflakeAuthenticationType>

ClientId

The client ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.

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

ClientSecret

The Azure key vault secret reference of client secret for AADServicePrincipal 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 ClientSecret { get; set; }
Property Value
SecretBase

Database

The name of the Snowflake database.

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

EncryptedCredential

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.

Declaration
public string EncryptedCredential { get; set; }
Property Value
System.String

Host

The host name of the Snowflake account.

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

Password

The Azure key vault secret reference of password in connection string. 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

PrivateKey

The Azure key vault secret reference of privateKey for KeyPair auth. 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 PrivateKey { get; set; }
Property Value
SecretBase

PrivateKeyPassphrase

The Azure key vault secret reference of private key password for KeyPair auth with encrypted private key. 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 PrivateKeyPassphrase { get; set; }
Property Value
SecretBase

Scope

The scope of the application registered in Azure Active Directory for AADServicePrincipal authentication.

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

TenantId

The tenant ID of the application registered in Azure Active Directory for AADServicePrincipal authentication.

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

User

The name of the Snowflake user.

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

Warehouse

The name of the Snowflake warehouse.

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

Back to top Azure SDK for .NET