- 概要
- はじめに
- 概念
- 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
- 移行
- 参照とサポート
Syntax and options for `uip vss add`, which adds a process or a local Data Fabric entity to the current vertical solution.
uip vss add adds a process or a local Data Fabric entity to the current vertical solution. For process, it rewrites vss.json to include the new entry. For entity, it writes an entity definition into data_fabric_schema.json — it does not touch vss.json. The [target] positional means something different per type: for process it's the project directory to add (defaults to the current directory); for entity it's the entity name (required).
概要
uip vss add process [target]
uip vss add entity <target> [options]
uip vss add process [target]
uip vss add entity <target> [options]
<type>—process,entity, orconnection.[target]— Project directory (process) or entity name (entity). Defaults to the current directory forprocess; required forentity.
オプション
| フラグ | 説明 | 適用対象 |
|---|---|---|
--field <definition> | Entity field definition as <name>:<type>. Repeatable. | entity |
-s, --schema <path> | Path to data_fabric_schema.json. Defaults to data_fabric_schema.json in the target directory. | entity |
-t, --target-path <targetPath> | Vertical solution directory. Defaults to the current directory. | all types |
例
# Add a process from the current directory
uip vss add process
# Add a process from an explicit path
uip vss add process ./processes/onboarding
# Add a local Data Fabric entity with two fields
uip vss add entity Employee --field name:string --field salary:number
# Add a process from the current directory
uip vss add process
# Add a process from an explicit path
uip vss add process ./processes/onboarding
# Add a local Data Fabric entity with two fields
uip vss add entity Employee --field name:string --field salary:number
データシェイプ(--output json)
{
"Code": "ProcessesAdded",
"Data": {
"Status": "1 processes added successfully",
"Path": "/Users/alice/my-app"
}
}
{
"Code": "ProcessesAdded",
"Data": {
"Status": "1 processes added successfully",
"Path": "/Users/alice/my-app"
}
}
For entity, the shape is different:
{
"Code": "EntityAdded",
"Data": {
"Entity": "Employee",
"Fields": ["name", "salary"],
"Schema": "/Users/alice/my-app/data_fabric_schema.json"
}
}
{
"Code": "EntityAdded",
"Data": {
"Entity": "Employee",
"Fields": ["name", "salary"],
"Schema": "/Users/alice/my-app/data_fabric_schema.json"
}
}
connection is registered as a valid <type> value but always fails with Failure: "Connections are not supported yet" — it is not implemented. Use process or entity.
関連
- uip vss init — produce the
vss.jsonthataddrewrites. - uip vss sync — 登録済みプロセスを UiPath Cloud と照合します。
- uip vss generate — プロセスを追加した後、TypeScript の型を更新します。