Configuring your connectionsConnection configurations

Google Cloud Storage

Connection

Description

Configuration

NAMETYPEDESCRIPTIONREQUIREDREADONLY
project_idstringfalsefalse
client_emailstringfalsefalse
service_accountstringtruefalse
bucketstringtruefalse
is_single_tablebooleanTreat the files as a single table. (required if is_single_table is “true”)falsefalse
single_table_namestring(required if IsSingleTable is “true”)falsefalse
single_table_file_formatstring(required if IsSingleTable is “true”)falsefalse
skip_linesintegerSkip first N lines of each CSV file.falsefalse

Example

1{
2 "name": "gcs connection",
3 "type": "gcs",
4 "configuration": {
5 "bucket": "my-bucket",
6 "client_email": "",
7 "is_single_table": false,
8 "project_id": "",
9 "service_account": "",
10 "single_table_file_format": "",
11 "single_table_name": "collection",
12 "skip_lines": 0
13 }
14}

Model Sync

Source

N/A

Target

Configuration

NAMETYPEDESCRIPTIONREQUIREDREADONLY
formatstringOutput file encodingfalsefalse

Example

1{
2 ...
3 "target": {
4 "configuration": {
5 "format": "csv"
6 }
7 }
8}

Bulk Sync

Source

N/A

Destination

Configuration

NAMETYPEDESCRIPTIONREQUIREDREADONLY
formatstringOutput file encodingfalsefalse
subfolderstringSubfolder to write to (optional)falsefalse

Example

1{
2 ...
3 "destination_configuration": {
4 "format": "csv",
5 "subfolder": "reports"
6 }
7}