Table of Contents

Class KeyVaultSecretEntry

Namespace
FoundationaLLM.Common.Models.Configuration.KeyVault
Assembly
FoundationaLLM.Common.dll

Represents a single entry in the Key Vault catalog.

public class KeyVaultSecretEntry
Inheritance
KeyVaultSecretEntry
Inherited Members
Extension Methods

Constructors

KeyVaultSecretEntry(string, string?, string?)

Represents a single entry in the Key Vault catalog.

public KeyVaultSecretEntry(string secretName, string? minimumVersion, string? description = null)

Parameters

secretName string
minimumVersion string
description string

Properties

Description

A description of the Key Vault secret.

public string? Description { get; set; }

Property Value

string

MinimumVersion

The minimum version of the app that is required to use this Key Vault secret.

public string? MinimumVersion { get; }

Property Value

string

SecretName

The name of the secret in the Key Vault.

public string SecretName { get; set; }

Property Value

string