Class BlobStorageConfiguration
- Assembly
- FoundationaLLM.Common.dll
Blob storage configuration settings.
public class BlobStorageConfiguration
- Inheritance
-
BlobStorageConfiguration
- Inherited Members
- Extension Methods
Properties
ConfigurationType
The type of configuration. This value should not be changed.
[JsonPropertyName("configuration_type")]
public string ConfigurationType { get; }
Property Value
ConnectionStringSecretName
The connection string key vault secret name that is retrieved from key vault.
[JsonPropertyName("connection_string_secret")]
public string? ConnectionStringSecretName { get; set; }
Property Value
ContainerName
The name of the container
[JsonPropertyName("container")]
public string? ContainerName { get; set; }
Property Value
Files
The list of files to get
[JsonPropertyName("files")]
public List<string>? Files { get; set; }