snowflake-cli 3.9.1__py3-none-any.whl → 3.10.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- snowflake/cli/__about__.py +1 -1
- snowflake/cli/_app/commands_registration/builtin_plugins.py +2 -2
- snowflake/cli/_app/printing.py +53 -13
- snowflake/cli/_app/snow_connector.py +1 -0
- snowflake/cli/_app/telemetry.py +2 -0
- snowflake/cli/_app/version_check.py +73 -6
- snowflake/cli/_plugins/cortex/commands.py +8 -3
- snowflake/cli/_plugins/cortex/manager.py +24 -20
- snowflake/cli/_plugins/dbt/commands.py +5 -2
- snowflake/cli/_plugins/dbt/manager.py +9 -7
- snowflake/cli/_plugins/{project → dcm}/commands.py +95 -48
- snowflake/cli/_plugins/{project/project_entity_model.py → dcm/dcm_project_entity_model.py} +5 -5
- snowflake/cli/_plugins/{project → dcm}/manager.py +35 -14
- snowflake/cli/_plugins/{project → dcm}/plugin_spec.py +1 -1
- snowflake/cli/_plugins/git/manager.py +1 -11
- snowflake/cli/_plugins/nativeapp/codegen/snowpark/python_processor.py +4 -0
- snowflake/cli/_plugins/nativeapp/commands.py +3 -4
- snowflake/cli/_plugins/nativeapp/entities/application_package.py +1 -1
- snowflake/cli/_plugins/nativeapp/release_channel/commands.py +1 -2
- snowflake/cli/_plugins/nativeapp/version/commands.py +1 -2
- snowflake/cli/_plugins/snowpark/common.py +23 -11
- snowflake/cli/_plugins/snowpark/snowpark_entity.py +13 -5
- snowflake/cli/_plugins/snowpark/snowpark_entity_model.py +10 -2
- snowflake/cli/_plugins/sql/commands.py +49 -1
- snowflake/cli/_plugins/sql/manager.py +14 -4
- snowflake/cli/_plugins/sql/repl.py +4 -0
- snowflake/cli/_plugins/stage/commands.py +30 -11
- snowflake/cli/_plugins/stage/diff.py +2 -0
- snowflake/cli/_plugins/stage/manager.py +79 -55
- snowflake/cli/_plugins/streamlit/streamlit_entity.py +17 -30
- snowflake/cli/api/artifacts/upload.py +1 -1
- snowflake/cli/api/cli_global_context.py +5 -14
- snowflake/cli/api/commands/decorators.py +7 -0
- snowflake/cli/api/commands/flags.py +12 -0
- snowflake/cli/api/commands/snow_typer.py +23 -2
- snowflake/cli/api/config.py +9 -5
- snowflake/cli/api/connections.py +1 -0
- snowflake/cli/api/constants.py +2 -2
- snowflake/cli/api/entities/common.py +16 -13
- snowflake/cli/api/entities/utils.py +15 -9
- snowflake/cli/api/feature_flags.py +2 -5
- snowflake/cli/api/output/formats.py +6 -0
- snowflake/cli/api/output/types.py +48 -2
- snowflake/cli/api/project/schemas/entities/entities.py +6 -6
- snowflake/cli/api/rendering/sql_templates.py +67 -11
- snowflake/cli/api/rest_api.py +1 -0
- snowflake/cli/api/stage_path.py +41 -5
- {snowflake_cli-3.9.1.dist-info → snowflake_cli-3.10.1.dist-info}/METADATA +46 -13
- {snowflake_cli-3.9.1.dist-info → snowflake_cli-3.10.1.dist-info}/RECORD +53 -54
- snowflake/cli/_plugins/project/feature_flags.py +0 -22
- /snowflake/cli/_plugins/{project → dcm}/__init__.py +0 -0
- {snowflake_cli-3.9.1.dist-info → snowflake_cli-3.10.1.dist-info}/WHEEL +0 -0
- {snowflake_cli-3.9.1.dist-info → snowflake_cli-3.10.1.dist-info}/entry_points.txt +0 -0
- {snowflake_cli-3.9.1.dist-info → snowflake_cli-3.10.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -14,19 +14,21 @@
|
|
|
14
14
|
|
|
15
15
|
from __future__ import annotations
|
|
16
16
|
|
|
17
|
+
from dataclasses import dataclass
|
|
17
18
|
from typing import Dict, Optional
|
|
18
19
|
|
|
19
20
|
from click import ClickException
|
|
20
21
|
from jinja2 import Environment, StrictUndefined, loaders, meta
|
|
21
22
|
from snowflake.cli.api.cli_global_context import get_cli_context
|
|
22
23
|
from snowflake.cli.api.console.console import cli_console
|
|
23
|
-
from snowflake.cli.api.exceptions import InvalidTemplateError
|
|
24
|
+
from snowflake.cli.api.exceptions import CliArgumentError, InvalidTemplateError
|
|
24
25
|
from snowflake.cli.api.metrics import CLICounterField
|
|
25
26
|
from snowflake.cli.api.rendering.jinja import (
|
|
26
27
|
CONTEXT_KEY,
|
|
27
28
|
FUNCTION_KEY,
|
|
28
29
|
IgnoreAttrEnvironment,
|
|
29
30
|
env_bootstrap,
|
|
31
|
+
get_basic_jinja_env,
|
|
30
32
|
)
|
|
31
33
|
|
|
32
34
|
_SQL_TEMPLATE_START = "<%"
|
|
@@ -63,11 +65,19 @@ def has_sql_templates(template_content: str) -> bool:
|
|
|
63
65
|
)
|
|
64
66
|
|
|
65
67
|
|
|
68
|
+
def _get_legacy_sql_env() -> Environment:
|
|
69
|
+
return _get_sql_jinja_env(_OLD_SQL_TEMPLATE_START, _OLD_SQL_TEMPLATE_END)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
def _get_standard_sql_env() -> Environment:
|
|
73
|
+
return _get_sql_jinja_env(_SQL_TEMPLATE_START, _SQL_TEMPLATE_END)
|
|
74
|
+
|
|
75
|
+
|
|
66
76
|
def choose_sql_jinja_env_based_on_template_syntax(
|
|
67
77
|
template_content: str, reference_name: Optional[str] = None
|
|
68
78
|
) -> Environment:
|
|
69
|
-
old_syntax_env =
|
|
70
|
-
new_syntax_env =
|
|
79
|
+
old_syntax_env = _get_legacy_sql_env()
|
|
80
|
+
new_syntax_env = _get_standard_sql_env()
|
|
71
81
|
has_old_syntax = _does_template_have_env_syntax(old_syntax_env, template_content)
|
|
72
82
|
has_new_syntax = _does_template_have_env_syntax(new_syntax_env, template_content)
|
|
73
83
|
reference_name_str = f" in {reference_name}" if reference_name else ""
|
|
@@ -86,7 +96,29 @@ def choose_sql_jinja_env_based_on_template_syntax(
|
|
|
86
96
|
return new_syntax_env
|
|
87
97
|
|
|
88
98
|
|
|
89
|
-
|
|
99
|
+
@dataclass
|
|
100
|
+
class SQLTemplateSyntaxConfig:
|
|
101
|
+
"""Class defining which syntax should be used for the template resolution.
|
|
102
|
+
Jinja syntax is not recommended and should be disabled by default."""
|
|
103
|
+
|
|
104
|
+
enable_legacy_syntax: bool = True
|
|
105
|
+
enable_standard_syntax: bool = True
|
|
106
|
+
enable_jinja_syntax: bool = False
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
def snowflake_sql_jinja_render(
|
|
110
|
+
content: str,
|
|
111
|
+
template_syntax_config: SQLTemplateSyntaxConfig,
|
|
112
|
+
data: Dict | None = None,
|
|
113
|
+
) -> str:
|
|
114
|
+
"""
|
|
115
|
+
If both legacy and standard syntax are enabled, CLI chooses one basing on provided content.
|
|
116
|
+
If jinja syntax is enabled, it is resolved after standard and legacy syntax.
|
|
117
|
+
"""
|
|
118
|
+
# Jinja syntax is server-side templating, it should not be resolved by CLI by default.
|
|
119
|
+
# The main use case for adding support for it on CLI side is for testing scripts before running them on server,
|
|
120
|
+
# which is why jinja templates are resolved after standard CLI templates.
|
|
121
|
+
|
|
90
122
|
data = data or {}
|
|
91
123
|
|
|
92
124
|
for reserved_key in RESERVED_KEYS:
|
|
@@ -94,13 +126,37 @@ def snowflake_sql_jinja_render(content: str, data: Dict | None = None) -> str:
|
|
|
94
126
|
raise ClickException(
|
|
95
127
|
f"{reserved_key} in user defined data. The `{reserved_key}` variable is reserved for CLI usage."
|
|
96
128
|
)
|
|
97
|
-
|
|
98
|
-
context_data = get_cli_context().template_context
|
|
99
|
-
context_data.update(data)
|
|
100
|
-
env = choose_sql_jinja_env_based_on_template_syntax(content)
|
|
101
|
-
|
|
129
|
+
has_templates = has_sql_templates(content)
|
|
102
130
|
get_cli_context().metrics.set_counter(
|
|
103
|
-
CLICounterField.SQL_TEMPLATES, int(
|
|
131
|
+
CLICounterField.SQL_TEMPLATES, int(has_templates)
|
|
104
132
|
)
|
|
133
|
+
context_data = {}
|
|
134
|
+
if has_templates:
|
|
135
|
+
try:
|
|
136
|
+
context_data = get_cli_context().template_context
|
|
137
|
+
except Exception as e:
|
|
138
|
+
raise CliArgumentError(f"Failed to read snowflake.yml file: {e}")
|
|
139
|
+
context_data.update(data)
|
|
105
140
|
|
|
106
|
-
|
|
141
|
+
# resolve legacy and standard SQL templating:
|
|
142
|
+
if (
|
|
143
|
+
template_syntax_config.enable_legacy_syntax
|
|
144
|
+
and template_syntax_config.enable_standard_syntax
|
|
145
|
+
):
|
|
146
|
+
env = choose_sql_jinja_env_based_on_template_syntax(content)
|
|
147
|
+
elif template_syntax_config.enable_legacy_syntax:
|
|
148
|
+
env = _get_legacy_sql_env()
|
|
149
|
+
elif template_syntax_config.enable_standard_syntax:
|
|
150
|
+
env = _get_standard_sql_env()
|
|
151
|
+
else:
|
|
152
|
+
env = None
|
|
153
|
+
|
|
154
|
+
if env:
|
|
155
|
+
content = env.from_string(content).render(context_data)
|
|
156
|
+
|
|
157
|
+
# resolve jinja templating
|
|
158
|
+
if template_syntax_config.enable_jinja_syntax:
|
|
159
|
+
jinja_env = get_basic_jinja_env()
|
|
160
|
+
content = jinja_env.from_string(content).render(context_data)
|
|
161
|
+
|
|
162
|
+
return content
|
snowflake/cli/api/rest_api.py
CHANGED
|
@@ -98,6 +98,7 @@ class RestApi:
|
|
|
98
98
|
data=json.dumps(data if data else {}),
|
|
99
99
|
no_retry=True,
|
|
100
100
|
raise_raw_http_failure=True,
|
|
101
|
+
external_session_id=None, # workaround for connector 3.16 bug, to be removed SNOW-2226816
|
|
101
102
|
)
|
|
102
103
|
|
|
103
104
|
def _database_exists(self, db_name: str) -> bool:
|
snowflake/cli/api/stage_path.py
CHANGED
|
@@ -9,6 +9,7 @@ from snowflake.cli.api.project.util import (
|
|
|
9
9
|
)
|
|
10
10
|
|
|
11
11
|
USER_STAGE_PREFIX = "~"
|
|
12
|
+
SNOW_PREFIX = "snow://"
|
|
12
13
|
|
|
13
14
|
|
|
14
15
|
class StagePath:
|
|
@@ -19,6 +20,7 @@ class StagePath:
|
|
|
19
20
|
git_ref: str | None = None,
|
|
20
21
|
trailing_slash: bool = False,
|
|
21
22
|
):
|
|
23
|
+
self._is_snow_prefixed_stage = stage_name.startswith(SNOW_PREFIX)
|
|
22
24
|
self._stage_name = self.strip_stage_prefixes(stage_name)
|
|
23
25
|
self._path = PurePosixPath(path) if path else PurePosixPath(".")
|
|
24
26
|
|
|
@@ -53,6 +55,10 @@ class StagePath:
|
|
|
53
55
|
def stage_with_at(self) -> str:
|
|
54
56
|
return self.add_at_prefix(self._stage_name)
|
|
55
57
|
|
|
58
|
+
@property
|
|
59
|
+
def stage_with_snow(self) -> str:
|
|
60
|
+
return self.add_snow_prefix(self._stage_name)
|
|
61
|
+
|
|
56
62
|
def is_user_stage(self) -> bool:
|
|
57
63
|
return self._is_user_stage
|
|
58
64
|
|
|
@@ -69,6 +75,12 @@ class StagePath:
|
|
|
69
75
|
return "@" + text
|
|
70
76
|
return text
|
|
71
77
|
|
|
78
|
+
@staticmethod
|
|
79
|
+
def add_snow_prefix(text: str):
|
|
80
|
+
if not text.startswith(SNOW_PREFIX):
|
|
81
|
+
return SNOW_PREFIX + text
|
|
82
|
+
return text
|
|
83
|
+
|
|
72
84
|
@staticmethod
|
|
73
85
|
def strip_at_prefix(text: str):
|
|
74
86
|
if text.startswith("@"):
|
|
@@ -77,8 +89,8 @@ class StagePath:
|
|
|
77
89
|
|
|
78
90
|
@staticmethod
|
|
79
91
|
def strip_snow_prefix(text: str):
|
|
80
|
-
if text.startswith(
|
|
81
|
-
return text[len(
|
|
92
|
+
if text.startswith(SNOW_PREFIX):
|
|
93
|
+
return text[len(SNOW_PREFIX) :]
|
|
82
94
|
return text
|
|
83
95
|
|
|
84
96
|
@classmethod
|
|
@@ -86,8 +98,15 @@ class StagePath:
|
|
|
86
98
|
return cls.strip_at_prefix(cls.strip_snow_prefix(text))
|
|
87
99
|
|
|
88
100
|
@classmethod
|
|
89
|
-
def from_stage_str(cls, stage_str: str | FQN):
|
|
101
|
+
def from_stage_str(cls, stage_str: str | FQN) -> StagePath:
|
|
102
|
+
_is_at_prefixed = str(stage_str).startswith("@")
|
|
103
|
+
_is_snow_prefixed = str(stage_str).startswith(SNOW_PREFIX)
|
|
90
104
|
stage_str = cls.strip_stage_prefixes(str(stage_str))
|
|
105
|
+
if _is_snow_prefixed:
|
|
106
|
+
resource_type = stage_str.split("/", maxsplit=1)[0]
|
|
107
|
+
stage_str = stage_str.removeprefix(resource_type + "/")
|
|
108
|
+
else:
|
|
109
|
+
resource_type = ""
|
|
91
110
|
parts = stage_str.split("/", maxsplit=1)
|
|
92
111
|
parts = [p for p in parts if p]
|
|
93
112
|
if len(parts) == 2:
|
|
@@ -95,9 +114,14 @@ class StagePath:
|
|
|
95
114
|
else:
|
|
96
115
|
stage_string = parts[0]
|
|
97
116
|
path = None
|
|
98
|
-
|
|
117
|
+
if _is_at_prefixed:
|
|
118
|
+
stage_string = cls.add_at_prefix(stage_string)
|
|
119
|
+
if _is_snow_prefixed:
|
|
120
|
+
stage_string = cls.add_snow_prefix(resource_type + "/" + stage_string)
|
|
121
|
+
stage_path = cls(
|
|
99
122
|
stage_name=stage_string, path=path, trailing_slash=stage_str.endswith("/")
|
|
100
123
|
)
|
|
124
|
+
return stage_path
|
|
101
125
|
|
|
102
126
|
@classmethod
|
|
103
127
|
def from_git_str(cls, git_str: str):
|
|
@@ -105,9 +129,15 @@ class StagePath:
|
|
|
105
129
|
@configuration_repo / branches/main / scripts/setup.sql
|
|
106
130
|
@configuration_repo / branches/"foo/main" / scripts/setup.sql
|
|
107
131
|
"""
|
|
132
|
+
_is_at_prefixed = git_str.startswith("@")
|
|
133
|
+
_is_snow_prefixed = git_str.startswith(SNOW_PREFIX)
|
|
108
134
|
repo_name, git_ref, path = cls._split_repo_path(
|
|
109
135
|
cls.strip_stage_prefixes(git_str)
|
|
110
136
|
)
|
|
137
|
+
if _is_at_prefixed:
|
|
138
|
+
repo_name = cls.add_at_prefix(repo_name)
|
|
139
|
+
if _is_snow_prefixed:
|
|
140
|
+
repo_name = cls.add_snow_prefix(repo_name)
|
|
111
141
|
return cls(
|
|
112
142
|
stage_name=repo_name,
|
|
113
143
|
path=path,
|
|
@@ -150,7 +180,9 @@ class StagePath:
|
|
|
150
180
|
path = path / self._path
|
|
151
181
|
|
|
152
182
|
str_path = str(path)
|
|
153
|
-
if
|
|
183
|
+
if self._is_snow_prefixed_stage:
|
|
184
|
+
str_path = self.add_snow_prefix(str_path)
|
|
185
|
+
elif at_prefix:
|
|
154
186
|
str_path = self.add_at_prefix(str_path)
|
|
155
187
|
|
|
156
188
|
if self._trailing_slash:
|
|
@@ -188,9 +220,13 @@ class StagePath:
|
|
|
188
220
|
return self._path.name
|
|
189
221
|
|
|
190
222
|
def is_dir(self) -> bool:
|
|
223
|
+
if Path(self.path).exists():
|
|
224
|
+
return Path(self.path).is_dir()
|
|
191
225
|
return "." not in self.name
|
|
192
226
|
|
|
193
227
|
def is_file(self) -> bool:
|
|
228
|
+
if Path(self.path).exists():
|
|
229
|
+
return Path(self.path).is_file()
|
|
194
230
|
return not self.is_dir()
|
|
195
231
|
|
|
196
232
|
@property
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: snowflake-cli
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.10.1
|
|
4
4
|
Summary: Snowflake CLI
|
|
5
5
|
Project-URL: Source code, https://github.com/snowflakedb/snowflake-cli
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/snowflakedb/snowflake-cli/issues
|
|
@@ -217,33 +217,66 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
217
217
|
Classifier: Programming Language :: SQL
|
|
218
218
|
Classifier: Topic :: Database
|
|
219
219
|
Requires-Python: >=3.10
|
|
220
|
+
Requires-Dist: annotated-types==0.7.0
|
|
221
|
+
Requires-Dist: asn1crypto==1.5.1
|
|
222
|
+
Requires-Dist: boto3==1.40.9
|
|
223
|
+
Requires-Dist: botocore==1.40.9
|
|
224
|
+
Requires-Dist: certifi==2025.8.3
|
|
225
|
+
Requires-Dist: cffi==1.17.1
|
|
226
|
+
Requires-Dist: cfgv==3.4.0
|
|
227
|
+
Requires-Dist: charset-normalizer==3.4.3
|
|
220
228
|
Requires-Dist: click==8.1.8
|
|
229
|
+
Requires-Dist: cryptography==45.0.6
|
|
230
|
+
Requires-Dist: faker==37.4.0
|
|
231
|
+
Requires-Dist: filelock==3.18.0
|
|
232
|
+
Requires-Dist: gitdb==4.0.12
|
|
221
233
|
Requires-Dist: gitpython==3.1.44
|
|
234
|
+
Requires-Dist: identify==2.6.13
|
|
235
|
+
Requires-Dist: idna==3.10
|
|
236
|
+
Requires-Dist: iniconfig==2.1.0
|
|
222
237
|
Requires-Dist: jinja2==3.1.6
|
|
238
|
+
Requires-Dist: keyring==25.6.0
|
|
239
|
+
Requires-Dist: markdown-it-py==4.0.0
|
|
240
|
+
Requires-Dist: markupsafe==3.0.2
|
|
241
|
+
Requires-Dist: nodeenv==1.9.1
|
|
223
242
|
Requires-Dist: packaging
|
|
224
243
|
Requires-Dist: pip
|
|
244
|
+
Requires-Dist: platformdirs==4.3.8
|
|
225
245
|
Requires-Dist: pluggy==1.6.0
|
|
226
246
|
Requires-Dist: prompt-toolkit==3.0.51
|
|
227
|
-
Requires-Dist: pydantic==2.
|
|
247
|
+
Requires-Dist: pydantic-core==2.33.2
|
|
248
|
+
Requires-Dist: pydantic==2.11.7
|
|
249
|
+
Requires-Dist: pygments==2.19.2
|
|
250
|
+
Requires-Dist: pyjwt==2.10.1
|
|
251
|
+
Requires-Dist: pyopenssl==25.1.0
|
|
252
|
+
Requires-Dist: python-dateutil==2.9.0.post0
|
|
253
|
+
Requires-Dist: pytz==2025.2
|
|
228
254
|
Requires-Dist: pyyaml==6.0.2
|
|
229
|
-
Requires-Dist: requests==2.32.
|
|
230
|
-
Requires-Dist: requirements-parser==0.
|
|
255
|
+
Requires-Dist: requests==2.32.4
|
|
256
|
+
Requires-Dist: requirements-parser==0.13.0
|
|
231
257
|
Requires-Dist: rich==14.0.0
|
|
232
|
-
Requires-Dist: setuptools==80.
|
|
233
|
-
Requires-Dist:
|
|
234
|
-
Requires-Dist: snowflake-
|
|
235
|
-
Requires-Dist: snowflake-
|
|
236
|
-
Requires-Dist:
|
|
237
|
-
Requires-Dist:
|
|
238
|
-
Requires-Dist:
|
|
258
|
+
Requires-Dist: setuptools==80.8.0
|
|
259
|
+
Requires-Dist: shellingham==1.5.4
|
|
260
|
+
Requires-Dist: snowflake-connector-python[secure-local-storage]==3.16.0
|
|
261
|
+
Requires-Dist: snowflake-core==1.6.0
|
|
262
|
+
Requires-Dist: snowflake-snowpark-python==1.33.0; python_version < '3.12'
|
|
263
|
+
Requires-Dist: sortedcontainers==2.4.0
|
|
264
|
+
Requires-Dist: tomlkit==0.13.3
|
|
265
|
+
Requires-Dist: typer==0.16.0
|
|
266
|
+
Requires-Dist: typing-extensions==4.14.1
|
|
267
|
+
Requires-Dist: typing-inspection==0.4.1
|
|
268
|
+
Requires-Dist: urllib3<2.6,>=1.24.3
|
|
269
|
+
Requires-Dist: virtualenv==20.34.0
|
|
270
|
+
Requires-Dist: wcwidth==0.2.13
|
|
271
|
+
Requires-Dist: werkzeug==3.1.3
|
|
239
272
|
Provides-Extra: development
|
|
240
273
|
Requires-Dist: coverage==7.8.0; extra == 'development'
|
|
241
274
|
Requires-Dist: factory-boy==3.3.3; extra == 'development'
|
|
242
|
-
Requires-Dist: faker==37.
|
|
275
|
+
Requires-Dist: faker==37.4.0; extra == 'development'
|
|
243
276
|
Requires-Dist: pre-commit>=3.5.0; extra == 'development'
|
|
244
277
|
Requires-Dist: pytest-httpserver==1.1.3; extra == 'development'
|
|
245
278
|
Requires-Dist: pytest-randomly==3.16.0; extra == 'development'
|
|
246
|
-
Requires-Dist: pytest==8.
|
|
279
|
+
Requires-Dist: pytest==8.4.1; extra == 'development'
|
|
247
280
|
Requires-Dist: syrupy==4.9.1; extra == 'development'
|
|
248
281
|
Provides-Extra: packaging
|
|
249
282
|
Description-Content-Type: text/markdown
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
snowflake/cli/__about__.py,sha256=
|
|
1
|
+
snowflake/cli/__about__.py,sha256=tl711AQi2bmJkVhLoxzuvvrBCL38AhxjPaScTnhS2_s,853
|
|
2
2
|
snowflake/cli/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
3
3
|
snowflake/cli/_app/__init__.py,sha256=CR_uTgoqHnU1XdyRhm5iQsS86yWXGVx5Ht7aGSDNFmc,765
|
|
4
4
|
snowflake/cli/_app/__main__.py,sha256=ZmcFdFqAtk2mFMz-cqCFdGd0iYzc7UsLH1oT1U40S0k,858
|
|
@@ -6,12 +6,12 @@ snowflake/cli/_app/cli_app.py,sha256=p0ddNX4kzdhGPowJA_KHCZ8Svz3dsia7GqFUJB7Yn-0
|
|
|
6
6
|
snowflake/cli/_app/constants.py,sha256=6beY5gmfXqBOHPqr6T4HXD2BFmSn3Mvjq7m_lpZIet0,901
|
|
7
7
|
snowflake/cli/_app/loggers.py,sha256=etu9xvhNRQwAn5L1r-x5uaCZ_TSL7Y3RMRjLQxx9nyY,6648
|
|
8
8
|
snowflake/cli/_app/main_typer.py,sha256=v2n7moen3CkP-SfsGrTh-MzFgqG6Ak8bJa8E2dGKzFw,2111
|
|
9
|
-
snowflake/cli/_app/printing.py,sha256=
|
|
10
|
-
snowflake/cli/_app/snow_connector.py,sha256
|
|
11
|
-
snowflake/cli/_app/telemetry.py,sha256=
|
|
12
|
-
snowflake/cli/_app/version_check.py,sha256=
|
|
9
|
+
snowflake/cli/_app/printing.py,sha256=h8GqFEF45Sec9wg8Z3LyD6N6ytZ6pR-32kaX0VZGox4,7192
|
|
10
|
+
snowflake/cli/_app/snow_connector.py,sha256=7aveOySLPqPwrbD9RYLAZLC0fzF7aX0hFkk-PkHKZ0o,12124
|
|
11
|
+
snowflake/cli/_app/telemetry.py,sha256=Rcl9sSTYEujrLMUvd2SsvmJMbVGE_ErOnnOLdBnpI60,9846
|
|
12
|
+
snowflake/cli/_app/version_check.py,sha256=tM3j8FmqcONz3nfiv9WZIU01wy4ZWbKgiWH_8GYzCfM,5585
|
|
13
13
|
snowflake/cli/_app/commands_registration/__init__.py,sha256=HhP1c8GDRqUtZMeYVNuYwc1_524q9jH18bxJJk1JKWU,918
|
|
14
|
-
snowflake/cli/_app/commands_registration/builtin_plugins.py,sha256=
|
|
14
|
+
snowflake/cli/_app/commands_registration/builtin_plugins.py,sha256=xVHqz5urWhm6yKpQhj2KUnBOKKKcg0k9l7_r5ywRIKU,2880
|
|
15
15
|
snowflake/cli/_app/commands_registration/command_plugins_loader.py,sha256=4pRKUYBmIVsBxDvaztgFbIBZKSaGseAMJMEHSkg0Nag,6297
|
|
16
16
|
snowflake/cli/_app/commands_registration/commands_registration_with_callbacks.py,sha256=VvGFd_q0-xe8HU_BP5l1OkVld4PYfNJ45YAWjuIydPE,3038
|
|
17
17
|
snowflake/cli/_app/commands_registration/exception_logging.py,sha256=4B_OuXo6BJXhchs1c4zlmhnN3fN-LV6jdv6LZ227Lr8,985
|
|
@@ -40,19 +40,24 @@ snowflake/cli/_plugins/connection/commands.py,sha256=VFBthwvY5lLdB_Nqg7BzH8sT2Vo
|
|
|
40
40
|
snowflake/cli/_plugins/connection/plugin_spec.py,sha256=A50dPnOAjPLwgp4CDXL6EkrEKSivGZ324GPFeG023sw,999
|
|
41
41
|
snowflake/cli/_plugins/connection/util.py,sha256=OjpezcayWVVUhNLzcs8UB6nJ0PIiokMQeX0meaW_6f8,7777
|
|
42
42
|
snowflake/cli/_plugins/cortex/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
43
|
-
snowflake/cli/_plugins/cortex/commands.py,sha256=
|
|
43
|
+
snowflake/cli/_plugins/cortex/commands.py,sha256=LF8sGGDrwpsIdwlG2AxiWflM65n6kzJgsC82338xY1w,11489
|
|
44
44
|
snowflake/cli/_plugins/cortex/constants.py,sha256=amVIGTexscfEZLyf6wFnWbaxtiABlMBie2yrZI7KXu0,704
|
|
45
|
-
snowflake/cli/_plugins/cortex/manager.py,sha256=
|
|
45
|
+
snowflake/cli/_plugins/cortex/manager.py,sha256=6ZppMLGxh3u8NZMpAoHpnwus47lcUEzuysZ6y6T5FLU,8719
|
|
46
46
|
snowflake/cli/_plugins/cortex/plugin_spec.py,sha256=wbOkXoUTVdXCj8m_-bJRi7IiKxS03q0XEgxrT7aB3yU,995
|
|
47
47
|
snowflake/cli/_plugins/cortex/types.py,sha256=9KQPlQRkoR67ty8VoqsifJfaoeLJPXZzCJ6dehYWYLE,827
|
|
48
48
|
snowflake/cli/_plugins/dbt/__init__.py,sha256=JhO1yb1LCYqYx-Ya-MlhubtiqD82CuvWF09dDMafxRM,578
|
|
49
|
-
snowflake/cli/_plugins/dbt/commands.py,sha256=
|
|
49
|
+
snowflake/cli/_plugins/dbt/commands.py,sha256=foQbTCHeJxtT2nkTRyey8YEfaXUoBwdKO3F8LxsRZeA,6802
|
|
50
50
|
snowflake/cli/_plugins/dbt/constants.py,sha256=mAwkVchQikcfegHqs-PmziZJRd9-DEAienWxpoHhnPc,962
|
|
51
|
-
snowflake/cli/_plugins/dbt/manager.py,sha256=
|
|
51
|
+
snowflake/cli/_plugins/dbt/manager.py,sha256=jn-RSPj-tmdzi9kSFYBNB9PtVUHMgaz_3XgyaHQ9n2s,7588
|
|
52
52
|
snowflake/cli/_plugins/dbt/plugin_spec.py,sha256=7yEc3tLgvw3iUhALpmaVpS-iePdSMjFdFSZVybf5KTc,992
|
|
53
|
+
snowflake/cli/_plugins/dcm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
+
snowflake/cli/_plugins/dcm/commands.py,sha256=NpCsfmJrZ7CBn0dSdh0Q2mts1XJwZ0-Z0pg8wFen0YY,9513
|
|
55
|
+
snowflake/cli/_plugins/dcm/dcm_project_entity_model.py,sha256=YpdLnnbopzMgzIcJaLIiVxGxSDt0u-zisXd39JwrXiU,2143
|
|
56
|
+
snowflake/cli/_plugins/dcm/manager.py,sha256=XS4M90ZJqkeOBbsnbtKPHU5mbbb7DTgfyFuugC0McAw,5108
|
|
57
|
+
snowflake/cli/_plugins/dcm/plugin_spec.py,sha256=U-p1UrjS2QTkk6j5-XfMsehc6gzcFHXVDjI4qnm5aPs,992
|
|
53
58
|
snowflake/cli/_plugins/git/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
54
59
|
snowflake/cli/_plugins/git/commands.py,sha256=87R8Fs_f6BUdfLv85QGlfTTH6K-Y_oDlqJyZ3jUpBVg,11320
|
|
55
|
-
snowflake/cli/_plugins/git/manager.py,sha256=
|
|
60
|
+
snowflake/cli/_plugins/git/manager.py,sha256=QSW6ydw4Invl3cWKx8rM_NtzA1cXaiUR0QMCqki76bc,5237
|
|
56
61
|
snowflake/cli/_plugins/git/plugin_spec.py,sha256=aadJK8d9Aanwpmktd_eRYwf8OJvN-V8iCHIpjL7AM44,992
|
|
57
62
|
snowflake/cli/_plugins/helpers/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
58
63
|
snowflake/cli/_plugins/helpers/commands.py,sha256=x0thMZ7NnhZScgIQeYSLEJfL842tJdsqkKNwRqoIJN8,11861
|
|
@@ -69,7 +74,7 @@ snowflake/cli/_plugins/logs/utils.py,sha256=LF3e3551bi25rWIVlmRb_x9hC8VxLOcNpcRc
|
|
|
69
74
|
snowflake/cli/_plugins/nativeapp/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
70
75
|
snowflake/cli/_plugins/nativeapp/artifacts.py,sha256=4q23nfqpGeNB4uARAlTGmEr71y-3kDIsNA6KRfTYHRI,7568
|
|
71
76
|
snowflake/cli/_plugins/nativeapp/bundle_context.py,sha256=vtpAWN_D6Z5I0yT3eqnfw8KDI-aozF_6LR3Lo3oVm6w,927
|
|
72
|
-
snowflake/cli/_plugins/nativeapp/commands.py,sha256=
|
|
77
|
+
snowflake/cli/_plugins/nativeapp/commands.py,sha256=wUnMtfq4sgsp7w-YF8wzF2PRJxD7ym7DDTDcqEEyGZY,21742
|
|
73
78
|
snowflake/cli/_plugins/nativeapp/common_flags.py,sha256=oGzE8_Y_kxbMrUAE9NPbNY86KiV0L0wlQYzE_lr_GR4,1611
|
|
74
79
|
snowflake/cli/_plugins/nativeapp/constants.py,sha256=3tG9e6yorj2PuWl3pcsZ-DLt2LuIihXOgsOEdt-eyH0,1150
|
|
75
80
|
snowflake/cli/_plugins/nativeapp/exceptions.py,sha256=eAc8Vo3WT8GEXNyY2bknf5cv1CRqD1v-gOrzdnCxixs,4484
|
|
@@ -90,20 +95,20 @@ snowflake/cli/_plugins/nativeapp/codegen/setup/setup_driver.py.source,sha256=wnJ
|
|
|
90
95
|
snowflake/cli/_plugins/nativeapp/codegen/snowpark/callback_source.py.jinja,sha256=JiMs2NKhtFFvKotQFU61wpKBAqPAfBthGsdT1aZgY-c,7531
|
|
91
96
|
snowflake/cli/_plugins/nativeapp/codegen/snowpark/extension_function_utils.py,sha256=Qu9dTAuB5jBVuGeSA1LMugHMuu57bgEdx4IfiNdrgfw,7630
|
|
92
97
|
snowflake/cli/_plugins/nativeapp/codegen/snowpark/models.py,sha256=7TlcAD29k5dazKg9o4JZg7ib2kcXg_IrPIDA24Fhoew,2228
|
|
93
|
-
snowflake/cli/_plugins/nativeapp/codegen/snowpark/python_processor.py,sha256=
|
|
98
|
+
snowflake/cli/_plugins/nativeapp/codegen/snowpark/python_processor.py,sha256=clLWh67is9SVkRNJM-XkX_FEfAAs1STXfIZL-q09q68,20293
|
|
94
99
|
snowflake/cli/_plugins/nativeapp/codegen/templates/templates_processor.py,sha256=ycaMiMfJuyW8QntKlfXOrKOxfGsk4zngGbTFuwZDfVU,4704
|
|
95
100
|
snowflake/cli/_plugins/nativeapp/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
101
|
snowflake/cli/_plugins/nativeapp/entities/application.py,sha256=p5DrEKoO5ojvBSm0LB13ubFLMCM4MV1rbX5wZqbTO-s,40473
|
|
97
|
-
snowflake/cli/_plugins/nativeapp/entities/application_package.py,sha256=
|
|
102
|
+
snowflake/cli/_plugins/nativeapp/entities/application_package.py,sha256=x-8oly-SIn_Prta5vIFfIYsAE2bdm9xUJv1Vixd1Ob4,70516
|
|
98
103
|
snowflake/cli/_plugins/nativeapp/entities/application_package_child_interface.py,sha256=tN5UmU6wD_P14k7_MtOFNJwNUi6LfwFAUdnyZ4_O9hk,1527
|
|
99
104
|
snowflake/cli/_plugins/nativeapp/entities/models/event_sharing_telemetry.py,sha256=ASfuzBheevYrKzP8_mvbq1SR1gSaui1xlZVg4dD0hpg,2364
|
|
100
105
|
snowflake/cli/_plugins/nativeapp/release_channel/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
101
|
-
snowflake/cli/_plugins/nativeapp/release_channel/commands.py,sha256=
|
|
106
|
+
snowflake/cli/_plugins/nativeapp/release_channel/commands.py,sha256=IvwHrNVHgTK8BLLi9Uo9vr9nI2NXG02LuhT33BiaNqI,7390
|
|
102
107
|
snowflake/cli/_plugins/nativeapp/release_directive/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
103
108
|
snowflake/cli/_plugins/nativeapp/release_directive/commands.py,sha256=nVmiuy-nMG4XzMlugPkwOJ1ajwS7FOkcK7vm7HR7ed0,7850
|
|
104
109
|
snowflake/cli/_plugins/nativeapp/v2_conversions/compat.py,sha256=FlVFumBQhk6n20dM8_7KE4moDroM6K_YjbK4TA-7pjI,9661
|
|
105
110
|
snowflake/cli/_plugins/nativeapp/version/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
106
|
-
snowflake/cli/_plugins/nativeapp/version/commands.py,sha256=
|
|
111
|
+
snowflake/cli/_plugins/nativeapp/version/commands.py,sha256=h4njsA0nWmQ6S5C2QaoLNCKYgH6WSPk1ApG376PKsjI,5949
|
|
107
112
|
snowflake/cli/_plugins/notebook/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
108
113
|
snowflake/cli/_plugins/notebook/commands.py,sha256=hUnFBU-UpiRqCj8GCPGOZTvYs1nl17760Rdo7txj71Q,4605
|
|
109
114
|
snowflake/cli/_plugins/notebook/exceptions.py,sha256=bpRPfODM3muDao0awHsn4BPNKfXIvlKSNb075il-qfA,781
|
|
@@ -123,20 +128,14 @@ snowflake/cli/_plugins/plugin/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBS
|
|
|
123
128
|
snowflake/cli/_plugins/plugin/commands.py,sha256=JoDeE-ggxYE6FKulNGJQrfl7nao7lg8FCsEw2s-WdF8,2433
|
|
124
129
|
snowflake/cli/_plugins/plugin/manager.py,sha256=eeW5b0zAvvsZREgIVH7afAQbKHI2YqqdIjqo0hqFfHs,2641
|
|
125
130
|
snowflake/cli/_plugins/plugin/plugin_spec.py,sha256=5XZJPT42ZIEARYvthic3jLEB4CvDUdMeWTM6YfDkD9k,995
|
|
126
|
-
snowflake/cli/_plugins/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
|
-
snowflake/cli/_plugins/project/commands.py,sha256=Z9y-ijQs4npDeG3vU3yfeoWdD9F_k_KFygYjhKrg2JQ,7669
|
|
128
|
-
snowflake/cli/_plugins/project/feature_flags.py,sha256=wcogqMHGLVo4T83nmPOKTlO0Oz02i6d887KRLbHnUS0,805
|
|
129
|
-
snowflake/cli/_plugins/project/manager.py,sha256=VUJzgKL3CIMN6PfNkmvzX2Imt0UebqV67htdyfuC3mQ,4432
|
|
130
|
-
snowflake/cli/_plugins/project/plugin_spec.py,sha256=wlRaaVR5pSq2qzty_E__LuRmgWoz5QKsVoijT3pbeTE,996
|
|
131
|
-
snowflake/cli/_plugins/project/project_entity_model.py,sha256=ibXeeFwB4o4-76q6eJ64pD1_wxyMhccUksRtVkw7Eg8,2138
|
|
132
131
|
snowflake/cli/_plugins/snowpark/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
133
132
|
snowflake/cli/_plugins/snowpark/commands.py,sha256=eLVvUwL64wfSYkmRFHtbwBZG7lXMcvZB5o-0Dx6ZVK0,17744
|
|
134
|
-
snowflake/cli/_plugins/snowpark/common.py,sha256=
|
|
133
|
+
snowflake/cli/_plugins/snowpark/common.py,sha256=85CQ0fpw4W2FibmuSMa3vG8hbZY_1XzCnA1pn45kTgU,13720
|
|
135
134
|
snowflake/cli/_plugins/snowpark/models.py,sha256=Bd69O3krCS5HvQdHhjQsbhFi0wtYOD_Y9sj6lBMR7KU,4766
|
|
136
135
|
snowflake/cli/_plugins/snowpark/package_utils.py,sha256=GwCKgLTorCsO50UCPcuXy5voVjRSwmLxNFrONVrdtCs,11844
|
|
137
136
|
snowflake/cli/_plugins/snowpark/plugin_spec.py,sha256=2fzlWnGL57oCLWfmkfo6USxvJpy7K9KPE3-ZqwILQcg,997
|
|
138
|
-
snowflake/cli/_plugins/snowpark/snowpark_entity.py,sha256=
|
|
139
|
-
snowflake/cli/_plugins/snowpark/snowpark_entity_model.py,sha256=
|
|
137
|
+
snowflake/cli/_plugins/snowpark/snowpark_entity.py,sha256=u3m90KB47lb0mn7KjX5fvrXnJgtHckY9PDUIqf1brOU,11091
|
|
138
|
+
snowflake/cli/_plugins/snowpark/snowpark_entity_model.py,sha256=4He2u4cGhFJ6uiShFAmAJkIXQUIGb6HZcRf4kJHq3Gc,7273
|
|
140
139
|
snowflake/cli/_plugins/snowpark/snowpark_project_paths.py,sha256=hHzKro0qOk_1hOyQD4goi0qcBfjTymy2YIwLEABX9WA,8266
|
|
141
140
|
snowflake/cli/_plugins/snowpark/snowpark_shared.py,sha256=bvKQa0FkB0UCoqIkxAJAYyymaXUuaiQ5hAe5m1GTXXk,1723
|
|
142
141
|
snowflake/cli/_plugins/snowpark/zipper.py,sha256=ZKB-SGM-onVEcwkpXV2hcCuuioL8PJGHEJccPwYLILM,3585
|
|
@@ -168,10 +167,10 @@ snowflake/cli/_plugins/spcs/services/service_entity.py,sha256=wEPGgW99uWaSvyvR42
|
|
|
168
167
|
snowflake/cli/_plugins/spcs/services/service_entity_model.py,sha256=VQ1b6ij2x4eA-RSZoJfUg2NnqsXD53curw1rU_BqzSE,1856
|
|
169
168
|
snowflake/cli/_plugins/spcs/services/service_project_paths.py,sha256=9frP-BzPTs3I2C2Rt9MsuYBMvUdXomOzI7AW4ciXK9U,389
|
|
170
169
|
snowflake/cli/_plugins/sql/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
171
|
-
snowflake/cli/_plugins/sql/commands.py,sha256=
|
|
172
|
-
snowflake/cli/_plugins/sql/manager.py,sha256=
|
|
170
|
+
snowflake/cli/_plugins/sql/commands.py,sha256=O7uiNX84tjLM4DgkTS1LRii6AEYA8fKAvPxBqMigrUA,6751
|
|
171
|
+
snowflake/cli/_plugins/sql/manager.py,sha256=se0tD88dq3ulkXK_Jbwb18a8solNSSEDQviW4k6YTS0,5109
|
|
173
172
|
snowflake/cli/_plugins/sql/plugin_spec.py,sha256=7wcy3fW00uBZL4qGnAC_UKBIksJg6GJcZfZsY8Izz-A,993
|
|
174
|
-
snowflake/cli/_plugins/sql/repl.py,sha256=
|
|
173
|
+
snowflake/cli/_plugins/sql/repl.py,sha256=u8XwsRF7ErUiNDLIm2K8TmnrM-vXDJio7GgKPFK83fQ,7970
|
|
175
174
|
snowflake/cli/_plugins/sql/snowsql_commands.py,sha256=9LlWVTJUkoZqH7SGXk4OFXsEA4KEAU6XwX8rT7hu_1k,11734
|
|
176
175
|
snowflake/cli/_plugins/sql/snowsql_templating.py,sha256=VTPvFzZihZnu6R5L1JMaVdzxfviSRoMLlNyxK87sE5E,881
|
|
177
176
|
snowflake/cli/_plugins/sql/statement_reader.py,sha256=Gtkm6_MDbCtSDtl7WGX4Bp3XtKNiLHHRS2iDFMi_9R0,9583
|
|
@@ -182,9 +181,9 @@ snowflake/cli/_plugins/sql/lexer/keywords.py,sha256=H2ElLX76COhB1wPiDmgufz-1ZAa2
|
|
|
182
181
|
snowflake/cli/_plugins/sql/lexer/lexer.py,sha256=6cVtAm-bCtyxzgp3DghXGdDQqHqHiPQlVGmdTbNYlgI,1896
|
|
183
182
|
snowflake/cli/_plugins/sql/lexer/types.py,sha256=Qp-zwYMI-36JHy1HrmsveFUelgLOG-ODUHdfL_G5k3k,539
|
|
184
183
|
snowflake/cli/_plugins/stage/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
185
|
-
snowflake/cli/_plugins/stage/commands.py,sha256=
|
|
186
|
-
snowflake/cli/_plugins/stage/diff.py,sha256=
|
|
187
|
-
snowflake/cli/_plugins/stage/manager.py,sha256=
|
|
184
|
+
snowflake/cli/_plugins/stage/commands.py,sha256=XDxeC3pClc1tzc_Uusai6aHKoL-am-PxWbWOQU74bo4,9594
|
|
185
|
+
snowflake/cli/_plugins/stage/diff.py,sha256=eaj9c-T4mXeOQGfGgBMxPhachYULKyaik2HCa9nRJ0U,10536
|
|
186
|
+
snowflake/cli/_plugins/stage/manager.py,sha256=mokjFoIJSh3QeeVOu_e4tj0gv3LdJ_5JX3WuTIezlq4,33138
|
|
188
187
|
snowflake/cli/_plugins/stage/md5.py,sha256=9B9jt3DVbSL4XyL7-4j7Tf8sI_u5CAO2LILS9xuq7fw,6303
|
|
189
188
|
snowflake/cli/_plugins/stage/plugin_spec.py,sha256=2APmhjF1Emtdx1Ir9vLwJ1PLgLbnu7Or8lijOi_AM2U,994
|
|
190
189
|
snowflake/cli/_plugins/stage/utils.py,sha256=RiJ7bDFx92U8ffqzS0djrT_KbtWy-nk-tRbXbkaq5qI,1760
|
|
@@ -192,7 +191,7 @@ snowflake/cli/_plugins/streamlit/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBl
|
|
|
192
191
|
snowflake/cli/_plugins/streamlit/commands.py,sha256=O5Og6DE86I-ZPrMXB02nBs01WAgMTmac6LeMywrvaTw,6621
|
|
193
192
|
snowflake/cli/_plugins/streamlit/manager.py,sha256=6Vz9WCW33_Mb8GgLGtQzgBbnLRMvllySG-3HBRIf6io,2110
|
|
194
193
|
snowflake/cli/_plugins/streamlit/plugin_spec.py,sha256=swcszE2JoJWs-DzgN02CxK3myIYexsnWijkFYyYf7Ws,998
|
|
195
|
-
snowflake/cli/_plugins/streamlit/streamlit_entity.py,sha256=
|
|
194
|
+
snowflake/cli/_plugins/streamlit/streamlit_entity.py,sha256=fQRFXK_LCYcTUj6omBjeT8hydXZz4R6mQAzZlYFxIMA,9342
|
|
196
195
|
snowflake/cli/_plugins/streamlit/streamlit_entity_model.py,sha256=1DKlKELYOTKvzGFPItGnH6qav1fbl8OesArdRVGy3vE,2057
|
|
197
196
|
snowflake/cli/_plugins/streamlit/streamlit_project_paths.py,sha256=-q7EobPKqDmXk5x_gMvHsCaPT_l41vrJoxIHaGDHui4,1007
|
|
198
197
|
snowflake/cli/_plugins/workspace/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
@@ -200,47 +199,47 @@ snowflake/cli/_plugins/workspace/commands.py,sha256=DZLJF69jvD3J8lb0ZljRmSzhTCaY
|
|
|
200
199
|
snowflake/cli/_plugins/workspace/context.py,sha256=EHiEJP663W0z0LhmvxI-odN9-KIkEiUeLgOxQV7sHgw,1006
|
|
201
200
|
snowflake/cli/_plugins/workspace/manager.py,sha256=3Go5qgoWEytLCxQgU637Lk3-pzWbmbJoS9nWsDOt-eU,3359
|
|
202
201
|
snowflake/cli/_plugins/workspace/plugin_spec.py,sha256=DvjilAunPuBuSIgKHOPcAVfk8-ZaCyJbfo8k1oau3cA,997
|
|
203
|
-
snowflake/cli/api/cli_global_context.py,sha256=
|
|
204
|
-
snowflake/cli/api/config.py,sha256=
|
|
205
|
-
snowflake/cli/api/connections.py,sha256=
|
|
206
|
-
snowflake/cli/api/constants.py,sha256=
|
|
202
|
+
snowflake/cli/api/cli_global_context.py,sha256=6qI-jBa_7lyiBQFOYxr4Oap2zgAfQI_C-DDyAOBvkcs,9514
|
|
203
|
+
snowflake/cli/api/config.py,sha256=kEG5PQcUtQqUgTNesQ5_GBKntD7nJIu1gS94XCo-rKg,14149
|
|
204
|
+
snowflake/cli/api/connections.py,sha256=w102ap8ANtgvzLhUO-09WeRDZtAX-NcKuOAFZRNDabs,9417
|
|
205
|
+
snowflake/cli/api/constants.py,sha256=zTDCip-AsSGQIkPq5jZDldnDgva6lMtL0vUJv9mkf6E,3867
|
|
207
206
|
snowflake/cli/api/errno.py,sha256=nVQ2kO9nPaA1uGB4yZiKTwtE2LiQmINHTutziA37c6s,3871
|
|
208
207
|
snowflake/cli/api/exceptions.py,sha256=3Esa8gL0D_dsbpjWpBFWt1fQW8u4BgU59kx1B5Vgw9A,9228
|
|
209
|
-
snowflake/cli/api/feature_flags.py,sha256=
|
|
208
|
+
snowflake/cli/api/feature_flags.py,sha256=31J3qMtt_XOTPxv9R1uHAJO2ckLA1eMWqE7y1oPhetI,2543
|
|
210
209
|
snowflake/cli/api/identifiers.py,sha256=ro7nCNU5GAgi29-RGzkULWQkLP0VSQRCCG-WoyCa2pM,6861
|
|
211
210
|
snowflake/cli/api/metrics.py,sha256=l-khpKWvRF8OB86OhJ2H61jrcTdMDGZe_QM1_-yqWT8,10694
|
|
212
|
-
snowflake/cli/api/rest_api.py,sha256=
|
|
211
|
+
snowflake/cli/api/rest_api.py,sha256=RUo4prPAGmi2iQt1o96co3pWfo2t5PLCVBB2m1jlrNA,7404
|
|
213
212
|
snowflake/cli/api/sanitizers.py,sha256=7EKqVQ3KOob0IFFoc_GmXPYpRhgnmIqhnJSvHPgxM5I,1211
|
|
214
213
|
snowflake/cli/api/secret.py,sha256=9Jg30dAVcV95tCxTY6RPdaKYTsiG39sld_bwUXXxF2A,263
|
|
215
214
|
snowflake/cli/api/secure_path.py,sha256=jNev299e6Zrw_Z1lonN0ReAYXwKQVvD7GAaGyaqvJKk,13750
|
|
216
215
|
snowflake/cli/api/secure_utils.py,sha256=w3f1JU2ntOXGQ2STeqU0QiAVx_sLLEfgPwIvpprqevY,4000
|
|
217
216
|
snowflake/cli/api/sql_execution.py,sha256=gfF8ebBCAruqvRX0ftXKr4QOHB6P7djnWOWa-ChcCjo,12155
|
|
218
|
-
snowflake/cli/api/stage_path.py,sha256=
|
|
217
|
+
snowflake/cli/api/stage_path.py,sha256=N-2tNdUGNl8NxORDrBfVJyRo9CupMWtGD0XqLUX6GhE,8728
|
|
219
218
|
snowflake/cli/api/artifacts/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
220
219
|
snowflake/cli/api/artifacts/bundle_map.py,sha256=df1wos2OgThV65gSuT-7wbF4oiDBOpU7Qqs5qs7FuVg,21808
|
|
221
220
|
snowflake/cli/api/artifacts/common.py,sha256=YTL_CSdAWEB0HMQZ5063nRrdQuFQbLAc5U5ZjNAU7jY,2058
|
|
222
|
-
snowflake/cli/api/artifacts/upload.py,sha256=
|
|
221
|
+
snowflake/cli/api/artifacts/upload.py,sha256=w0yUlT0KZbgO15m4PL6y2RTKZCsjhgCMO8aVS8OJ7Jc,1606
|
|
223
222
|
snowflake/cli/api/artifacts/utils.py,sha256=MVoNpV90IXk4BiUXM7ljFTl9wUPCdbV3YyOEYNwRkPc,3583
|
|
224
223
|
snowflake/cli/api/commands/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
225
224
|
snowflake/cli/api/commands/alias.py,sha256=TF6QgkorFTn9UV5F3tvxIJZ56iK1vIjqZFMxVtrTIzk,795
|
|
226
225
|
snowflake/cli/api/commands/common.py,sha256=6CrJqhQl-Mu0jwFmWyNKvvB7jFQ1EJdnKFW9BNHVask,462
|
|
227
|
-
snowflake/cli/api/commands/decorators.py,sha256=
|
|
226
|
+
snowflake/cli/api/commands/decorators.py,sha256=D9KU4VmgM9-0JZWxp_1_7swKj0mup_LCyxCOo6J_2lE,13122
|
|
228
227
|
snowflake/cli/api/commands/execution_metadata.py,sha256=9tz1dbzdVRLFprGi_y8TeTfv36VewFeGdhQX6NfwAXM,1231
|
|
229
228
|
snowflake/cli/api/commands/experimental_behaviour.py,sha256=HFTw0d46B1QJpiCy0MeeJhWXrPF_bnmgUGaEWkWXw98,733
|
|
230
|
-
snowflake/cli/api/commands/flags.py,sha256=
|
|
229
|
+
snowflake/cli/api/commands/flags.py,sha256=tISJytMgCp10wKGbFNRXtkH03tuWZzNQlG9Ks4RAYO8,22022
|
|
231
230
|
snowflake/cli/api/commands/overrideable_parameter.py,sha256=LDiRQudkTeoWu5y_qTCVmtseEvO6U9LuSiuLZt5oFq8,6353
|
|
232
|
-
snowflake/cli/api/commands/snow_typer.py,sha256=
|
|
231
|
+
snowflake/cli/api/commands/snow_typer.py,sha256=Mgz6QbinT53vYoTO6_1LtpLY-MhnYoY5m8pjBaucPZo,10775
|
|
233
232
|
snowflake/cli/api/commands/utils.py,sha256=vZcVtPZsuH312FPf9yw-JooNWE7Tli-zVWh4u-gQk7c,1605
|
|
234
233
|
snowflake/cli/api/console/__init__.py,sha256=jKSsXJDqyQZwJ--5eRzUqb2nNvq-lo_NC1pbqK5xROI,665
|
|
235
234
|
snowflake/cli/api/console/abc.py,sha256=s34xf-E0Xtrz3Jq-0bL2k-ik91OMTWGcILW3Df0dX_0,3144
|
|
236
235
|
snowflake/cli/api/console/console.py,sha256=OAtIlKoaQ2IrjT-R-0K-_nKtAvoHalI7vVLEVOkrW9A,4475
|
|
237
236
|
snowflake/cli/api/console/enum.py,sha256=0dhepH8DEmxLjij9XxFX3kEZ_WE267zsffzecEwA2fU,675
|
|
238
|
-
snowflake/cli/api/entities/common.py,sha256=
|
|
237
|
+
snowflake/cli/api/entities/common.py,sha256=_IaDpqneQdE6MRZ6B7-dLXP2XiFBvoaNjjki59GP-_c,6071
|
|
239
238
|
snowflake/cli/api/entities/resolver.py,sha256=yD1m71X7-JPQ6dy5mKyzVR_9d3Eji4z-nRfKd_lqXFo,5922
|
|
240
|
-
snowflake/cli/api/entities/utils.py,sha256=
|
|
239
|
+
snowflake/cli/api/entities/utils.py,sha256=Psja6CPXAyz-o3XznA5sjwe87m0iAOMp7g6f9ss8FPM,14721
|
|
241
240
|
snowflake/cli/api/output/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
242
|
-
snowflake/cli/api/output/formats.py,sha256=
|
|
243
|
-
snowflake/cli/api/output/types.py,sha256=
|
|
241
|
+
snowflake/cli/api/output/formats.py,sha256=WndZsPPCcWFY76L7L1ovBrXi_gk6ubcu5vpVMamrfes,821
|
|
242
|
+
snowflake/cli/api/output/types.py,sha256=et9AmDwU98x_w0fy-84p2BsOU4N_cFWhbjyWQDHncZg,5225
|
|
244
243
|
snowflake/cli/api/plugins/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
245
244
|
snowflake/cli/api/plugins/plugin_config.py,sha256=e7wlf2K_6CwYIjX4fbJNGNpIpnGll5XyVN50EiTnuHE,2484
|
|
246
245
|
snowflake/cli/api/plugins/command/__init__.py,sha256=qCzBzpq8__2OUN0PcruIKgQXI2V9rzk4UIGVLFv7yk4,2134
|
|
@@ -260,7 +259,7 @@ snowflake/cli/api/project/schemas/template.py,sha256=VJSwVfkWoNJ_OB850n4vLu7WD7y
|
|
|
260
259
|
snowflake/cli/api/project/schemas/updatable_model.py,sha256=y_JQSy4E67vdzKbuHmm4fmcSTHjTUgI3ulcHV1_O57M,7621
|
|
261
260
|
snowflake/cli/api/project/schemas/entities/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
262
261
|
snowflake/cli/api/project/schemas/entities/common.py,sha256=clFYkFVUoeG0K4wRe4qSvNb95BQXefax16wtmO3zyjA,10385
|
|
263
|
-
snowflake/cli/api/project/schemas/entities/entities.py,sha256=
|
|
262
|
+
snowflake/cli/api/project/schemas/entities/entities.py,sha256=4ne1lRR1NXxqzKB25FWXofD5kB0cJvCfRhTtGN7vK-U,3070
|
|
264
263
|
snowflake/cli/api/project/schemas/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
265
264
|
snowflake/cli/api/project/schemas/v1/identifier_model.py,sha256=Te0CraVdflIrvNXYljReofBCNfkGDdZ0G_aUY19GFqE,1868
|
|
266
265
|
snowflake/cli/api/project/schemas/v1/native_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -277,7 +276,7 @@ snowflake/cli/api/rendering/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh
|
|
|
277
276
|
snowflake/cli/api/rendering/jinja.py,sha256=gpHUJmgiFx8iDJFy0DgsdtBHY2k95pY9kbW51Z2VYKM,3726
|
|
278
277
|
snowflake/cli/api/rendering/project_definition_templates.py,sha256=RzVmw7JwLoeBntgLNIG4QESqKGr1i2K3XivFszqWby8,1457
|
|
279
278
|
snowflake/cli/api/rendering/project_templates.py,sha256=5QDKGbJXSdvqFRF10L09aoInzyCsK8XoUk1gRapndOk,3489
|
|
280
|
-
snowflake/cli/api/rendering/sql_templates.py,sha256=
|
|
279
|
+
snowflake/cli/api/rendering/sql_templates.py,sha256=jhTFneepo_GULWmPMqycszD_a5Q04SKVdQKj8W4T72c,5967
|
|
281
280
|
snowflake/cli/api/utils/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
|
|
282
281
|
snowflake/cli/api/utils/cursor.py,sha256=JlyUG5b4EXii71Dm7qiTdptjwIsOOmEv2QmZA1cY8NQ,1222
|
|
283
282
|
snowflake/cli/api/utils/definition_rendering.py,sha256=AgHWnpi3yit0sd6MsDTvuCQFGCNZ-giuuwsgd97hKnA,16277
|
|
@@ -290,8 +289,8 @@ snowflake/cli/api/utils/path_utils.py,sha256=OgR7cwbHXqP875RgPJGrAvDC1RRTU-2-Yss
|
|
|
290
289
|
snowflake/cli/api/utils/python_api_utils.py,sha256=wTNxXrma78wPvBz-Jo-ixNtP8ZjDCDh4TvciEnhYIAM,300
|
|
291
290
|
snowflake/cli/api/utils/templating_functions.py,sha256=zu2oK1BEC9yyWtDx17Hr-VAYHvCtagaOdxIrm70JQys,4955
|
|
292
291
|
snowflake/cli/api/utils/types.py,sha256=fVKuls8axKSsBzPqWwrkwkwoXXmedqxNJKqfXrrGyBM,1190
|
|
293
|
-
snowflake_cli-3.
|
|
294
|
-
snowflake_cli-3.
|
|
295
|
-
snowflake_cli-3.
|
|
296
|
-
snowflake_cli-3.
|
|
297
|
-
snowflake_cli-3.
|
|
292
|
+
snowflake_cli-3.10.1.dist-info/METADATA,sha256=hBSbbzDq_Z0rLdz2jx2tMo4t4ftdjfPKRh4RRbbYX80,19406
|
|
293
|
+
snowflake_cli-3.10.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
294
|
+
snowflake_cli-3.10.1.dist-info/entry_points.txt,sha256=6QmSI0wUX6p7f-dGvrPdswlQyVAVGi1AtOUbE8X6bho,58
|
|
295
|
+
snowflake_cli-3.10.1.dist-info/licenses/LICENSE,sha256=mJMA3Uz2AbjU_kVggo1CAx01XhBsI7BSi2H7ggUg_-c,11344
|
|
296
|
+
snowflake_cli-3.10.1.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# Copyright (c) 2024 Snowflake Inc.
|
|
2
|
-
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
# you may not use this file except in compliance with the License.
|
|
5
|
-
# You may obtain a copy of the License at
|
|
6
|
-
#
|
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
#
|
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
# See the License for the specific language governing permissions and
|
|
13
|
-
# limitations under the License.
|
|
14
|
-
|
|
15
|
-
from enum import unique
|
|
16
|
-
|
|
17
|
-
from snowflake.cli.api.feature_flags import BooleanFlag, FeatureFlagMixin
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
@unique
|
|
21
|
-
class FeatureFlag(FeatureFlagMixin):
|
|
22
|
-
ENABLE_SNOWFLAKE_PROJECTS = BooleanFlag("ENABLE_SNOWFLAKE_PROJECTS", False)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|