Skip to content

Commit

Permalink
🤖 Merge PR #69538 update(snowflake-sdk): Add noProxy connection optio…
Browse files Browse the repository at this point in the history
…n by @mikhuang
  • Loading branch information
mikhuang committed May 18, 2024
1 parent bf6faab commit acac6a1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions types/snowflake-sdk/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,12 @@ export interface ConnectionOptions {
* For details, see {@link https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-connect#connecting-through-an-authenticated-proxy Connecting through an authenticated proxy}.
*/
proxyPassword?: string;

/**
* Specifies the lists of hosts that the driver should connect to directly, bypassing the proxy server.
* For details, see {@link https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-options#additional-connection-options Additional connection options}.
*/
noProxy?: string;
}

export interface Column {
Expand Down
1 change: 1 addition & 0 deletions types/snowflake-sdk/snowflake-sdk-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ snowflake.createConnection({
proxyProtocol: "",
proxyUser: "",
proxyPassword: "",
noProxy: "",
});

// Pool
Expand Down

0 comments on commit acac6a1

Please sign in to comment.