Commit 10ce2aa 1 parent cc41c9e commit 10ce2aa Copy full SHA for 10ce2aa
File tree 4 files changed +16
-4
lines changed
4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,10 @@ class SnowflakeMaterializationEngineConfig(FeastConfigBaseModel):
46
46
""" Type selector"""
47
47
48
48
config_path : Optional [str ] = os .path .expanduser ("~/.snowsql/config" )
49
- """ Snowflake config path -- absolute path required (Cant use ~)"""
49
+ """ Snowflake snowsql config path -- absolute path required (Cant use ~)"""
50
+
51
+ connection_name : Optional [str ] = None
52
+ """ Snowflake connector connection name -- typically defined in ~/.snowflake/connections.toml """
50
53
51
54
account : Optional [str ] = None
52
55
""" Snowflake deployment identifier -- drop .snowflakecomputing.com"""
Original file line number Diff line number Diff line change @@ -83,7 +83,10 @@ class SnowflakeOfflineStoreConfig(FeastConfigBaseModel):
83
83
""" Offline store type selector """
84
84
85
85
config_path : Optional [str ] = os .path .expanduser ("~/.snowsql/config" )
86
- """ Snowflake config path -- absolute path required (Cant use ~)"""
86
+ """ Snowflake snowsql config path -- absolute path required (Cant use ~)"""
87
+
88
+ connection_name : Optional [str ] = None
89
+ """ Snowflake connector connection name -- typically defined in ~/.snowflake/connections.toml """
87
90
88
91
account : Optional [str ] = None
89
92
""" Snowflake deployment identifier -- drop .snowflakecomputing.com """
Original file line number Diff line number Diff line change @@ -30,7 +30,10 @@ class SnowflakeOnlineStoreConfig(FeastConfigBaseModel):
30
30
""" Online store type selector """
31
31
32
32
config_path : Optional [str ] = os .path .expanduser ("~/.snowsql/config" )
33
- """ Snowflake config path -- absolute path required (Can't use ~)"""
33
+ """ Snowflake snowsql config path -- absolute path required (Cant use ~)"""
34
+
35
+ connection_name : Optional [str ] = None
36
+ """ Snowflake connector connection name -- typically defined in ~/.snowflake/connections.toml """
34
37
35
38
account : Optional [str ] = None
36
39
""" Snowflake deployment identifier -- drop .snowflakecomputing.com """
Original file line number Diff line number Diff line change @@ -80,7 +80,10 @@ class SnowflakeRegistryConfig(RegistryConfig):
80
80
""" Registry type selector """
81
81
82
82
config_path : Optional [str ] = os .path .expanduser ("~/.snowsql/config" )
83
- """ Snowflake config path -- absolute path required (Cant use ~) """
83
+ """ Snowflake snowsql config path -- absolute path required (Cant use ~)"""
84
+
85
+ connection_name : Optional [str ] = None
86
+ """ Snowflake connector connection name -- typically defined in ~/.snowflake/connections.toml """
84
87
85
88
account : Optional [str ] = None
86
89
""" Snowflake deployment identifier -- drop .snowflakecomputing.com """
You can’t perform that action at this time.
0 commit comments