Show / Hide Table of Contents

Class MicrosoftAccessLinkedService

Microsoft Access linked service.

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

Constructors

MicrosoftAccessLinkedService(Object)

Initializes a new instance of MicrosoftAccessLinkedService.

Declaration
public MicrosoftAccessLinkedService (object connectionString);
Parameters
System.Object connectionString

The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference.

Exceptions
System.ArgumentNullException

connectionString is null.

Properties

AuthenticationType

Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string).

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

ConnectionString

The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference.

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

Credential

The access credential portion of the connection string specified in driver-specific property-value format. 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 Credential { 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

Password

Password for Basic 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 Password { get; set; }
Property Value
SecretBase

UserName

User name for Basic authentication. Type: string (or Expression with resultType string).

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

Back to top Azure SDK for .NET