uipath-cli
latest
false
UiPath CLI ユーザー ガイド
- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-library-object-repository
- get-object-repository
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- パッケージ化
- パブリッシュ
- remote
- 元に戻す
- run, debug & execution
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- tm
- UIA
- uip tasks
- uip traces
- uip traces feedback
- 移行
- 参照とサポート
重要 :
このコンテンツは機械翻訳によって処理されています。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
Syntax and options for `uip solution download`, which downloads and extracts a Studio Web solution.
uip solution download downloads (exports) a solution from Studio Web as a .uis archive. Pass --extract to also unpack it into a directory.
概要
uip solution download <solution-id> [-d <destination>] [-n <name>] [--extract]
uip solution download <solution-id> [-d <destination>] [-n <name>] [--extract]
引数
| 名前 | Required | 目的 |
|---|---|---|
<solution-id> | ○ | Studio Web solution UUID. Find it with uip solution list. |
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
-d | --destination | dir | 現在のディレクトリ | Destination directory for the downloaded file. |
-n | --name | text | the solution ID | Output filename, without extension. Existing files are overwritten; --extract uses this name for the extracted directory too. Must be a plain filename — no path separators or ... |
| — | --extract | フラグ | 無効 | Extract the downloaded .uis archive into a directory, and write AGENTS.md / CLAUDE.md briefing files there if the archive didn't already carry them. |
例
uip solution download a1b2c3d4-0000-0000-0000-000000000001 \
--destination ./downloads --extract
uip solution download a1b2c3d4-0000-0000-0000-000000000001 \
--destination ./downloads --extract
データシェイプ(--output json)
{
"Code": "SolutionDownload",
"Data": {
"Status": "Solution exported successfully",
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001",
"Output": "./downloads/a1b2c3d4-0000-0000-0000-000000000001.uis",
"ExtractedTo": "./downloads/a1b2c3d4-0000-0000-0000-000000000001",
"BriefingFiles": [
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/AGENTS.md",
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/CLAUDE.md"
]
}
}
{
"Code": "SolutionDownload",
"Data": {
"Status": "Solution exported successfully",
"SolutionId": "a1b2c3d4-0000-0000-0000-000000000001",
"Output": "./downloads/a1b2c3d4-0000-0000-0000-000000000001.uis",
"ExtractedTo": "./downloads/a1b2c3d4-0000-0000-0000-000000000001",
"BriefingFiles": [
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/AGENTS.md",
"./downloads/a1b2c3d4-0000-0000-0000-000000000001/CLAUDE.md"
]
}
}
ExtractedTo and BriefingFiles are only present when --extract is passed. BriefingFiles lists only the files this command wrote — if the archive already had AGENTS.md/CLAUDE.md, the field is omitted.
終了コード
共有コントラクト の終了コード を参照してください。
関連コマンド
uip solution list— find a solution's ID.uip solution delete— delete a Studio Web solution by ID.
参照
- グローバルオプション と 終了コード — すべての動詞で共有されるコントラクト。