snow

开发人员的 Snowflake CLI 工具。

语法

snow [<resource-commands>]
  --version
  --info
  --config-file <configuration_file>
  --help
Copy

实参

[resource-commands]

用于管理 Snowflake CLI 资源的可选命令。

选项

--version

显示 Snowflake CLI 的版本。

--info

显示有关 Snowflake CLI 的信息。

--config-file configuration_file

指定要使用的另一个 Snowflake CLI 配置文件。

--help

显示此命令的帮助文本。

使用说明

snow 命令支持以下管理 Snowflake 资源的命令:

示例

  • 要显示 Snowflake CLI 版本,请运行以下命令:

    snow --version
    
    Copy
    Snowflake CLI version: 2.3.0
    
  • 要显示有关 Snowflake CLI 的信息,请运行以下命令:

    snow --info
    
    Copy
    [
        {
            "key": "version",
            "value": "2.3.0"
        },
        {
            "key": "default_config_file_path",
            "value": "<user-home>/.snowflake/config.toml"
        },
        {
            "key": "python_version",
            "value": "3.11.6 (v3.11.6:8b6ee5ba3b, Oct  2 2023, 11:18:21) [Clang 13.0.0 (clang-1300.0.29.30)]"
        },
        {
            "key": "system_info",
            "value": "macOS-14.4.1-x86_64-i386-64bit"
        },
        {
            "key": "feature_flags",
            "value": {}
        }
    ]
    
  • 要显示 snow 命令的命令行帮助,请运行以下命令:

    snow --help
    
    Copy
    Usage: snow [OPTIONS] COMMAND [ARGS]...
    
    Snowflake CLI tool for developers.
    
    ╭─ Options ────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
    │ --version                    Shows version of the Snowflake CLI                                                      │
    │ --info                       Shows information about the Snowflake CLI                                               │
    │ --config-file          FILE  Specifies Snowflake CLI configuration file that should be used [default: None]          │
    │ --help         -h            Show this message and exit.                                                             │
    ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
    ╭─ Commands ───────────────────────────────────────────────────────────────────────────────────────────────────────────╮
    │ app          Manages a Snowflake Native App                                                                          │
    │ connection   Manages connections to Snowflake.                                                                       │
    │ git          Manages git repositories in Snowflake.                                                                  │
    │ object       Manages Snowflake objects like warehouses and stages                                                    │
    │ snowpark     Manages procedures and functions.                                                                       │
    │ spcs         Manages Snowpark Container Services compute pools, services, image registries, and image repositories.  │
    │ sql          Executes Snowflake query.                                                                               │
    │ stage        Manages stages.                                                                                         │
    │ streamlit    Manages a Streamlit app in Snowflake.                                                                   │
    ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
    
  • 要显示命令行帮助资源命令,请运行与下面类似的命令,以显示 snow spcs 命令的帮助:

    snow spcs --help
    
    Copy
    Usage: snow spcs [OPTIONS] COMMAND [ARGS]...
    
    Manages Snowpark Container Services compute pools, services, image registries, and image repositories.
    
    ╭─ Options ────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
    │ --help  -h        Show this message and exit.                                                                        │
    ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
    ╭─ Commands ───────────────────────────────────────────────────────────────────────────────────────────────────────────╮
    │ compute-pool       Manages compute pools.                                                                            │
    │ image-registry     Manages image registries.                                                                         │
    │ image-repository   Manages image repositories.                                                                       │
    │ service            Manages services.                                                                                 │
    ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
    
语言: 中文