We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6a3a89 commit 17b8483Copy full SHA for 17b8483
1 file changed
proto/relationalai/lqp/v1/logic.proto
@@ -288,6 +288,18 @@ message CSVLocator {
288
bytes inline_data = 2; // Inline CSV content (mutually exclusive with paths)
289
}
290
291
+message CSVStorageIntegration {
292
+ string provider = 1; // "azure" or "s3"
293
+
294
+ // Options for azure
295
+ string azure_sas_token = 2;
296
297
+ // Options for s3
298
+ string s3_region = 3;
299
+ string s3_access_key_id = 4;
300
+ string s3_secret_access_key = 5;
301
+}
302
303
message CSVConfig {
304
// Header and structure
305
int32 header_row = 1; // Row number for headers (< 1 means no header)
0 commit comments