uipath-cli
latest
false
UiPath CLI 用户指南
- 概述
- 开始使用
- 概念
- 使用 UiPath CLI
- 操作指南
- CI/CD 方法
- 命令参考
- 迁移
- 参考与支持
重要 :
请注意,此内容已使用机器翻译进行了本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。
Syntax and options for `uip solution delete`, which deletes a Studio Web solution by its ID.
uip solution delete deletes a solution from Studio Web by its solution ID. The ID is emitted by uip solution upload and by flow debug in their output.
This does not uninstall a deployed solution from Orchestrator — use deploy uninstall for that.
大纲
uip solution delete <solution-id> -y
uip solution delete <solution-id> -y
参数
| 名称 | 必填 | 用途 |
|---|---|---|
<solution-id> | 是 | The Studio Web solution ID (UUID). |
选项
| 短 | 长 | 值 | 默认 | 描述 |
|---|---|---|---|---|
-y | --yes | 标记 | 关闭 | Required. Confirms this irreversible operation — the CLI never prompts. |
示例
uip solution delete a1b2c3d4-0000-0000-0000-000000000001 --yes
uip solution delete a1b2c3d4-0000-0000-0000-000000000001 --yes
数据形状(--输出 json)
{
"Code": "SolutionDelete",
"Data": {
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001"
}
}
{
"Code": "SolutionDelete",
"Data": {
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001"
}
}
退出代码
See Exit codes for the shared contract. The command exits 1 if -y, --yes is omitted.
相关命令
uip solution list— find a solution's ID.uip solution upload— the command that creates the solution and emits its ID.uip solution deploy uninstall— remove a deployment from Orchestrator instead.