snowflake-cli 2.8.2__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.
Files changed (240) hide show
  1. snowflake/cli/__about__.py +17 -0
  2. snowflake/cli/__init__.py +13 -0
  3. snowflake/cli/api/__init__.py +48 -0
  4. snowflake/cli/api/cli_global_context.py +390 -0
  5. snowflake/cli/api/commands/__init__.py +13 -0
  6. snowflake/cli/api/commands/alias.py +23 -0
  7. snowflake/cli/api/commands/decorators.py +354 -0
  8. snowflake/cli/api/commands/execution_metadata.py +40 -0
  9. snowflake/cli/api/commands/experimental_behaviour.py +19 -0
  10. snowflake/cli/api/commands/flags.py +662 -0
  11. snowflake/cli/api/commands/project_initialisation.py +65 -0
  12. snowflake/cli/api/commands/snow_typer.py +237 -0
  13. snowflake/cli/api/commands/typer_pre_execute.py +26 -0
  14. snowflake/cli/api/config.py +348 -0
  15. snowflake/cli/api/console/__init__.py +17 -0
  16. snowflake/cli/api/console/abc.py +89 -0
  17. snowflake/cli/api/console/console.py +134 -0
  18. snowflake/cli/api/console/enum.py +17 -0
  19. snowflake/cli/api/constants.py +79 -0
  20. snowflake/cli/api/errno.py +27 -0
  21. snowflake/cli/api/exceptions.py +164 -0
  22. snowflake/cli/api/feature_flags.py +55 -0
  23. snowflake/cli/api/identifiers.py +167 -0
  24. snowflake/cli/api/output/__init__.py +13 -0
  25. snowflake/cli/api/output/formats.py +20 -0
  26. snowflake/cli/api/output/types.py +118 -0
  27. snowflake/cli/api/plugins/__init__.py +13 -0
  28. snowflake/cli/api/plugins/command/__init__.py +72 -0
  29. snowflake/cli/api/plugins/command/plugin_hook_specs.py +21 -0
  30. snowflake/cli/api/plugins/plugin_config.py +32 -0
  31. snowflake/cli/api/project/__init__.py +13 -0
  32. snowflake/cli/api/project/definition.py +84 -0
  33. snowflake/cli/api/project/definition_manager.py +134 -0
  34. snowflake/cli/api/project/errors.py +56 -0
  35. snowflake/cli/api/project/project_verification.py +23 -0
  36. snowflake/cli/api/project/schemas/__init__.py +13 -0
  37. snowflake/cli/api/project/schemas/entities/application_entity.py +44 -0
  38. snowflake/cli/api/project/schemas/entities/application_package_entity.py +66 -0
  39. snowflake/cli/api/project/schemas/entities/common.py +78 -0
  40. snowflake/cli/api/project/schemas/entities/entities.py +30 -0
  41. snowflake/cli/api/project/schemas/identifier_model.py +49 -0
  42. snowflake/cli/api/project/schemas/native_app/__init__.py +13 -0
  43. snowflake/cli/api/project/schemas/native_app/application.py +62 -0
  44. snowflake/cli/api/project/schemas/native_app/native_app.py +93 -0
  45. snowflake/cli/api/project/schemas/native_app/package.py +78 -0
  46. snowflake/cli/api/project/schemas/native_app/path_mapping.py +65 -0
  47. snowflake/cli/api/project/schemas/project_definition.py +199 -0
  48. snowflake/cli/api/project/schemas/snowpark/__init__.py +13 -0
  49. snowflake/cli/api/project/schemas/snowpark/argument.py +28 -0
  50. snowflake/cli/api/project/schemas/snowpark/callable.py +69 -0
  51. snowflake/cli/api/project/schemas/snowpark/snowpark.py +36 -0
  52. snowflake/cli/api/project/schemas/streamlit/__init__.py +13 -0
  53. snowflake/cli/api/project/schemas/streamlit/streamlit.py +46 -0
  54. snowflake/cli/api/project/schemas/template.py +77 -0
  55. snowflake/cli/api/project/schemas/updatable_model.py +194 -0
  56. snowflake/cli/api/project/util.py +261 -0
  57. snowflake/cli/api/rendering/__init__.py +13 -0
  58. snowflake/cli/api/rendering/jinja.py +112 -0
  59. snowflake/cli/api/rendering/project_definition_templates.py +39 -0
  60. snowflake/cli/api/rendering/project_templates.py +98 -0
  61. snowflake/cli/api/rendering/sql_templates.py +60 -0
  62. snowflake/cli/api/rest_api.py +172 -0
  63. snowflake/cli/api/sanitizers.py +43 -0
  64. snowflake/cli/api/secure_path.py +362 -0
  65. snowflake/cli/api/secure_utils.py +29 -0
  66. snowflake/cli/api/sql_execution.py +260 -0
  67. snowflake/cli/api/utils/__init__.py +13 -0
  68. snowflake/cli/api/utils/cursor.py +34 -0
  69. snowflake/cli/api/utils/definition_rendering.py +383 -0
  70. snowflake/cli/api/utils/dict_utils.py +73 -0
  71. snowflake/cli/api/utils/error_handling.py +23 -0
  72. snowflake/cli/api/utils/graph.py +97 -0
  73. snowflake/cli/api/utils/models.py +63 -0
  74. snowflake/cli/api/utils/naming_utils.py +13 -0
  75. snowflake/cli/api/utils/path_utils.py +36 -0
  76. snowflake/cli/api/utils/templating_functions.py +144 -0
  77. snowflake/cli/api/utils/types.py +35 -0
  78. snowflake/cli/app/__init__.py +22 -0
  79. snowflake/cli/app/__main__.py +31 -0
  80. snowflake/cli/app/api_impl/__init__.py +13 -0
  81. snowflake/cli/app/api_impl/plugin/__init__.py +13 -0
  82. snowflake/cli/app/api_impl/plugin/plugin_config_provider_impl.py +66 -0
  83. snowflake/cli/app/build_and_push.sh +8 -0
  84. snowflake/cli/app/cli_app.py +243 -0
  85. snowflake/cli/app/commands_registration/__init__.py +33 -0
  86. snowflake/cli/app/commands_registration/builtin_plugins.py +54 -0
  87. snowflake/cli/app/commands_registration/command_plugins_loader.py +169 -0
  88. snowflake/cli/app/commands_registration/commands_registration_with_callbacks.py +105 -0
  89. snowflake/cli/app/commands_registration/exception_logging.py +26 -0
  90. snowflake/cli/app/commands_registration/threadsafe.py +48 -0
  91. snowflake/cli/app/commands_registration/typer_registration.py +153 -0
  92. snowflake/cli/app/constants.py +19 -0
  93. snowflake/cli/app/dev/__init__.py +13 -0
  94. snowflake/cli/app/dev/commands_structure.py +48 -0
  95. snowflake/cli/app/dev/docs/__init__.py +13 -0
  96. snowflake/cli/app/dev/docs/commands_docs_generator.py +100 -0
  97. snowflake/cli/app/dev/docs/generator.py +35 -0
  98. snowflake/cli/app/dev/docs/project_definition_docs_generator.py +58 -0
  99. snowflake/cli/app/dev/docs/project_definition_generate_json_schema.py +227 -0
  100. snowflake/cli/app/dev/docs/template_utils.py +23 -0
  101. snowflake/cli/app/dev/docs/templates/definition_description.rst.jinja2 +38 -0
  102. snowflake/cli/app/dev/docs/templates/overview.rst.jinja2 +9 -0
  103. snowflake/cli/app/dev/docs/templates/usage.rst.jinja2 +57 -0
  104. snowflake/cli/app/dev/pycharm_remote_debug.py +46 -0
  105. snowflake/cli/app/loggers.py +199 -0
  106. snowflake/cli/app/main_typer.py +62 -0
  107. snowflake/cli/app/printing.py +181 -0
  108. snowflake/cli/app/snow_connector.py +243 -0
  109. snowflake/cli/app/telemetry.py +189 -0
  110. snowflake/cli/plugins/__init__.py +13 -0
  111. snowflake/cli/plugins/connection/__init__.py +13 -0
  112. snowflake/cli/plugins/connection/commands.py +330 -0
  113. snowflake/cli/plugins/connection/plugin_spec.py +30 -0
  114. snowflake/cli/plugins/connection/util.py +179 -0
  115. snowflake/cli/plugins/cortex/__init__.py +13 -0
  116. snowflake/cli/plugins/cortex/commands.py +327 -0
  117. snowflake/cli/plugins/cortex/constants.py +17 -0
  118. snowflake/cli/plugins/cortex/manager.py +189 -0
  119. snowflake/cli/plugins/cortex/plugin_spec.py +30 -0
  120. snowflake/cli/plugins/cortex/types.py +22 -0
  121. snowflake/cli/plugins/git/__init__.py +13 -0
  122. snowflake/cli/plugins/git/commands.py +354 -0
  123. snowflake/cli/plugins/git/manager.py +105 -0
  124. snowflake/cli/plugins/git/plugin_spec.py +30 -0
  125. snowflake/cli/plugins/init/__init__.py +13 -0
  126. snowflake/cli/plugins/init/commands.py +248 -0
  127. snowflake/cli/plugins/init/plugin_spec.py +30 -0
  128. snowflake/cli/plugins/nativeapp/__init__.py +13 -0
  129. snowflake/cli/plugins/nativeapp/artifacts.py +742 -0
  130. snowflake/cli/plugins/nativeapp/codegen/__init__.py +13 -0
  131. snowflake/cli/plugins/nativeapp/codegen/artifact_processor.py +91 -0
  132. snowflake/cli/plugins/nativeapp/codegen/compiler.py +130 -0
  133. snowflake/cli/plugins/nativeapp/codegen/sandbox.py +306 -0
  134. snowflake/cli/plugins/nativeapp/codegen/setup/native_app_setup_processor.py +172 -0
  135. snowflake/cli/plugins/nativeapp/codegen/setup/setup_driver.py.source +56 -0
  136. snowflake/cli/plugins/nativeapp/codegen/snowpark/callback_source.py.jinja +181 -0
  137. snowflake/cli/plugins/nativeapp/codegen/snowpark/extension_function_utils.py +217 -0
  138. snowflake/cli/plugins/nativeapp/codegen/snowpark/models.py +61 -0
  139. snowflake/cli/plugins/nativeapp/codegen/snowpark/python_processor.py +528 -0
  140. snowflake/cli/plugins/nativeapp/commands.py +439 -0
  141. snowflake/cli/plugins/nativeapp/common_flags.py +44 -0
  142. snowflake/cli/plugins/nativeapp/constants.py +27 -0
  143. snowflake/cli/plugins/nativeapp/exceptions.py +122 -0
  144. snowflake/cli/plugins/nativeapp/feature_flags.py +24 -0
  145. snowflake/cli/plugins/nativeapp/init.py +345 -0
  146. snowflake/cli/plugins/nativeapp/manager.py +823 -0
  147. snowflake/cli/plugins/nativeapp/plugin_spec.py +30 -0
  148. snowflake/cli/plugins/nativeapp/policy.py +50 -0
  149. snowflake/cli/plugins/nativeapp/project_model.py +195 -0
  150. snowflake/cli/plugins/nativeapp/run_processor.py +389 -0
  151. snowflake/cli/plugins/nativeapp/teardown_processor.py +301 -0
  152. snowflake/cli/plugins/nativeapp/utils.py +98 -0
  153. snowflake/cli/plugins/nativeapp/v2_conversions/v2_to_v1_decorator.py +135 -0
  154. snowflake/cli/plugins/nativeapp/version/__init__.py +13 -0
  155. snowflake/cli/plugins/nativeapp/version/commands.py +170 -0
  156. snowflake/cli/plugins/nativeapp/version/version_processor.py +362 -0
  157. snowflake/cli/plugins/notebook/__init__.py +13 -0
  158. snowflake/cli/plugins/notebook/commands.py +85 -0
  159. snowflake/cli/plugins/notebook/exceptions.py +20 -0
  160. snowflake/cli/plugins/notebook/manager.py +71 -0
  161. snowflake/cli/plugins/notebook/plugin_spec.py +30 -0
  162. snowflake/cli/plugins/notebook/types.py +15 -0
  163. snowflake/cli/plugins/object/__init__.py +13 -0
  164. snowflake/cli/plugins/object/command_aliases.py +95 -0
  165. snowflake/cli/plugins/object/commands.py +181 -0
  166. snowflake/cli/plugins/object/common.py +85 -0
  167. snowflake/cli/plugins/object/manager.py +97 -0
  168. snowflake/cli/plugins/object/plugin_spec.py +30 -0
  169. snowflake/cli/plugins/object_stage_deprecated/__init__.py +15 -0
  170. snowflake/cli/plugins/object_stage_deprecated/commands.py +122 -0
  171. snowflake/cli/plugins/object_stage_deprecated/plugin_spec.py +32 -0
  172. snowflake/cli/plugins/snowpark/__init__.py +13 -0
  173. snowflake/cli/plugins/snowpark/commands.py +546 -0
  174. snowflake/cli/plugins/snowpark/common.py +307 -0
  175. snowflake/cli/plugins/snowpark/manager.py +109 -0
  176. snowflake/cli/plugins/snowpark/models.py +157 -0
  177. snowflake/cli/plugins/snowpark/package/__init__.py +13 -0
  178. snowflake/cli/plugins/snowpark/package/anaconda_packages.py +233 -0
  179. snowflake/cli/plugins/snowpark/package/commands.py +256 -0
  180. snowflake/cli/plugins/snowpark/package/manager.py +44 -0
  181. snowflake/cli/plugins/snowpark/package/utils.py +26 -0
  182. snowflake/cli/plugins/snowpark/package_utils.py +354 -0
  183. snowflake/cli/plugins/snowpark/plugin_spec.py +30 -0
  184. snowflake/cli/plugins/snowpark/snowpark_package_paths.py +65 -0
  185. snowflake/cli/plugins/snowpark/snowpark_shared.py +95 -0
  186. snowflake/cli/plugins/snowpark/zipper.py +81 -0
  187. snowflake/cli/plugins/spcs/__init__.py +35 -0
  188. snowflake/cli/plugins/spcs/common.py +99 -0
  189. snowflake/cli/plugins/spcs/compute_pool/__init__.py +13 -0
  190. snowflake/cli/plugins/spcs/compute_pool/commands.py +241 -0
  191. snowflake/cli/plugins/spcs/compute_pool/manager.py +121 -0
  192. snowflake/cli/plugins/spcs/image_registry/__init__.py +13 -0
  193. snowflake/cli/plugins/spcs/image_registry/commands.py +65 -0
  194. snowflake/cli/plugins/spcs/image_registry/manager.py +105 -0
  195. snowflake/cli/plugins/spcs/image_repository/__init__.py +13 -0
  196. snowflake/cli/plugins/spcs/image_repository/commands.py +202 -0
  197. snowflake/cli/plugins/spcs/image_repository/manager.py +84 -0
  198. snowflake/cli/plugins/spcs/jobs/__init__.py +13 -0
  199. snowflake/cli/plugins/spcs/jobs/commands.py +78 -0
  200. snowflake/cli/plugins/spcs/jobs/manager.py +53 -0
  201. snowflake/cli/plugins/spcs/plugin_spec.py +30 -0
  202. snowflake/cli/plugins/spcs/services/__init__.py +13 -0
  203. snowflake/cli/plugins/spcs/services/commands.py +312 -0
  204. snowflake/cli/plugins/spcs/services/manager.py +170 -0
  205. snowflake/cli/plugins/sql/__init__.py +13 -0
  206. snowflake/cli/plugins/sql/commands.py +83 -0
  207. snowflake/cli/plugins/sql/manager.py +92 -0
  208. snowflake/cli/plugins/sql/plugin_spec.py +30 -0
  209. snowflake/cli/plugins/sql/snowsql_templating.py +28 -0
  210. snowflake/cli/plugins/stage/__init__.py +13 -0
  211. snowflake/cli/plugins/stage/commands.py +263 -0
  212. snowflake/cli/plugins/stage/diff.py +326 -0
  213. snowflake/cli/plugins/stage/manager.py +577 -0
  214. snowflake/cli/plugins/stage/md5.py +160 -0
  215. snowflake/cli/plugins/stage/plugin_spec.py +30 -0
  216. snowflake/cli/plugins/streamlit/__init__.py +13 -0
  217. snowflake/cli/plugins/streamlit/commands.py +179 -0
  218. snowflake/cli/plugins/streamlit/manager.py +222 -0
  219. snowflake/cli/plugins/streamlit/plugin_spec.py +30 -0
  220. snowflake/cli/plugins/workspace/__init__.py +13 -0
  221. snowflake/cli/plugins/workspace/commands.py +35 -0
  222. snowflake/cli/plugins/workspace/plugin_spec.py +30 -0
  223. snowflake/cli/templates/default_snowpark/.gitignore +4 -0
  224. snowflake/cli/templates/default_snowpark/app/__init__.py +0 -0
  225. snowflake/cli/templates/default_snowpark/app/common.py +2 -0
  226. snowflake/cli/templates/default_snowpark/app/functions.py +15 -0
  227. snowflake/cli/templates/default_snowpark/app/procedures.py +22 -0
  228. snowflake/cli/templates/default_snowpark/requirements.txt +1 -0
  229. snowflake/cli/templates/default_snowpark/snowflake.yml +23 -0
  230. snowflake/cli/templates/default_streamlit/.gitignore +4 -0
  231. snowflake/cli/templates/default_streamlit/common/hello.py +2 -0
  232. snowflake/cli/templates/default_streamlit/environment.yml +6 -0
  233. snowflake/cli/templates/default_streamlit/pages/my_page.py +3 -0
  234. snowflake/cli/templates/default_streamlit/snowflake.yml +10 -0
  235. snowflake/cli/templates/default_streamlit/streamlit_app.py +4 -0
  236. snowflake_cli-2.8.2.dist-info/METADATA +325 -0
  237. snowflake_cli-2.8.2.dist-info/RECORD +240 -0
  238. snowflake_cli-2.8.2.dist-info/WHEEL +4 -0
  239. snowflake_cli-2.8.2.dist-info/entry_points.txt +2 -0
  240. snowflake_cli-2.8.2.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,240 @@
