- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- UiPath for Coding Agents
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- uip codedagent
- uip docsai
- add-test-data-entity
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-workflow-examples
- パッケージ化
- 元に戻す
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- UIA
- UIP トレース
- 移行
- 参照とサポート
UiPath CLI ユーザー ガイド
uip platform tenants reads and updates per-tenant license allocations. licenses get returns the active product allocation for a tenant (allocated, available, consumed, validity window); licenses set overlays a JSON delta of {code, quantity} entries, routing each product code to the service license that already owns it within the tenant.
概要
uip platform tenants licenses <verb> [options] <tenant-key>
uip platform tenants licenses <verb> [options] <tenant-key>
動詞
| 動詞 | 目的 |
|---|---|
get | Get the active license summary for a tenant (one row per product, dates as ISO). |
set | Apply a delta of {code, quantity} entries to a tenant's runtime licenses and consumables, auto-routed across service-types. |
uip platform tenants licenses get
Get the license summary for a tenant: allocated, available, consumed quantities per product code, with friendly names. Returns one row per active product (consumables and runtime licenses alike).
引数
| 名前 | Required | 目的 |
|---|---|---|
<tenant-key> | ○ | Tenant key (GUID). |
オプション
| 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|
--organization | account-id | セッションの既定値 | Organization account GUID. Override the org resolved from the current login. |
例
uip platform tenants licenses get 296b7134-6691-43db-b48a-2d95ed3ab031
uip platform tenants licenses get 296b7134-6691-43db-b48a-2d95ed3ab031
データシェイプ(--output json)
{
"Code": "TenantLicenses",
"Data": [
{
"code": "PLTU",
"name": "Platform Units",
"allocated": 300,
"availableForAllocation": 4700,
"allocatedAcrossOtherTenants": 0,
"totalUnitsInAccount": 5000,
"consumed": 50,
"startDate": "2023-11-14T22:13:20.000Z",
"endDate": "2027-09-15T18:40:00.000Z"
}
]
}
{
"Code": "TenantLicenses",
"Data": [
{
"code": "PLTU",
"name": "Platform Units",
"allocated": 300,
"availableForAllocation": 4700,
"allocatedAcrossOtherTenants": 0,
"totalUnitsInAccount": 5000,
"consumed": 50,
"startDate": "2023-11-14T22:13:20.000Z",
"endDate": "2027-09-15T18:40:00.000Z"
}
]
}
uip platform tenants licenses set
Set runtime licenses and consumables for a tenant. The CLI fetches the tenant's existing service licenses, indexes their products by code, and routes each input entry to the service license that already owns that code. Quantities in --input overlay the current allocation by code; products you do not list keep their existing quantities.
The command fails before writing if any input code:
- is not present in any of the tenant's existing service licenses (unrouted), or
- appears under more than one of the tenant's service licenses (ambiguous routing).
On partial failure (one service-type fails to update after another already succeeded), the error message lists the service types that were already applied so you can re-run with the same input idempotently.
引数
| 名前 | Required | 目的 |
|---|---|---|
<tenant-key> | ○ | Tenant key (GUID). |
オプション
| 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|
--input | パス | 必須 | Path to a JSON file with the product delta, for example [{"code":"UNATT","quantity":5}]. Quantities overlay the current allocation by product code. |
--organization | account-id | セッションの既定値 | Organization account GUID. Override the org resolved from the current login. |
例
uip platform tenants licenses set 296b7134-6691-43db-b48a-2d95ed3ab031 \
--input ./delta.json
uip platform tenants licenses set 296b7134-6691-43db-b48a-2d95ed3ab031 \
--input ./delta.json
delta.json:
[
{ "code": "PLTU", "quantity": 500 },
{ "code": "RU", "quantity": 100 }
]
[
{ "code": "PLTU", "quantity": 500 },
{ "code": "RU", "quantity": 100 }
]
データシェイプ(--output json)
{
"Code": "TenantLicensesSet",
"Data": [
{
"serviceType": "orchestrator",
"code": "PLTU",
"name": "Platform Units",
"quantity": 500
},
{
"serviceType": "orchestrator",
"code": "RU",
"name": "Robot Units",
"quantity": 100
}
]
}
{
"Code": "TenantLicensesSet",
"Data": [
{
"serviceType": "orchestrator",
"code": "PLTU",
"name": "Platform Units",
"quantity": 500
},
{
"serviceType": "orchestrator",
"code": "RU",
"name": "Robot Units",
"quantity": 100
}
]
}
終了コード
「終了コード」を参照してください。動詞固有の上書きはありません。
関連コマンド
uip platform licenses consumables— organization-level consumables report (per-tenant pool usage, daily and folder breakdowns).uip platform users— per-user license bundles.uip or licenses— Orchestrator-level machine and named-user license assignment.
参照
- グローバル オプション。
- Output formats — switch the table view with
--output table.