You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/marketplace/platform-supported-content/modules/snowflake/snowflake-rest-sql.md
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,12 @@ The [Snowflake REST SQL connector](https://marketplace.mendix.com/link/component
14
14
15
15
The Snowflake REST SQL connector supports the following:
16
16
17
-
1.**Authentication:**
17
+
*Authentication:
18
18
19
19
* Key-pair authentication (using PKCS #8 standard RSA keys)
20
20
* OAuth authentication
21
21
22
-
2.**Functionality:** Execute SQL statements on Snowflake via REST calls from your Mendix application. These statements allow you to perform the following tasks:
22
+
*Functionality: Execute SQL statements on Snowflake via REST calls from your Mendix application. These statements allow you to perform the following tasks:
23
23
24
24
* Read data from Snowflake.
25
25
* Write data to Snowflake.
@@ -212,6 +212,19 @@ This table maps Mendix attribute types to Snowflake data types, along with commo
212
212
| DateTime |`TIMESTAMP_LTZ`| TIMESTAMP_LTZ / TEXT | Local time zone; stored in UTC. |
213
213
| DateTime |`TIMESTAMP_NTZ`| TIMESTAMP_NTZ / TEXT | No time zone; stored in UTC. |
214
214
215
+
## Proxy Usage
216
+
217
+
Since version 3.1.0, the Snowflake REST SQL Connector supports using a proxy to make your REST calls. You can use the new `ProxySettings` entity to enable a proxy by performing the following steps:
218
+
219
+
1. Create a **ProxySettings** object.
220
+
2. Set the `Host` and `Port` attributes to the host of the proxy and the port on which the proxy is listening.
221
+
3. Optional: Set the `User` and `Password` to authenticate against your proxy.
222
+
4. Associate the **ProxySettings** to your **ConnectionDetails** object (when using the **POST_v1_ExecuteStatement** operation), or the **CortexConnection** object (when using the **CortexAnalyst** operation).
223
+
224
+
Once configured, the connector automatically detects the `ProxySettings` object and routes REST requests through the specified proxy.
To help you work with the Snowflake REST SQL connector, the following sections of this document list the available entities, enumerations, and activities that you can use in your application.
0 commit comments