uipath-cli
latest
false
- 概要
- はじめに
- 概念
- 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 トレース
- 移行
- 参照とサポート
重要 :
このコンテンツは機械翻訳によって処理されています。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
UiPath CLI ユーザー ガイド
uip or credential-stores は、テナント用に設定された 資格情報ストア (ユーザーとマシンが参照する資格情報を保持する、セキュリティで保護されたバックエンド) を検査します。資格情報ストアは、資格情報の種類のユーザーまたはマシンを作成するときに--credential-store-keyとして渡す数値キー (Id) で識別されます。
一般的な種類には、 Database (Orchestrator の組み込みストア)、 AzureKeyVault、 CyberArk、 HashiCorpなどがあります。
概要
uip or credential-stores <verb> [options]
uip or credential-stores <verb> [options]
動詞
| 動詞 | 目的 |
|---|---|
list | テナント内の資格情報ストアのリストを取得します。 |
get | 数値キーを使用して資格情報ストアの詳細を取得します。 |
すべての動詞は 、グローバル オプション (--output、 --output-filter、 --log-level、 --log-file) に従います。終了コードは 標準コントラクトに従います。
uip または資格情報ストアのリスト
呼び出し元に表示される資格情報ストアを一覧表示します。キー (GUID)、数値 id、名前、型、および型ごとの detailsを返します。
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
-t | --tenant | name | セッションの既定値 | テナントを上書きします。 |
-n | --name | text | — | 名前の一致が含まれます。 |
| — | --id | Number | — | 数値キー (完全一致) でフィルター処理します。 |
-l | --limit | Number | 50 | ページ サイズ |
| — | --offset | Number | 0 | カウントをスキップします。 |
| — | --order-by | フィールド | Id desc | OData の並べ替え式 (例: Name asc)。 |
例
# All stores in the tenant
uip or credential-stores list
# Filter by name
uip or credential-stores list --name "Azure"
# Just id and name, script-friendly
uip or credential-stores list --output-filter 'Data[].{id:id, n:name}'
# All stores in the tenant
uip or credential-stores list
# Filter by name
uip or credential-stores list --name "Azure"
# Just id and name, script-friendly
uip or credential-stores list --output-filter 'Data[].{id:id, n:name}'
データシェイプ(--output json)
{
"Code": "CredentialStoreList",
"Data": [
{
"key": "a1b2c3d4-0000-0000-0000-000000000001",
"name": "Orchestrator Database",
"type": "Database",
"details": { "isReadOnly": false },
"id": 1
},
{
"key": "a1b2c3d4-0000-0000-0000-000000000002",
"name": "Azure Key Vault",
"type": "AzureKeyVault",
"details": {},
"id": 2
}
]
}
{
"Code": "CredentialStoreList",
"Data": [
{
"key": "a1b2c3d4-0000-0000-0000-000000000001",
"name": "Orchestrator Database",
"type": "Database",
"details": { "isReadOnly": false },
"id": 1
},
{
"key": "a1b2c3d4-0000-0000-0000-000000000002",
"name": "Azure Key Vault",
"type": "AzureKeyVault",
"details": {},
"id": 2
}
]
}
uip または credential-stores get
数値キーで資格情報ストアの詳細をすべて取得します。GUID ではなく、credential-stores listからid (整数) を渡します。
引数
| 名前 | Required | 目的 |
|---|---|---|
<key> | ○ | 数値の資格情報ストア キー (credential-stores listからのid)。 |
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
-t | --tenant | name | セッションの既定値 | テナントを上書きします。 |
例
uip or credential-stores get 1
uip or credential-stores get 2 --output-filter 'Data.type'
uip or credential-stores get 1
uip or credential-stores get 2 --output-filter 'Data.type'
データシェイプ(--output json)
{
"Code": "CredentialStore",
"Data": {
"key": "a1b2c3d4-0000-0000-0000-000000000001",
"name": "Orchestrator Database",
"type": "Database",
"details": { "isReadOnly": false },
"id": 1
}
}
{
"Code": "CredentialStore",
"Data": {
"key": "a1b2c3d4-0000-0000-0000-000000000001",
"name": "Orchestrator Database",
"type": "Database",
"details": { "isReadOnly": false },
"id": 1
}
}
関連コマンド
uip or users— 資格情報の種類のユーザーを作成するには、このコマンドから取得される--credential-store-keyが必要です。uip or machines— 資格情報が保存されたマシンを作成するには、--credential-store-keyが必要です。
参照
- グローバルオプション —
--output、--output-filter、--log-level、--log-file。 - 終了コード — 標準の終了コード限月。