Skip to content

Commit bd2f760

Browse files
authored
Platform: Couchbase and PostgreSQL source connectors (#426)
1 parent cd23d9b commit bd2f760

File tree

6 files changed

+12
-2
lines changed

6 files changed

+12
-2
lines changed

mint.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,7 @@
480480
"platform/sources/overview",
481481
"platform/sources/azure-blob-storage",
482482
"platform/sources/confluence",
483+
"platform/sources/couchbase",
483484
"platform/sources/databricks-volumes",
484485
"platform/sources/dropbox",
485486
"platform/sources/elasticsearch",
@@ -488,6 +489,7 @@
488489
"platform/sources/mongodb",
489490
"platform/sources/onedrive",
490491
"platform/sources/outlook",
492+
"platform/sources/postgresql",
491493
"platform/sources/s3",
492494
"platform/sources/salesforce",
493495
"platform/sources/sharepoint"
@@ -526,6 +528,7 @@
526528
"platform/api/sources/overview",
527529
"platform/api/sources/azure-blob-storage",
528530
"platform/api/sources/confluence",
531+
"platform/api/sources/couchbase",
529532
"platform/api/sources/databricks-volumes",
530533
"platform/api/sources/dropbox",
531534
"platform/api/sources/elasticsearch",
@@ -534,6 +537,7 @@
534537
"platform/api/sources/mongodb",
535538
"platform/api/sources/onedrive",
536539
"platform/api/sources/outlook",
540+
"platform/api/sources/postgresql",
537541
"platform/api/sources/s3",
538542
"platform/api/sources/salesforce",
539543
"platform/api/sources/sharepoint"

platform/api/sources/overview.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ For the list of specific settings, see:
1515

1616
- [Azure](/platform/api/sources/azure-blob-storage) (`source_type=azure`)
1717
- [Confluence](/platform/api/sources/confluence) (`source_type=confluence`)
18+
- [Couchbase](/platform/api/sources/couchbase) (`source_type=couchbase`)
1819
- [Databricks Volumes](/platform/api/sources/databricks-volumes) (`source_type=databricks_volumes`)
1920
- [Dropbox](/platform/api/sources/dropbox) (`source_type=dropbox`)
2021
- [Elasticsearch](/platform/api/sources/elasticsearch) (`source_type=elasticsearch`)
@@ -23,6 +24,7 @@ For the list of specific settings, see:
2324
- [MongoDB](/platform/api/sources/mongodb) (`source_type=mongodb`)
2425
- [OneDrive](/platform/api/sources/onedrive) (`source_type=onedrive`)
2526
- [Outlook](/platform/api/sources/outlook) (`source_type=outlook`)
27+
- [PostgreSQL](/platform/api/sources/postgresql) (`source_type=postgres`)
2628
- [S3](/platform/api/sources/s3) (`source_type=s3`)
2729
- [Salesforce](/platform/api/sources/salesforce) (`source_type=salesforce`)
2830
- [SharePoint](/platform/api/sources/sharepoint) (`source_type=sharepoint`)

platform/connectors.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ The Unstructured Platform supports connecting to the following source and destin
1313

1414
- [Azure](/platform/sources/azure-blob-storage)
1515
- [Confluence](/platform/sources/confluence)
16+
- [Couchbase](/platform/sources/couchbase)
1617
- [Databricks Volumes](/platform/sources/databricks-volumes)
1718
- [Dropbox](/platform/sources/dropbox)
1819
- [Elasticsearch](/platform/sources/elasticsearch)
@@ -21,6 +22,7 @@ The Unstructured Platform supports connecting to the following source and destin
2122
- [MongoDB](/platform/sources/mongodb)
2223
- [OneDrive](/platform/sources/onedrive)
2324
- [Outlook](/platform/sources/outlook)
25+
- [PostgreSQL](/platform/sources/postgresql)
2426
- [S3](/platform/sources/s3)
2527
- [Salesforce](/platform/sources/salesforce)
2628
- [SharePoint](/platform/sources/sharepoint)

platform/sources/overview.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ To create a source connector:
2020

2121
- [Azure](/platform/sources/azure-blob-storage)
2222
- [Confluence](/platform/sources/confluence)
23+
- [Couchbase](/platform/sources/couchbase)
2324
- [Databricks Volumes](/platform/sources/databricks-volumes)
2425
- [Dropbox](/platform/sources/dropbox)
2526
- [Elasticsearch](/platform/sources/elasticsearch)
@@ -28,6 +29,7 @@ To create a source connector:
2829
- [MongoDB](/platform/sources/mongodb)
2930
- [OneDrive](/platform/sources/onedrive)
3031
- [Outlook](/platform/sources/outlook)
32+
- [PostgreSQL](/platform/sources/postgresql)
3133
- [S3](/platform/sources/s3)
3234
- [Salesforce](/platform/sources/salesforce)
3335
- [SharePoint](/platform/source/sharepoint)

snippets/source_connectors/postgresql_rest_change.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```bash REST (Change)
22
curl --request 'PUT' --location \
3-
"$UNSTRUCTURED_API_URL/destinations" \
3+
"$UNSTRUCTURED_API_URL/sources/<connector-id>" \
44
--header 'accept: application/json' \
55
--header "unstructured-api-key: $UNSTRUCTURED_API_KEY" \
66
--header 'content-type: application/json' \

snippets/source_connectors/postgresql_rest_create.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```bash REST (Create)
22
curl --request 'POST' --location \
3-
"$UNSTRUCTURED_API_URL/destinations" \
3+
"$UNSTRUCTURED_API_URL/sources" \
44
--header 'accept: application/json' \
55
--header "unstructured-api-key: $UNSTRUCTURED_API_KEY" \
66
--header 'content-type: application/json' \

0 commit comments

Comments
 (0)