- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- uip codedagent
- UIP コーダー
- UIP のコンテキスト グラウンディング
- uip docsai
- uip 関数
- UIP ガードレール
- uip llm - 構成
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-library-object-repository
- オブジェクト リポジトリを取得
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- リスト - インスタンス
- list-workflow-examples
- パッケージ化
- パブリッシュ
- リモート
- 元に戻す
- 実行、デバッグ、実行
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- TM
- UIA
- UIP タスク
- uip traces
- UIP トレースのフィードバック
- 移行
- 参照とサポート
Syntax and options for `uip rpa get-library-object-repository`, which reads the Object Repository out of one or more library .nupkg files.
uip rpa get-library-object-repository reads the Object Repository — applications, screens, and elements — out of one or more library .nupkg files, and returns the entries grouped by library. Packages that don't carry an Object Repository are omitted from the result. Use uip rpa get-object-repository to read the current project's own Object Repository instead.
Even though the .nupkg paths are self-contained, the verb still requires an open project: the Object Repository reader runs inside a hosted project context on both backends (Studio's project process and Helm's project assembly load context).
概要
uip rpa get-library-object-repository [--library-paths <path>]
uip rpa get-library-object-repository [--library-paths <path>]
オプション
| フラグ | 説明 |
|---|---|
--library-paths <path> | Absolute path to a library .nupkg file to read. Repeatable — pass the flag multiple times for multiple libraries, or a single comma-separated value (e.g. --library-paths "C:\libs\Acme.UiLib.1.2.0.nupkg,C:\libs\Acme.Other.1.0.0.nupkg"). At least one path is required; the command fails with success: false if none is provided. |
インストールされているツールのバージョンの完全なオプションリストについては、以下を実行します。
uip rpa get-library-object-repository --help
uip rpa get-library-object-repository --help
例
# Read one library's Object Repository
uip rpa get-library-object-repository --library-paths "C:\libs\Acme.UiLib.1.2.0.nupkg"
# Read multiple libraries in one call — repeated flag
uip rpa get-library-object-repository --library-paths "C:\libs\Acme.UiLib.1.2.0.nupkg" --library-paths "C:\libs\Acme.Other.1.0.0.nupkg"
# Read multiple libraries — comma-separated in one occurrence
uip rpa get-library-object-repository --library-paths "C:\libs\Acme.UiLib.1.2.0.nupkg,C:\libs\Acme.Other.1.0.0.nupkg"
# Read one library's Object Repository
uip rpa get-library-object-repository --library-paths "C:\libs\Acme.UiLib.1.2.0.nupkg"
# Read multiple libraries in one call — repeated flag
uip rpa get-library-object-repository --library-paths "C:\libs\Acme.UiLib.1.2.0.nupkg" --library-paths "C:\libs\Acme.Other.1.0.0.nupkg"
# Read multiple libraries — comma-separated in one occurrence
uip rpa get-library-object-repository --library-paths "C:\libs\Acme.UiLib.1.2.0.nupkg,C:\libs\Acme.Other.1.0.0.nupkg"
データシェイプ(--output json)
The command returns the Object Repository entries grouped by library, exactly as objectRepository.getLibraryObjects() produces them. Shape is otherwise unspecified and may evolve with the Object Repository feature itself; inspect real output rather than relying on a fixed schema.
On failure — no --library-paths provided, or an unreadable package — the command reports:
{
"success": false,
"errorMessage": "<reason>"
}
{
"success": false,
"errorMessage": "<reason>"
}
"At least one library .nupkg path must be provided in 'libraryPaths'." is the exact message when the flag is omitted entirely.
関連
uip rpa get-object-repository— the equivalent read for the current project's own Object Repository, rather than a library package's.