1
+ snowflake/cli/__about__.py,sha256=tLfis8daBjwhgCEEq38W64cJMPAyqoT4fTN8y79HG5U,633
2
+ snowflake/cli/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
3
+ snowflake/cli/api/__init__.py,sha256=kD6lYv5et7QJvW7vzvLN9p2ibfD7pjh9KRWsp2QoYqo,1330
4
+ snowflake/cli/api/cli_global_context.py,sha256=gAs7snaqRi5ESaxU8HcC_QBR2q9y1PMdhi7kQCGkICs,11714
5
+ snowflake/cli/api/config.py,sha256=-CmOMU14fEgI3oba00WU27RiwG46yc1UkgcI6Rdoxew,10993
6
+ snowflake/cli/api/constants.py,sha256=nVcX-NNZBFUIDX3Gbgm_YKjzv8tgcd1JdYvicV-nL_A,2964
7
+ snowflake/cli/api/errno.py,sha256=IvotDJv_m_lz4tf5es0q7qRSdzCxv3zd2X2bQP6KsNU,1015
8
+ snowflake/cli/api/exceptions.py,sha256=syNz7HdRVs3hAVC2NUaQINlSo-Ge-WEceuFvLoau2eQ,5118
9
+ snowflake/cli/api/feature_flags.py,sha256=BJ_QywyZ9yfDDMf1NzG7Ju8OmuMSoMbkMVQd_Fj3Gaw,1700
10
+ snowflake/cli/api/identifiers.py,sha256=eeWWLsowHm-AjYbwQMbW2Yt56waGcH1drYyYLVhsfps,5688
11
+ snowflake/cli/api/rest_api.py,sha256=X2hYq-J2mZJmVIEeCUvdk8ccTiV86ltVlj9ac5ZmIak,6070
12
+ snowflake/cli/api/sanitizers.py,sha256=7EKqVQ3KOob0IFFoc_GmXPYpRhgnmIqhnJSvHPgxM5I,1211
13
+ snowflake/cli/api/secure_path.py,sha256=-H2UD1ERc31cCoXyKVQDT0EzjRRLunuOBTfVA49-wc8,13058
14
+ snowflake/cli/api/secure_utils.py,sha256=7fBLtlckmKMPaPRgXfb9XN66tXLX5GdnWw8dL2ZmNKw,1102
15
+ snowflake/cli/api/sql_execution.py,sha256=n9J8X0R2_iiA_iv-0FmC_TqEOZoADS77lIvW3hAaZiI,10067
16
+ snowflake/cli/api/commands/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
17
+ snowflake/cli/api/commands/alias.py,sha256=TF6QgkorFTn9UV5F3tvxIJZ56iK1vIjqZFMxVtrTIzk,795
18
+ snowflake/cli/api/commands/decorators.py,sha256=snWpfBBfQtcr2IZP6-nUJS8u2dQeSNGQDTknm5rm0bc,10216
19
+ snowflake/cli/api/commands/execution_metadata.py,sha256=9tz1dbzdVRLFprGi_y8TeTfv36VewFeGdhQX6NfwAXM,1231
20
+ snowflake/cli/api/commands/experimental_behaviour.py,sha256=tUcx54hRcilkr1xX2Ycg6MmF-bdtPQOQBQF-MWNKXpc,724
21
+ snowflake/cli/api/commands/flags.py,sha256=cfFVeRtMIyfy2enbqGcquxxtTFa4HxZ8mfUxKhbBZko,22110
22
+ snowflake/cli/api/commands/project_initialisation.py,sha256=O6m7l-ArbpCYacQe8xVMYxGs4OuXhHw8aHz8itVh9kQ,2150
23
+ snowflake/cli/api/commands/snow_typer.py,sha256=okAONDnPZPaIBVA1kGoIuifNvnl0ZgbD_nbMhmIXrOo,8302
24
+ snowflake/cli/api/commands/typer_pre_execute.py,sha256=O9rBF1Gz6FsjwAI-CNOKOcwOqFlkPnRBWsDLmx7WaCg,941
25
+ snowflake/cli/api/console/__init__.py,sha256=jKSsXJDqyQZwJ--5eRzUqb2nNvq-lo_NC1pbqK5xROI,665
26
+ snowflake/cli/api/console/abc.py,sha256=AwKmO9bms1a1WYK6uHnzXvu5qYOPreQB3l9WdV4a1WY,2875
27
+ snowflake/cli/api/console/console.py,sha256=t5p4RTZHFXxofc7Xw1v5HjaNc0n1CXUF8Ox1Z1bRTNc,4573
28
+ snowflake/cli/api/console/enum.py,sha256=4JyaGjtOqlSsHx2ovgJ9I83KqlWJ9GLhUFTUicSa8RQ,666
29
+ snowflake/cli/api/output/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
30
+ snowflake/cli/api/output/formats.py,sha256=L1As7qBQSZ7elG6Y8vRqFpljpjJgRr6fjIu6re5r0MM,667
31
+ snowflake/cli/api/output/types.py,sha256=pzBlAr_ubLk810ii35t3hDUn1QsOFLg2yKyVkuYvA5o,3281
32
+ snowflake/cli/api/plugins/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
33
+ snowflake/cli/api/plugins/plugin_config.py,sha256=oJB3HvVqw7R-MDh5jGJtL84ABOATsFG4f1Gqn2AtX7U,997
34
+ snowflake/cli/api/plugins/command/__init__.py,sha256=qCzBzpq8__2OUN0PcruIKgQXI2V9rzk4UIGVLFv7yk4,2134
35
+ snowflake/cli/api/plugins/command/plugin_hook_specs.py,sha256=AHJGk6j3NRzalIe4llM3Mt0-opHui1sLdbILoEMhpuA,714
36
+ snowflake/cli/api/project/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
37
+ snowflake/cli/api/project/definition.py,sha256=12R3Z59bp0y0E1eQC2E1VFxRx3HwsFzk4p9nlkW0csk,2987
38
+ snowflake/cli/api/project/definition_manager.py,sha256=h1ympKIZ9TB5a-WgEro4gm8BjqpHxAeCwXVppV26x0Y,4645
39
+ snowflake/cli/api/project/errors.py,sha256=9TGN2ezqSCHmSGy1U7AByaJm5Xf47zN-7N3i6R6fyBg,2136
40
+ snowflake/cli/api/project/project_verification.py,sha256=l3K6SMDJxpys9xhnwxBhd6BDyQVqqUItsf4FKAp8NtA,951
41
+ snowflake/cli/api/project/util.py,sha256=wung3PYl3_32RO-R2Qu7SGFnYWpIxqE6bltJFyoWnfc,8678
42
+ snowflake/cli/api/project/schemas/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
43
+ snowflake/cli/api/project/schemas/identifier_model.py,sha256=mwfogq6iLOwRhfwKOWtwvJIDnAP2JjZD6tT4Dgpxwto,1859
44
+ snowflake/cli/api/project/schemas/project_definition.py,sha256=cZ4Glr5RvIo-j4ibx9yp1ETJCkJA0FmOFS2g7IFaOs4,7356
45
+ snowflake/cli/api/project/schemas/template.py,sha256=w8cJt6VcMmMJgKO6rv31cTBDQZuSsaMVOOfeBZMF56k,3019
46
+ snowflake/cli/api/project/schemas/updatable_model.py,sha256=6Eos3XJX0vUha0e2JM_RSPHBzAUMOg19TpGf6dy-ktc,7262
47
+ snowflake/cli/api/project/schemas/entities/application_entity.py,sha256=xyGHRpq8qmmJr2CO4dVI2V_QbMvHRHzbAL6NSQlp4so,1526
48
+ snowflake/cli/api/project/schemas/entities/application_package_entity.py,sha256=U4HJ5rSLbb13K3g4bRJpSK1DBLYFEzW-X_AE-TTRtB4,2677
49
+ snowflake/cli/api/project/schemas/entities/common.py,sha256=p0J7UcP8-3VV8rUn_0vXj_Kow3RUA7sTfgYcbXBrQwA,2317
50
+ snowflake/cli/api/project/schemas/entities/entities.py,sha256=kZ7PwcQXuFzLsV3bh8IYy1LEMbSb9o3a9401wrCs6XE,1028
51
+ snowflake/cli/api/project/schemas/native_app/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
52
+ snowflake/cli/api/project/schemas/native_app/application.py,sha256=VK8zwIn5rV5-A3N0yEt7QppMDJdihiAYdFn7xBqNw_A,2238
53
+ snowflake/cli/api/project/schemas/native_app/native_app.py,sha256=o88owmn-bO1BLEVhg6fWAdVAXNbedbZ45VtG5ZJ9r14,3597
54
+ snowflake/cli/api/project/schemas/native_app/package.py,sha256=5STLsv_iEavuzHWkDuaCU6e5_IXhWY_Njcg7phUqZXw,3059
55
+ snowflake/cli/api/project/schemas/native_app/path_mapping.py,sha256=pHtjGsO2Zv_qn9JwrVQX_sB2U0C_Tz6uGWya0xNC6cc,2547
56
+ snowflake/cli/api/project/schemas/snowpark/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
57
+ snowflake/cli/api/project/schemas/snowpark/argument.py,sha256=SGJCTr9kIq91G4n3zetI4pkV1cMZRtNMDVMcZDpogHQ,1054
58
+ snowflake/cli/api/project/schemas/snowpark/callable.py,sha256=cV1M1OI7uZt87dGzZ5XI-o6fJp77xCWIZZNZLcmVLRQ,2762
59
+ snowflake/cli/api/project/schemas/snowpark/snowpark.py,sha256=C4IuWdiPcTcg7RIx1sQuPKzVoMT9yizxgtcRsHcaHFY,1378
60
+ snowflake/cli/api/project/schemas/streamlit/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
61
+ snowflake/cli/api/project/schemas/streamlit/streamlit.py,sha256=VXOYFJPwO8e3NaPBkcWhCaPGof18XH4TYKEMaqu2UYQ,1873
62
+ snowflake/cli/api/rendering/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
63
+ snowflake/cli/api/rendering/jinja.py,sha256=dD7XAsufZiUsUMKhBNVK9iaWzkeBJTf2z9oWKUDRuI8,3529
64
+ snowflake/cli/api/rendering/project_definition_templates.py,sha256=JvuLohNu8wA97th6o8H_qoS9X6qyLbGg0QDnY9Tq68s,1353
65
+ snowflake/cli/api/rendering/project_templates.py,sha256=zRh863Gn2hYli9uUu1eXQ_gZsMDUCCg5N44kcPXcSSg,3474
66
+ snowflake/cli/api/rendering/sql_templates.py,sha256=cEFufR-lF7IoOSmhxbFcpPYVx31dX2ftLTFxhTL6jYY,2068
67
+ snowflake/cli/api/utils/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
68
+ snowflake/cli/api/utils/cursor.py,sha256=JlyUG5b4EXii71Dm7qiTdptjwIsOOmEv2QmZA1cY8NQ,1222
69
+ snowflake/cli/api/utils/definition_rendering.py,sha256=aUxBtNGJnv79PzfhrV-G8Rmm86OTDSMT-eBjVEstHko,14769
70
+ snowflake/cli/api/utils/dict_utils.py,sha256=8vb9EyiT8gNHCtPNfE1S-0WcWdP6G_kiwJ-aizu3Pzs,2799
71
+ snowflake/cli/api/utils/error_handling.py,sha256=etIGdS8kd9APgyeUecnY2XMivDORSRV8q-WuBtpriZY,708
72
+ snowflake/cli/api/utils/graph.py,sha256=XZgcTySyS1je9ARdPWqJyrfzuqFBNt9SSLnGeE2na8M,3045
73
+ snowflake/cli/api/utils/models.py,sha256=KD4Q402_6iNKsV9CTulzuDrlJbEGu8quAlmZNQuieE4,2016
74
+ snowflake/cli/api/utils/naming_utils.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
75
+ snowflake/cli/api/utils/path_utils.py,sha256=ru0jgw6Ur5zhqpHhj_eAqcaJdrgEgr3bC7Z02FnQV18,1218
76
+ snowflake/cli/api/utils/templating_functions.py,sha256=DlmpGAEY6OBArtIap6kN1aaILPwx2ynqKflPwjj7BbU,4935
77
+ snowflake/cli/api/utils/types.py,sha256=fVKuls8axKSsBzPqWwrkwkwoXXmedqxNJKqfXrrGyBM,1190
78
+ snowflake/cli/app/__init__.py,sha256=CR_uTgoqHnU1XdyRhm5iQsS86yWXGVx5Ht7aGSDNFmc,765
79
+ snowflake/cli/app/__main__.py,sha256=KrWQBN5trQZUBqC9nQLeQDq134JLkFC0AfmDxRD3U38,833
80
+ snowflake/cli/app/build_and_push.sh,sha256=TmZu-YgjBr_ngna72S1Hs6zYTxMuPNJ-649weouFTW8,561
81
+ snowflake/cli/app/cli_app.py,sha256=culZ_65q5eFKR35ScLRNh1z-TbPtJ0-CMVjPjd_ChLs,8149
82
+ snowflake/cli/app/constants.py,sha256=WCqViioXdOt0Cykf-KK42cBLfqHKTfYobMJJ-AC7kSs,698
83
+ snowflake/cli/app/loggers.py,sha256=anPJsFA4H8qV928LTxU_sQ5Ci8MWphFb14GSSBly-XA,6638
84
+ snowflake/cli/app/main_typer.py,sha256=4VQqUCxTGHrc21I2nt-Lel6_T_NS8uwkuAntHjrkx3w,2101
85
+ snowflake/cli/app/printing.py,sha256=0zvgMT1NyofzueO-pGduslx43yzj2hdlGV2BGQZhwo0,5810
86
+ snowflake/cli/app/snow_connector.py,sha256=YSeeuiyUBuh4y9wp3QSsNnyo1r_5x0VyNCOo9Y0CV38,8815
87
+ snowflake/cli/app/telemetry.py,sha256=KrOWU_sfYccIX9WBxYwb3WQL7jE5lDMoBjELSyLOU1I,6385
88
+ snowflake/cli/app/api_impl/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
89
+ snowflake/cli/app/api_impl/plugin/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
90
+ snowflake/cli/app/api_impl/plugin/plugin_config_provider_impl.py,sha256=QzLbj1eUVdQstrHSitozhgN94r0EHBH6KnzEAReY3Es,2427
91
+ snowflake/cli/app/commands_registration/__init__.py,sha256=HhP1c8GDRqUtZMeYVNuYwc1_524q9jH18bxJJk1JKWU,918
92
+ snowflake/cli/app/commands_registration/builtin_plugins.py,sha256=zNOhh93wJ2oHvYIdWRU4GaTbwbB8itEDynRAtUHtvpA,2423
93
+ snowflake/cli/app/commands_registration/command_plugins_loader.py,sha256=UuIQnGjoa0wKX8349iMZ0aGFhUDoe_lMUxPQi5kA1dw,6264
94
+ snowflake/cli/app/commands_registration/commands_registration_with_callbacks.py,sha256=yQFawQ9l9zrVYRrOQ3dwSklfBWztXV7zRnLohzEEpsU,4309
95
+ snowflake/cli/app/commands_registration/exception_logging.py,sha256=S2I9r2m-p1fr--xz0tGs3Q5mMnr1MSxHvzdRpFaY2GU,975
96
+ snowflake/cli/app/commands_registration/threadsafe.py,sha256=tIVav38b7F_ctOz-MiZr8TPQyWgu-Al5448-0HTlozw,1420
97
+ snowflake/cli/app/commands_registration/typer_registration.py,sha256=2KkMZYrlOF5LWNWae1nJZajQMo1lErOvRdDsu4dmgnE,6164
98
+ snowflake/cli/app/dev/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
99
+ snowflake/cli/app/dev/commands_structure.py,sha256=PrCgyIIkPyNC4OH1TKI0SxCAvWkYaMKy73DMKrdrmLY,1553
100
+ snowflake/cli/app/dev/pycharm_remote_debug.py,sha256=pOlqjcCmo_3PkIuwJUPzGI6wRO1eu7ce1uYjIJboqZg,1520
101
+ snowflake/cli/app/dev/docs/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
102
+ snowflake/cli/app/dev/docs/commands_docs_generator.py,sha256=LpgI0hRhHhV15lBHeYe6Apphd-IcSIJLaYYfnASIE4k,3302
103
+ snowflake/cli/app/dev/docs/generator.py,sha256=zICwemVib8vconHbG3vMRkbMuFMI_sjgniJIFn2wAMM,1258
104
+ snowflake/cli/app/dev/docs/project_definition_docs_generator.py,sha256=q0HjdjwR0LJ_PrfmUFPWlk9MaBFeBJbwJ6Ga0qSvRrY,2230
105
+ snowflake/cli/app/dev/docs/project_definition_generate_json_schema.py,sha256=nKPLBzcOZvSiTmQPkrxJQ6wpclELMenZvjjdM7ZOsfQ,8456
106
+ snowflake/cli/app/dev/docs/template_utils.py,sha256=pisHTJRRzt1HxpUfIY3ysAN7EdXCXzS6GhZo5bzwcy0,821
107
+ snowflake/cli/app/dev/docs/templates/definition_description.rst.jinja2,sha256=h-SBNi8bc3uh7VQEdrDDzOJckT5DBLrZddrrNRWFXl0,1068
108
+ snowflake/cli/app/dev/docs/templates/overview.rst.jinja2,sha256=FO4HljkNnG33gliz_Gr_7l43pkaK4LmxVDk5n04UPQU,452
109
+ snowflake/cli/app/dev/docs/templates/usage.rst.jinja2,sha256=iQIcaX0ZPLc4lJRRbFxmHSkuFHIC7gOzQVfv800w4rM,2018
110
+ snowflake/cli/plugins/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
111
+ snowflake/cli/plugins/connection/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
112
+ snowflake/cli/plugins/connection/commands.py,sha256=2YCr2gJzZJGR4192lfQSWWValslXAC28tA08Ps9sY3g,9723
113
+ snowflake/cli/plugins/connection/plugin_spec.py,sha256=CyVfzPV-5WJ60vVqO8Z2ULbe_tjDJh03v9HGZW3M0Hc,998
114
+ snowflake/cli/plugins/connection/util.py,sha256=2X8aCsfWmb1HTZdljSGNQxB3AwwuBcWf4jHmdZUeoFA,6166
115
+ snowflake/cli/plugins/cortex/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
116
+ snowflake/cli/plugins/cortex/commands.py,sha256=zxWOhQogkZP-QNli2d195IznJsE4kW9xHWVpHcCcu4A,10586
117
+ snowflake/cli/plugins/cortex/constants.py,sha256=P0PD3h9T2LRtyIzCB1kRI5cXgRFR0Vrph1ZOxJMuFYA,682
118
+ snowflake/cli/plugins/cortex/manager.py,sha256=i9LJxI2VWp2wj0t6lX41yKSuFGYmhMyE4v77BH3npx0,6416
119
+ snowflake/cli/plugins/cortex/plugin_spec.py,sha256=i-zovu-K27p9kGHU4m9aNlEshRNVnBibQT3dksc6XAo,994
120
+ snowflake/cli/plugins/cortex/types.py,sha256=9KQPlQRkoR67ty8VoqsifJfaoeLJPXZzCJ6dehYWYLE,827
121
+ snowflake/cli/plugins/git/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
122
+ snowflake/cli/plugins/git/commands.py,sha256=TZCKwL2g46VFq96ZagZm8yUj4PdP3Yv7SvUVk6ib86o,11176
123
+ snowflake/cli/plugins/git/manager.py,sha256=oPyV2RETHed3a9FjFOJHyKC30SmhRd26og9QbpIfGnw,3887
124
+ snowflake/cli/plugins/git/plugin_spec.py,sha256=RgGZ744MYXfBMnR1-f11c9_n5XoH7GaIsPocrazq52A,991
125
+ snowflake/cli/plugins/init/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
126
+ snowflake/cli/plugins/init/commands.py,sha256=5-mCs7iABKyJby1Yfim8ei6z9NzyA5sfu2bySxRXoxo,8863
127
+ snowflake/cli/plugins/init/plugin_spec.py,sha256=uxglpV4GxY_hysq5fit_XR8JWLGkA8sClEN0bAU5OwU,993
128
+ snowflake/cli/plugins/nativeapp/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
129
+ snowflake/cli/plugins/nativeapp/artifacts.py,sha256=otpxa6YFWJs1W1KDzo1agAyvq5YqAR3YoLjJJhm1CLs,30178
130
+ snowflake/cli/plugins/nativeapp/commands.py,sha256=e0JIWSeCRD5H33UBydlmXmIxNHnA2UakxnSbwNRS9sc,15551
131
+ snowflake/cli/plugins/nativeapp/common_flags.py,sha256=7OUXprC2n3B0a9gGTj4AezHaJyt8-C7vgRI5q9l-UXE,1610
132
+ snowflake/cli/plugins/nativeapp/constants.py,sha256=j25fS9dS54GPPp41njUOZTDykhYq12PY67B084FLCZk,956
133
+ snowflake/cli/plugins/nativeapp/exceptions.py,sha256=Wh-qJlAG9UMdWB0lqAVafbBdA_hj_m7UnI4efLjOgUA,4360
134
+ snowflake/cli/plugins/nativeapp/feature_flags.py,sha256=Y1peJF8ju_lybKjklOvXYsGQMN8VhFoLnoq-Z7oqO-E,829
135
+ snowflake/cli/plugins/nativeapp/init.py,sha256=BX0rDIJem5bJn0-0s5Ha3BSJIX82ZWJLsDiJvuQSsAA,12124
136
+ snowflake/cli/plugins/nativeapp/manager.py,sha256=Xel0eAhs65FQBGWT-3eKI5Zi33qioXoAWKX3tu34j9s,31023
137
+ snowflake/cli/plugins/nativeapp/plugin_spec.py,sha256=CWpkkQlCjY7kO-JLFdAx6UtUo4FZ2soJXcxjUAnUflM,997
138
+ snowflake/cli/plugins/nativeapp/policy.py,sha256=yND6QTJUtbuREdT9I2fzFI4-XFd7zbNgWKlvoFICwko,1605
139
+ snowflake/cli/plugins/nativeapp/project_model.py,sha256=uLVLEbefN_vV0TbsYJWTOQD-YO2_-scJzxS69aE1RHo,6774
140
+ snowflake/cli/plugins/nativeapp/run_processor.py,sha256=IcKySZVaUhMB0A3EYVGuhy9SkWJlK0DUMNHP9jmiG0s,16047
141
+ snowflake/cli/plugins/nativeapp/teardown_processor.py,sha256=v8Fx4omsCV-OgQWawrq8eYUcOCjaFfv6L_-JoDwcXTg,13053
142
+ snowflake/cli/plugins/nativeapp/utils.py,sha256=dR7xjjHM8LlyE-PVKhQfAi6OKPd1TA9XQxN5EsBamLI,2867
143
+ snowflake/cli/plugins/nativeapp/codegen/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
144
+ snowflake/cli/plugins/nativeapp/codegen/artifact_processor.py,sha256=3NTNyxeSgROFDJMuzt0aF2ZqxFfO9oQTxk8NwQx02v0,2957
145
+ snowflake/cli/plugins/nativeapp/codegen/compiler.py,sha256=H7mAgTPRywPEIve97vWNP5kz3vK6_hstiqZ5vHgoyTk,5321
146
+ snowflake/cli/plugins/nativeapp/codegen/sandbox.py,sha256=ZbbRTIBnxe0rMFQuqXLjqgV8ar-trtaPActfwePT8Pc,11131
147
+ snowflake/cli/plugins/nativeapp/codegen/setup/native_app_setup_processor.py,sha256=_7L5z_xsmhYQDZKHjgtuS8Ji8eb_ese7bAPVFT4qp2Y,6337
148
+ snowflake/cli/plugins/nativeapp/codegen/setup/setup_driver.py.source,sha256=K2hBAG0M_POaQScg8zQ0ktCUlwnxxBEjsLMn-Aucsug,2016
149
+ snowflake/cli/plugins/nativeapp/codegen/snowpark/callback_source.py.jinja,sha256=JiMs2NKhtFFvKotQFU61wpKBAqPAfBthGsdT1aZgY-c,7531
150
+ snowflake/cli/plugins/nativeapp/codegen/snowpark/extension_function_utils.py,sha256=E2bQFVmiC7MdRCWBtWo3BjzcBUr-9BBzwKduWmZdXdw,7626
151
+ snowflake/cli/plugins/nativeapp/codegen/snowpark/models.py,sha256=xPC7Igbyo_A6Su4xWeXNYV421uefMqHpQbwFGG8AprI,2225
152
+ snowflake/cli/plugins/nativeapp/codegen/snowpark/python_processor.py,sha256=71LV70GaTAoHPQ6k-0B8tFBjR1riCpZC51B8U6vSDsA,20037
153
+ snowflake/cli/plugins/nativeapp/v2_conversions/v2_to_v1_decorator.py,sha256=M5yTleZvzlzYCv3JLLiwMrAwrOJVdCwKyfGv7hpm9w4,5535
154
+ snowflake/cli/plugins/nativeapp/version/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
155
+ snowflake/cli/plugins/nativeapp/version/commands.py,sha256=aQ9nxTEtFktyayq2ybNNE5-z87_otZzIiIcY2mSqnfo,5836
156
+ snowflake/cli/plugins/nativeapp/version/version_processor.py,sha256=og1x1akTl_7rsL4B99vsKa_wiUURV48r1carDueDheY,14541
157
+ snowflake/cli/plugins/notebook/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
158
+ snowflake/cli/plugins/notebook/commands.py,sha256=02NkYx4SPCycQ1Se0RIrhW0OocpcwexqNRy9mFSf1vY,2696
159
+ snowflake/cli/plugins/notebook/exceptions.py,sha256=YUS9RRcsEOgQEbikUFpbm8Qo5MYJEB-d-TGZYpMyfwo,782
160
+ snowflake/cli/plugins/notebook/manager.py,sha256=XZB2Cm2-MHkb-VeAqbXAXopM0EhaB0IAlsfBryTomcg,2657
161
+ snowflake/cli/plugins/notebook/plugin_spec.py,sha256=dzmt9GvlDfcFXmM8plhmoQoOtxGSvPtVs9E-odQVjp8,996
162
+ snowflake/cli/plugins/notebook/types.py,sha256=mICCV5_6YkcLOLrCNpJGpmys5UkXp4IX6OoH_JQ1y7Q,603
163
+ snowflake/cli/plugins/object/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
164
+ snowflake/cli/plugins/object/command_aliases.py,sha256=wjaIAEJOQKhKtBvtdiwmvk7b7iEPi-ImlPU7zIky3pQ,3157
165
+ snowflake/cli/plugins/object/commands.py,sha256=KSUPf5oW8pEXkV09nqLgDpQ6YRFDmb8QG_8bDiSGBZQ,5902
166
+ snowflake/cli/plugins/object/common.py,sha256=x1V8fiVnh7ohHHq0_NaGFtUvTz0soVRSGm-oCIuhJHs,2608
167
+ snowflake/cli/plugins/object/manager.py,sha256=3zddL5hr8IBU5yDdCLrj4m1GEeQUF2RARpxmaYvXilA,3940
168
+ snowflake/cli/plugins/object/plugin_spec.py,sha256=nqOiA-qCm2mBGSow4mDvf4A6TKQVwIz5YTGZSxQpr2Q,994
169
+ snowflake/cli/plugins/object_stage_deprecated/__init__.py,sha256=RLQpA97914b74tTgiUft4JM_LvM8zVLWGgDy3Cq2sc8,608
170
+ snowflake/cli/plugins/object_stage_deprecated/commands.py,sha256=_lsUcmu1mYj9HurpLLBpoJspwiEtWbnglXPPTCqGcVk,3835
171
+ snowflake/cli/plugins/object_stage_deprecated/plugin_spec.py,sha256=pYE_GOQjzMStVPW0icAglc4CyvaWnPM2i1_DpNZ5t9M,1025
172
+ snowflake/cli/plugins/snowpark/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
173
+ snowflake/cli/plugins/snowpark/commands.py,sha256=vpdu_fmonoDcqZ5j-J3vodMukocFsdzfPoxPwDq1IWA,19531
174
+ snowflake/cli/plugins/snowpark/common.py,sha256=ROxNEgoQ2sQTQOo1MJNLZQz2DhN4Y1kISq-CvQLsSvk,10214
175
+ snowflake/cli/plugins/snowpark/manager.py,sha256=JIqZlr63iSKel4iePSuP5IVq2Izj-hlu9bT-nNkyIx4,3128
176
+ snowflake/cli/plugins/snowpark/models.py,sha256=wUsU1RbSA40gGOo4nh9iHHjzyQZj7AgawdD2W1kikoU,4858
177
+ snowflake/cli/plugins/snowpark/package_utils.py,sha256=jvpxXpCzhZL0IHXR-N27mM5gfhSvzMLtugbKOEpoVPo,12280
178
+ snowflake/cli/plugins/snowpark/plugin_spec.py,sha256=dsDSbtTIkp_XY1P_ILTwsRbeowl6ri5fP_IX2RC-TTg,996
179
+ snowflake/cli/plugins/snowpark/snowpark_package_paths.py,sha256=flsuGd0ffW3IAMOdiHemm4Xj6WJmDgTqAH0kR0fmK9s,2644
180
+ snowflake/cli/plugins/snowpark/snowpark_shared.py,sha256=zpR268AVwqYT3PZMcXpI_r8-CnJNzO50QMdwgPp9v7g,3088
181
+ snowflake/cli/plugins/snowpark/zipper.py,sha256=8NogUT5qNwseIXaA5FpKWy0GiLxn5Gs1D6zr569pf8c,2267
182
+ snowflake/cli/plugins/snowpark/package/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
183
+ snowflake/cli/plugins/snowpark/package/anaconda_packages.py,sha256=ffgU2KDYJk8yTvioqEt86SaiRq3fllxLIkWjhIEwGfs,9319
184
+ snowflake/cli/plugins/snowpark/package/commands.py,sha256=gjxw99ZSfinyRWyxOB2lWDe3VplPiwYlw6at83a1G3w,9113
185
+ snowflake/cli/plugins/snowpark/package/manager.py,sha256=EcDluNyBT9zHyjQ-1L2WF26Vr1kGUXRnKAYGnymcFiQ,1629
186
+ snowflake/cli/plugins/snowpark/package/utils.py,sha256=NEvKsK_kxKt_38GVOoiq8Mq4Aq6A67rrdf1tGdP6mK8,1012
187
+ snowflake/cli/plugins/spcs/__init__.py,sha256=SG6JKlGzZBiWBYQ66LNLYtrDNXg8ze_CO7UqFx6nmDc,1381
188
+ snowflake/cli/plugins/spcs/common.py,sha256=jWFneO8j8fyJi7XkBomAhEiFLRrpXiQPmKW5Gyfkf84,3135
189
+ snowflake/cli/plugins/spcs/plugin_spec.py,sha256=sv0ubkGrSMDWREXunlc89l2KAFEAWONNh9XKa2RdRcc,978
190
+ snowflake/cli/plugins/spcs/compute_pool/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
191
+ snowflake/cli/plugins/spcs/compute_pool/commands.py,sha256=GA4Kvo1OY-SHefHAiQLNt1VAqGGFrDZWc_0zapkKFyM,7860
192
+ snowflake/cli/plugins/spcs/compute_pool/manager.py,sha256=wHpaAF4tPSroL6Hz_JSbzDFFCu6f3PxL7tWM2HDHqOU,4684
193
+ snowflake/cli/plugins/spcs/image_registry/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
194
+ snowflake/cli/plugins/spcs/image_registry/commands.py,sha256=WIP5PfahaFmeJwW_SNY7WbEwL60VmDMyEbxnrfNY5ps,2424
195
+ snowflake/cli/plugins/spcs/image_registry/manager.py,sha256=9qQ9KF6O3Zs0i4o4McSDUSSm0AXsv9cSBW5caJIsWq4,3979
196
+ snowflake/cli/plugins/spcs/image_repository/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
197
+ snowflake/cli/plugins/spcs/image_repository/commands.py,sha256=jhm_HPdFSYHUvdXTcKkgl80O6RvB_PRQDOxoN_X6OuA,6393
198
+ snowflake/cli/plugins/spcs/image_repository/manager.py,sha256=B0O7V-voasrIWVUNyu7RNHCABP4F9H0oo4Tlm576IUQ,2947
199
+ snowflake/cli/plugins/spcs/jobs/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
200
+ snowflake/cli/plugins/spcs/jobs/commands.py,sha256=Xl5AF_9vi5-m4c_fWQvNi1xGo1Q0r9ZtLixyhoAR4do,2451
201
+ snowflake/cli/plugins/spcs/jobs/manager.py,sha256=EgfUMKFvYDtM0daEPnLhd08A-aXoUcqsf_2bLQS2IJ0,1896
202
+ snowflake/cli/plugins/spcs/services/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
203
+ snowflake/cli/plugins/spcs/services/commands.py,sha256=TvoSYnBu2s79SXwXOMcOAORF3juRS4a75e5wNDR9HXo,9928
204
+ snowflake/cli/plugins/spcs/services/manager.py,sha256=13TUklASHoZaNxrGAaF4NYPYrABXv8Zqf6LQvMvMSgc,6424
205
+ snowflake/cli/plugins/sql/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
206
+ snowflake/cli/plugins/sql/commands.py,sha256=aZAINfhzZ_CUm1xCBw8EwnztS0j9EJhLoHdb1BAgbl0,2896
207
+ snowflake/cli/plugins/sql/manager.py,sha256=Y71Gpl6zIm59aSG2Qe2EAB827D0eKDn0CUe8lmEtBUs,3483
208
+ snowflake/cli/plugins/sql/plugin_spec.py,sha256=U6ex88D6rhVkKR1d_HmVXo8EK0k9oZB-dQENHHGbrl4,992
209
+ snowflake/cli/plugins/sql/snowsql_templating.py,sha256=VTPvFzZihZnu6R5L1JMaVdzxfviSRoMLlNyxK87sE5E,881
210
+ snowflake/cli/plugins/stage/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
211
+ snowflake/cli/plugins/stage/commands.py,sha256=wcrDlIe360JjlWF2v6jG2aNBF5ZITF4S8SN_vMklcSk,8269
212
+ snowflake/cli/plugins/stage/diff.py,sha256=xmZoZL3ZQZS36M5H8FEb29kRNpcE6KM7tJVw8ZRcb_A,10756
213
+ snowflake/cli/plugins/stage/manager.py,sha256=i0hpYSTkm-NYSCybq6Ujhdm52eGsKcmOensucHnDyOk,21505
214
+ snowflake/cli/plugins/stage/md5.py,sha256=hX_Ao7ys7hUPNuWLm5KEmIpcIULEIJ1UMgc4qUyvoLE,6303
215
+ snowflake/cli/plugins/stage/plugin_spec.py,sha256=r8fvJxonf1TYBUm2361ka9fpsnA35NQRbGYqhKVfaC4,993
216
+ snowflake/cli/plugins/streamlit/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
217
+ snowflake/cli/plugins/streamlit/commands.py,sha256=s0753pNJUaQ6TpMje55POycQqAL_3fqTIW3uLFw6sMo,5826
218
+ snowflake/cli/plugins/streamlit/manager.py,sha256=l7s8qx5IH6Hm79yZjnwDK1VMymYTt5X3Cm3H3rgmM7A,8265
219
+ snowflake/cli/plugins/streamlit/plugin_spec.py,sha256=ZVxF6J5PFkjOtzBpsGk1YVL-XBXYgpTly5X-FMVYq9I,997
220
+ snowflake/cli/plugins/workspace/__init__.py,sha256=uGA_QRGW3iGwaegpFsLgOhup0zBliBSXh9ou8J439uU,578
221
+ snowflake/cli/plugins/workspace/commands.py,sha256=M552euR-Z-rmed88mfin_Cso1X0Y15zdHIg8s_fbxZg,1224
222
+ snowflake/cli/plugins/workspace/plugin_spec.py,sha256=sct9Tq60wPCCeDW0uSQ92WNwPwn6WVmH000fNRyoWfw,978
223
+ snowflake/cli/templates/default_snowpark/.gitignore,sha256=Fxtr7rnMlm-YRcppVICEdsWNHVUW3ewT4-hwCD13gXM,38
224
+ snowflake/cli/templates/default_snowpark/requirements.txt,sha256=p_-4lMxPUV9Y4-l3eiUzltmnFopV1-mK7OpMQTU1Yj0,26
225
+ snowflake/cli/templates/default_snowpark/snowflake.yml,sha256=EYyOeYPgAAH-wFxGg2jY0Ro5lrJibascNbHwnJZKnV4,573
226
+ snowflake/cli/templates/default_snowpark/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
+ snowflake/cli/templates/default_snowpark/app/common.py,sha256=MAT78EA9RwUMJziDr5YuDDlbw4Dr3pFmPBQGhWBSxVE,56
228
+ snowflake/cli/templates/default_snowpark/app/functions.py,sha256=7BCvqdYdhevzBihpvzv7GhyRrQs2mxrcSUmI79YSHF8,334
229
+ snowflake/cli/templates/default_snowpark/app/procedures.py,sha256=4fFrNkjKNuM06rleoiUteOEcWEcTJM3V2aDP2q-ehVY,598
230
+ snowflake/cli/templates/default_streamlit/.gitignore,sha256=Fxtr7rnMlm-YRcppVICEdsWNHVUW3ewT4-hwCD13gXM,38
231
+ snowflake/cli/templates/default_streamlit/environment.yml,sha256=-ohF2xQ0CqSWq-p4spJ0R5CgzMjQYcIWzJmq9iqGM5I,95
232
+ snowflake/cli/templates/default_streamlit/snowflake.yml,sha256=yWFU-vqJ7Z17K3loUp008KSSF2QpCI0Q6TyBhw_c2-E,256
233
+ snowflake/cli/templates/default_streamlit/streamlit_app.py,sha256=hfYtJl4Rtm0n3J2gNeDwMT-leeGL5R-qJKwyJ0kUxAI,109
234
+ snowflake/cli/templates/default_streamlit/common/hello.py,sha256=3Zt2LthAYDs6UGqOvRNCzYH-HISLHxdx_uAVhcCOtJM,37
235
+ snowflake/cli/templates/default_streamlit/pages/my_page.py,sha256=f__P9j5XCo8J1c6du25wSvknIKvhTFWrXF_298YiQbw,49
236
+ snowflake_cli-2.8.2.dist-info/METADATA,sha256=eS_ebBqQa8WGtzIFBQ3gNzHj6T--9ouZX6XBCIXpuRs,17877
237
+ snowflake_cli-2.8.2.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
238
+ snowflake_cli-2.8.2.dist-info/entry_points.txt,sha256=_qdnT44fYFbH78kb6Em5jr2_26amIg3UIAvSdmqT6TY,57
239
+ snowflake_cli-2.8.2.dist-info/licenses/LICENSE,sha256=mJMA3Uz2AbjU_kVggo1CAx01XhBsI7BSi2H7ggUg_-c,11344
240
+ snowflake_cli-2.8.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.25.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ snow = snowflake.cli.app.__main__:main
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2024 Snowflake Inc.
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.