Adds config definitions for Azure Blob Storage in integration and catalog provider

Signed-off-by: Jonathan Roebuck <jroebuck@spotify.com>
This commit is contained in:
Jonathan Roebuck
2025-09-18 13:37:02 +01:00
parent 52227d382a
commit 84443f16bc
3 changed files with 81 additions and 0 deletions
+18
View File
@@ -55,6 +55,24 @@ export interface Config {
schedule?: SchedulerServiceTaskScheduleDefinitionConfig;
};
};
/**
* AzureBlobEntityProvider configuration
*/
azureBlob?:
| {
[name: string]: {
id: string;
containerName: string;
accountName: string;
schedule?: SchedulerServiceTaskScheduleDefinitionConfig;
};
}
| {
id: string;
containerName: string;
accountName: string;
schedule?: SchedulerServiceTaskScheduleDefinitionConfig;
};
};
};
}