Show / Hide Table of Contents

Class AzureStorageLinkedService

The storage account linked service.

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

Constructors

AzureStorageLinkedService()

Initializes a new instance of AzureStorageLinkedService.

Declaration
public AzureStorageLinkedService ();

Properties

AccountKey

The Azure key vault secret reference of accountKey in connection string.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.AzureKeyVaultSecretReference AccountKey { get; set; }
Property Value
AzureKeyVaultSecretReference

ConnectionString

The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference.

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

SasToken

The Azure key vault secret reference of sasToken in sas uri.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.AzureKeyVaultSecretReference SasToken { get; set; }
Property Value
AzureKeyVaultSecretReference

SasUri

SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference.

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

Back to top Azure SDK for .NET