Skip to content

Commit 17b8483

Browse files
committed
Add storage integration to CSVConfig
1 parent d6a3a89 commit 17b8483

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

proto/relationalai/lqp/v1/logic.proto

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,18 @@ message CSVLocator {
288288
bytes inline_data = 2; // Inline CSV content (mutually exclusive with paths)
289289
}
290290

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+
291303
message CSVConfig {
292304
// Header and structure
293305
int32 header_row = 1; // Row number for headers (< 1 means no header)

0 commit comments

Comments
 (0)