Show / Hide Table of Contents

Class AzureKeyVaultSecretReference

Azure Key Vault secret reference.

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

Constructors

AzureKeyVaultSecretReference(LinkedServiceReference, Object)

Initializes a new instance of AzureKeyVaultSecretReference.

Declaration
public AzureKeyVaultSecretReference (Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference store, object secretName);
Parameters
LinkedServiceReference store

The Azure Key Vault linked service reference.

System.Object secretName

The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).

Exceptions
System.ArgumentNullException

store or secretName is null.

Properties

SecretName

The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).

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

SecretVersion

The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).

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

Store

The Azure Key Vault linked service reference.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.LinkedServiceReference Store { get; set; }
Property Value
LinkedServiceReference

Back to top Azure SDK for .NET