Show / Hide Table of Contents

Class SqlAlwaysEncryptedProperties

Sql always encrypted properties.

Inheritance
System.Object
SqlAlwaysEncryptedProperties
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.SqlAlwaysEncryptedProperties/SqlAlwaysEncryptedPropertiesConverter))]
public class SqlAlwaysEncryptedProperties

Constructors

SqlAlwaysEncryptedProperties(SqlAlwaysEncryptedAkvAuthType)

Initializes a new instance of SqlAlwaysEncryptedProperties.

Declaration
public SqlAlwaysEncryptedProperties (Azure.Analytics.Synapse.Artifacts.Models.SqlAlwaysEncryptedAkvAuthType alwaysEncryptedAkvAuthType);
Parameters
SqlAlwaysEncryptedAkvAuthType alwaysEncryptedAkvAuthType

Sql always encrypted AKV authentication type. Type: string.

Properties

AlwaysEncryptedAkvAuthType

Sql always encrypted AKV authentication type. Type: string.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.SqlAlwaysEncryptedAkvAuthType AlwaysEncryptedAkvAuthType { get; set; }
Property Value
SqlAlwaysEncryptedAkvAuthType

Credential

The credential reference containing authentication information.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.CredentialReference Credential { get; set; }
Property Value
CredentialReference

ServicePrincipalId

The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string).

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

ServicePrincipalKey

The key of the service principal used to authenticate against Azure Key Vault. 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 ServicePrincipalKey { get; set; }
Property Value
SecretBase

Back to top Azure SDK for .NET