Skip to content

Commit 5e22306

Browse files
committed
fix warehouses, remove third column
1 parent 8772ff0 commit 5e22306

File tree

2 files changed

+51
-8
lines changed

2 files changed

+51
-8
lines changed

src/_data/catalog/warehouse.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ items:
88
to yours, where you can then perform custom analysis on them.
99
url: connections/storage/catalog/amazon-s3
1010
status: PUBLIC
11+
endpoints:
12+
- us
13+
regions:
14+
- us
1115
logo:
1216
url: 'https://d3hotuclm6if1r.cloudfront.net/logos/amazon-s3-default.svg'
1317
mark:
@@ -19,6 +23,10 @@ items:
1923
The AWS S3 destination provides a more secure way to store data in your AWS S3 buckets.
2024
url: connections/storage/catalog/aws-s3
2125
status: PUBLIC
26+
endpoints:
27+
- us
28+
regions:
29+
- us
2230
logo:
2331
url: 'https://d3hotuclm6if1r.cloudfront.net/logos/amazon-s3-default.svg'
2432
mark:
@@ -29,6 +37,11 @@ items:
2937
description: ''
3038
url: connections/storage/catalog/azuresqldw
3139
status: PUBLIC
40+
endpoints:
41+
- us
42+
regions:
43+
- us
44+
- eu
3245
logo:
3346
url: 'https://cdn.filepicker.io/api/file/VKbuWjNjQPKOnOWijFe4'
3447
mark:
@@ -41,6 +54,11 @@ items:
4154
description: ''
4255
url: connections/storage/catalog/bigquery
4356
status: PUBLIC
57+
endpoints:
58+
- us
59+
regions:
60+
- us
61+
- eu
4462
logo:
4563
url: 'https://cdn.filepicker.io/api/file/bDzeRa75SZc6FfgfoUK6'
4664
mark:
@@ -53,6 +71,10 @@ items:
5371
description: ''
5472
url: connections/storage/catalog/databricks-delta-lake
5573
status: PRIVATE_BETA
74+
endpoints:
75+
- us
76+
regions:
77+
- us
5678
logo:
5779
url: 'https://images.ctfassets.net/h6ufgtwb6nv1/4vYEAgYz6nGLC9F64Jxeb6/fcf3ecdae5386f806ae72eb39ce07094/db.svg?w=256&q=75'
5880
mark:
@@ -65,6 +87,10 @@ items:
6587
description: ''
6688
url: connections/storage/catalog/google-cloud-storage
6789
status: PUBLIC_BETA
90+
endpoints:
91+
- us
92+
regions:
93+
- us
6894
logo:
6995
url: 'https://cdn.filepicker.io/api/file/G6kRHZtSoaEslLkENhPC'
7096
mark:
@@ -77,6 +103,11 @@ items:
77103
description: ''
78104
url: connections/storage/catalog/db2
79105
status: PUBLIC
106+
endpoints:
107+
- us
108+
regions:
109+
- us
110+
- eu
80111
logo:
81112
url: 'https://image.ibb.co/i4rS3K/IBM_Db2_logotype_pos_RGB.jpg'
82113
mark:
@@ -89,6 +120,11 @@ items:
89120
description: ''
90121
url: connections/storage/catalog/postgres
91122
status: PUBLIC
123+
endpoints:
124+
- us
125+
regions:
126+
- us
127+
- eu
92128
logo:
93129
url: 'https://d3hotuclm6if1r.cloudfront.net/logos/postgres-default.svg'
94130
mark:
@@ -101,6 +137,11 @@ items:
101137
description: ''
102138
url: connections/storage/catalog/redshift
103139
status: PUBLIC
140+
endpoints:
141+
- us
142+
regions:
143+
- us
144+
- eu
104145
logo:
105146
url: 'https://d3hotuclm6if1r.cloudfront.net/logos/redshift-default.svg'
106147
mark:
@@ -113,6 +154,10 @@ items:
113154
description: ''
114155
url: connections/storage/catalog/data-lakes
115156
status: PUBLIC
157+
endpoints:
158+
- us
159+
regions:
160+
- us
116161
logo:
117162
url: 'https://cdn.filepicker.io/api/file/YR7dKXAiQWyYvBiVOZNX'
118163
mark:
@@ -125,6 +170,11 @@ items:
125170
description: ''
126171
url: connections/storage/catalog/snowflake
127172
status: PUBLIC
173+
endpoints:
174+
- us
175+
regions:
176+
- us
177+
- eu
128178
logo:
129179
url: 'https://cdn.filepicker.io/api/file/JrQWOYvMRRCVvSHp4HL0'
130180
mark:

src/_includes/content/regional-integrations-table.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% assign destinations = site.data.catalog.destinations.items %}
2-
{% assign warehouses = site.data.catalog.regional-supported.warehouses %}
2+
{% assign warehouses = site.data.catalog.warehouse.items %}
33

44
<input class="table-search" type="text" id="filterInput" onkeyup="searchFilter()"
55
placeholder="Search for an integration..">
@@ -15,7 +15,6 @@
1515
<th>Integration</th>
1616
<th>US Workspace</th>
1717
<th>EU workspace w/ US Endpoint</th>
18-
<th>EU workspace w/ EU Endpoint</th>
1918
</tr>
2019
</thead>
2120
<tbody>
@@ -33,9 +32,6 @@
3332
<td>{% if destination.regions contains "eu-west-1" and destination.endpoints contains "US" %}<img class="inline"
3433
src="/docs/images/supported.svg" />{% else %}<img alt="" class="inline"
3534
src="/docs/images/unsupported.svg" />{% endif %}</td>
36-
<td> {% if destination.regions contains "eu-west-1" and destination.endpoints contains "EU" %}<img class="inline"
37-
src="/docs/images/supported.svg" />{% else %}<img alt="" class="inline"
38-
src="/docs/images/unsupported.svg" />{% endif %}</td>
3935
</tr>
4036
{% endfor %}
4137
<tr class="settingRow warehouse">
@@ -51,9 +47,6 @@
5147
<td>{% if warehouse.regions contains "eu" and warehouse.endpoints contains "us" %}<img class="inline"
5248
src="/docs/images/supported.svg" />{% else %}<img alt="" class="inline"
5349
src="/docs/images/unsupported.svg" />{% endif %}</td>
54-
<td> {% if warehouse.regions contains "eu" and warehouse.endpoints contains "eu" %}<img class="inline"
55-
src="/docs/images/supported.svg" />{% else %}<img alt="" class="inline"
56-
src="/docs/images/unsupported.svg" />{% endif %}</td>
5750
</tr>
5851
{% endfor %}
5952
</tbody>

0 commit comments

Comments
 (0)