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 週間で公開されます。
Upload a local Maestro BPMN project (or a single .bpmn file) to Studio Web and run a server-side debug session with streamed status updates using `uip maestro bpmn debug`.
uip maestro bpmn debug uploads a local Maestro project — or a single .bpmn file — to Studio Web and runs a server-side debug session, streaming per-element status updates back to the console and returning a final status. It's registered under the bpmn branch.
概要
uip maestro bpmn debug [project-path]
[--bpmn-file <path>]
[--folder-id <id>]
[--poll-interval <ms>]
[-i, --inputs <json>]
[--login-validity <minutes>]
uip maestro bpmn debug [project-path]
[--bpmn-file <path>]
[--folder-id <id>]
[--poll-interval <ms>]
[-i, --inputs <json>]
[--login-validity <minutes>]
引数
[project-path](optional) — path to the Maestro project directory. Must containproject.uiproj. Omit when using--bpmn-file. One of<project-path>or--bpmn-fileis required; passing both is an error ("Provide either a project path or --bpmn-file, not both.").
オプション
| オプション | 既定 (Default) | 説明 |
|---|---|---|
--bpmn-file <path> | — | Debug a single .bpmn file directly instead of a project directory. Mutually exclusive with <project-path>. |
--folder-id <id> | 自動検出 | Orchestrator のフォルダー (OrganizationUnitId)省略すると、現在のログイン セッションのフォルダーが使用されます。parseFolderIdで解析および検証されます。 |
--poll-interval <ms> | 2000 | ポーリング間隔 (ミリ秒単位)。正の数である必要があります。 |
-i, --inputs <json> | — | 引数を JSON 文字列または @path/to/file.jsonとして入力します。 |
--login-validity <minutes> | 10 | トークンの有効期限の最小時間 (分) 前に自動更新がトリガーされます。 |
動作
- ログインを検証し、組織、テナント、ベース URL、認証トークンをセッションから取得します。
- プロジェクトを Studio Web のターゲット フォルダーにアップロードします。
- 最終ステータスをポーリングし、次のような要素ごとのステータス行を出力します。
Status: InProgress (2/5 elements completed) v Activity_1 [Completed] > Activity_2 [InProgress] - Activity_3 [NotStarted]Status: InProgress (2/5 elements completed) v Activity_1 [Completed] > Activity_2 [InProgress] - Activity_3 [NotStarted] - 実行中のインシデントでは、ログ行を出力します。
finalStatusがCompletedまたはSuccessfulの場合に0を終了します。1そうでなければ。
例
# Debug with auto-detected folder
uip maestro bpmn debug ./invoice-orchestration
# Specify folder and inline inputs
uip maestro bpmn debug ./invoice-orchestration --folder-id 2553016 \
--inputs '{"amount":100,"customer":"Acme"}'
# Inputs from a file
uip maestro bpmn debug ./invoice-orchestration --inputs @inputs.json
# Debug a single .bpmn file directly, without a full project directory
uip maestro bpmn debug --bpmn-file ./main.bpmn
# Debug with auto-detected folder
uip maestro bpmn debug ./invoice-orchestration
# Specify folder and inline inputs
uip maestro bpmn debug ./invoice-orchestration --folder-id 2553016 \
--inputs '{"amount":100,"customer":"Acme"}'
# Inputs from a file
uip maestro bpmn debug ./invoice-orchestration --inputs @inputs.json
# Debug a single .bpmn file directly, without a full project directory
uip maestro bpmn debug --bpmn-file ./main.bpmn
データシェイプ(--output json)
{
"Code": "MaestroDebug",
"Data": {
"jobKey": "b2c3d4e5-0000-0000-0000-000000000001",
"instanceId": "c3d4e5f6-0000-0000-0000-000000000001",
"runId": "d4e5f6a7-0000-0000-0000-000000000001",
"finalStatus": "Completed",
"solutionId": "e5f6a7b8-0000-0000-0000-000000000001",
"studioWebUrl": "https://cloud.uipath.com/org/studio_/designer/f6a7b8c9-...?solutionId=e5f6a7b8-...",
"elementExecutions": [
{ "elementId": "Activity_1", "status": "Completed" }
]
}
}
{
"Code": "MaestroDebug",
"Data": {
"jobKey": "b2c3d4e5-0000-0000-0000-000000000001",
"instanceId": "c3d4e5f6-0000-0000-0000-000000000001",
"runId": "d4e5f6a7-0000-0000-0000-000000000001",
"finalStatus": "Completed",
"solutionId": "e5f6a7b8-0000-0000-0000-000000000001",
"studioWebUrl": "https://cloud.uipath.com/org/studio_/designer/f6a7b8c9-...?solutionId=e5f6a7b8-...",
"elementExecutions": [
{ "elementId": "Activity_1", "status": "Completed" }
]
}
}
studioWebUrl links directly to the debug run in Studio Web.
参照
uip maestro bpmn process run— パブリッシュ済みのプロセスを実行しますuip maestro bpmn job traces— 開始済みのジョブのストリームトレース- 認証
- Maestro の概要