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 the deprecated `uip maestro bpmn update-metadata` command — use `uip maestro bpmn refresh` instead.
警告:
Deprecated. Use uip maestro bpmn refresh instead. The command still works and is documented below for existing scripts, but every invocation prints a [WARN] deprecation notice to stderr.
uip maestro bpmn update-metadata writes (or checks) project.uiproj, operate.json, entry-points.json, bindings_v2.json, and package-descriptor.json from a .bpmn file. Unlike refresh, it does not materialize Integration Service connection bindings — a package produced this way is not guaranteed runnable. It's registered under the bpmn branch.
概要
uip maestro bpmn update-metadata <bpmn> [--output-dir <dir>] [--dry-run]
uip maestro bpmn update-metadata <bpmn> [--output-dir <dir>] [--dry-run]
引数
<bpmn>(必須) —.bpmnファイルのパスです。
オプション
| オプション | 既定 (Default) | 説明 |
|---|---|---|
--output-dir <dir> | directory of <bpmn> | Directory for the metadata JSON files. In --dry-run mode, this is the directory whose existing files are checked for drift instead. |
--dry-run | 無効 | Report drift against the .bpmn file without writing anything. |
例
# Write metadata files next to the .bpmn
uip maestro bpmn update-metadata process.bpmn
# Check for drift without writing
uip maestro bpmn update-metadata process.bpmn --dry-run
# Write metadata files next to the .bpmn
uip maestro bpmn update-metadata process.bpmn
# Check for drift without writing
uip maestro bpmn update-metadata process.bpmn --dry-run
データシェイプ(--output json)
Write mode:
{
"Code": "MaestroBpmnUpdateMetadata",
"Data": {
"DryRun": false,
"ProjectName": "process",
"OutDir": "/workspace/my-project",
"FilesWritten": [
"project.uiproj",
"operate.json",
"entry-points.json",
"bindings_v2.json",
"package-descriptor.json"
],
"EntryPointCount": 1
}
}
{
"Code": "MaestroBpmnUpdateMetadata",
"Data": {
"DryRun": false,
"ProjectName": "process",
"OutDir": "/workspace/my-project",
"FilesWritten": [
"project.uiproj",
"operate.json",
"entry-points.json",
"bindings_v2.json",
"package-descriptor.json"
],
"EntryPointCount": 1
}
}
--dry-run mode:
{
"Code": "MaestroBpmnUpdateMetadata",
"Data": {
"DryRun": true,
"Status": "OK",
"Drifts": []
}
}
{
"Code": "MaestroBpmnUpdateMetadata",
"Data": {
"DryRun": true,
"Status": "OK",
"Drifts": []
}
}
参照
uip maestro bpmn refresh— current replacement, also materializes Integration Service connection bindingsuip maestro bpmn init— scaffold a new project instead of hand-assembling metadata- Maestro の概要