File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -407,6 +407,8 @@ class SnowflakeConnectionConfig(ConnectionConfig):
407
407
register_comments: Whether or not to register model comments with the SQL engine.
408
408
pre_ping: Whether or not to pre-ping the connection before starting a new transaction to ensure it is still alive.
409
409
session_parameters: The optional session parameters to set for the connection.
410
+ host: Host address for the connection.
411
+ port: Port for the connection.
410
412
"""
411
413
412
414
account : str
@@ -417,6 +419,8 @@ class SnowflakeConnectionConfig(ConnectionConfig):
417
419
role : t .Optional [str ] = None
418
420
authenticator : t .Optional [str ] = None
419
421
token : t .Optional [str ] = None
422
+ host : t .Optional [str ] = None
423
+ port : t .Optional [int ] = None
420
424
application : t .Literal ["Tobiko_SQLMesh" ] = "Tobiko_SQLMesh"
421
425
422
426
# Private Key Auth
@@ -550,6 +554,8 @@ def _connection_kwargs_keys(self) -> t.Set[str]:
550
554
"private_key" ,
551
555
"session_parameters" ,
552
556
"application" ,
557
+ "host" ,
558
+ "port" ,
553
559
}
554
560
555
561
@property
You can’t perform that action at this time.
0 commit comments