Table of Contents

Class BlobStorageConfiguration

Namespace
FoundationaLLM.Common.Models.Orchestration.DataSourceConfigurations
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

string

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

string

ContainerName

The name of the container

[JsonPropertyName("container")]
public string? ContainerName { get; set; }

Property Value

string

Files

The list of files to get

[JsonPropertyName("files")]
public List<string>? Files { get; set; }

Property Value

List<string>