diff --git a/content/en/docs/marketplace/platform-supported-content/modules/snowflake/snowflake-rest-sql.md b/content/en/docs/marketplace/platform-supported-content/modules/snowflake/snowflake-rest-sql.md index f7c8bded1f9..ffbe34751aa 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/snowflake/snowflake-rest-sql.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/snowflake/snowflake-rest-sql.md @@ -14,12 +14,12 @@ The [Snowflake REST SQL connector](https://marketplace.mendix.com/link/component The Snowflake REST SQL connector supports the following: -1. **Authentication:** +* Authentication: * Key-pair authentication (using PKCS #8 standard RSA keys) * OAuth authentication -2. **Functionality:** Execute SQL statements on Snowflake via REST calls from your Mendix application. These statements allow you to perform the following tasks: +* Functionality: Execute SQL statements on Snowflake via REST calls from your Mendix application. These statements allow you to perform the following tasks: * Read data from Snowflake. * Write data to Snowflake. @@ -216,6 +216,19 @@ This table maps Mendix attribute types to Snowflake data types, along with commo | DateTime | `TIMESTAMP_LTZ` | TIMESTAMP_LTZ / TEXT | Local time zone; stored in UTC. | | DateTime | `TIMESTAMP_NTZ` | TIMESTAMP_NTZ / TEXT | No time zone; stored in UTC. | +## Proxy Usage + +Making your REST calls via a proxy is now supported by the Snowflake REST SQL Connector. To make it easy to do so we have introduced the **ProxySettings** entity. To use a proxy do the following: + +1. Create a **ProxySettings** object +2. Set the `Host` and `Port` attributes to the host of the proxy and the Port the proxy is listening on +3. Optional: Set the `User` and `Password` to authenticate against your proxy +4. Associate the **ProxySettings** to your **ConnectionDetails** object when using the **POST_v1_ExecuteStatement** operation or the **CortexConnection** when using the **CortexAnalyst** operation + +Once configured, the connector automatically detects the **ProxySettings** object and routes REST requests through the specified proxy. + + {{< figure src="/attachments/appstore/platform-supported-content/modules/snowflake-rest-sql/ProxyExample.png" >}} + ## Technical Reference 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. diff --git a/static/attachments/appstore/platform-supported-content/modules/snowflake-rest-sql/ProxyExample.png b/static/attachments/appstore/platform-supported-content/modules/snowflake-rest-sql/ProxyExample.png new file mode 100644 index 00000000000..5841c0a1e43 Binary files /dev/null and b/static/attachments/appstore/platform-supported-content/modules/snowflake-rest-sql/ProxyExample.png differ