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 api-workflow init`, which scaffolds a new API Workflow project with boilerplate files.
uip api-workflow init scaffolds a new API Workflow project: project.uiproj, entry-points.json, bindings_v2.json, and a minimal Workflow.json with a single pass-through step that maps declared input defaults, then the caller's actual input, into $input. When run inside a solution directory, the new project is auto-registered in the surrounding solution's .uipx file.
概要
uip api-workflow init <name> [options]
uip api-workflow init <name> [options]
<name>— API Workflow project name. Letters, numbers, spaces, underscores (_), and hyphens (-) only; also used as the target directory name.
オプション
| フラグ | 説明 |
|---|---|
--force | Initialize even if the target directory is not empty. Writes files without clearing existing contents — it does not delete anything already there. |
--skip-solution-registration | Do not auto-register this project in the surrounding solution. |
例
# Create a new API Workflow project
uip api-workflow init my-api-workflow
# Create a new API Workflow project
uip api-workflow init my-api-workflow
# Initialize into a non-empty directory
uip api-workflow init my-api-workflow --force
# Initialize into a non-empty directory
uip api-workflow init my-api-workflow --force
データシェイプ(--output json)
{
"Code": "ApiWorkflowInit",
"Data": {
"Status": "Created successfully",
"Path": "/workspace/my-api-workflow",
"SolutionRegistration": {
"Registered": true
}
}
}
{
"Code": "ApiWorkflowInit",
"Data": {
"Status": "Created successfully",
"Path": "/workspace/my-api-workflow",
"SolutionRegistration": {
"Registered": true
}
}
}
SolutionRegistration reflects whether the project was linked into a parent solution's .uipx. When the registration flow needs the user to take a manual step (for example, no parent solution was found), the response adds a NextSteps field with instructions.
関連
- uip api-workflow build — compile the project this command scaffolds.
- uip api-workflow validate — validate the workflow JSON before packaging.