Package version:

Interface AzureBlobKnowledgeSourceParameters

Parameters for Azure Blob Storage knowledge source.

interface AzureBlobKnowledgeSourceParameters {
    connectionString: string;
    containerName: string;
    createdResources?: {
        [propertyName: string]: string;
    };
    folderPath?: string;
    ingestionParameters?: KnowledgeSourceIngestionParameters;
}

Properties

connectionString: string

Key-based connection string or the ResourceId format if using a managed identity.

containerName: string

The name of the blob storage container.

createdResources?: {
    [propertyName: string]: string;
}

Resources created by the knowledge source. NOTE: This property will not be serialized. It can only be populated by the server.

folderPath?: string

Optional folder path within the container.

Consolidates all general ingestion settings.