Configuring your connectionsConnection configurations

Azure Blob Storage

Connection

Description

Configuration

NAMETYPEDESCRIPTIONREQUIREDREADONLY
account_namestringtruefalse
access_keystringtruefalse
container_namestringtruefalse
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": "azureblob connection",
3 "type": "azureblob",
4 "configuration": {
5 "access_key": "abcdefghijklmnopqrstuvwxyz0123456789/+ABCDEabcdefghijklmnopqrstuvwxyz0123456789/+ABCDE==",
6 "account_name": "account",
7 "container_name": "container",
8 "is_single_table": false,
9 "single_table_file_format": "csv",
10 "single_table_name": "collection",
11 "skip_lines": 0
12 }
13}

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}