From 4832f96d8f368e431ece290507292a3a51a309fb Mon Sep 17 00:00:00 2001 From: vickstrom Date: Fri, 19 Sep 2025 20:06:34 +0200 Subject: [PATCH] document azureBlob config and remove unused id field Signed-off-by: vickstrom --- .../catalog-backend-module-azure/config.d.ts | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/plugins/catalog-backend-module-azure/config.d.ts b/plugins/catalog-backend-module-azure/config.d.ts index 511588fb73..0eb488734f 100644 --- a/plugins/catalog-backend-module-azure/config.d.ts +++ b/plugins/catalog-backend-module-azure/config.d.ts @@ -61,16 +61,32 @@ export interface Config { azureBlob?: | { [name: string]: { - id: string; + /** + * (Required) The Azure Blob Storage container name. + */ containerName: string; + /** + * (Required) The Azure Storage account name. + */ accountName: string; + /** + * (Optional) TaskScheduleDefinition for the refresh. + */ schedule?: SchedulerServiceTaskScheduleDefinitionConfig; }; } | { - id: string; + /** + * (Required) The Azure Blob Storage container name. + */ containerName: string; + /** + * (Required) The Azure Storage account name. + */ accountName: string; + /** + * (Optional) TaskScheduleDefinition for the refresh. + */ schedule?: SchedulerServiceTaskScheduleDefinitionConfig; }; };