- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- eval schedule
- eval evaluators
- eval sets & evaluations
- 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 eval schedule`, which creates, lists, updates, pauses, resumes, and deletes recurring evaluation-run schedules for an Orchestrator process.
uip eval schedule manages recurring evaluation runs for an Orchestrator process: create a cron-triggered schedule that runs a given eval set against the process on a timer, then list, inspect, update, pause, resume, or delete it. This is the scheduled counterpart to a one-off run — see uip eval for the overview of the whole eval subsystem, including execute-and-evaluate (run once, synchronously) and run (inspect past runs). For what an eval set actually contains, see uip eval eval-set.
Every schedule belongs to one process (--process-key) and runs one eval set (--eval-set-id) on a five-field UTC cron expression.
概要
uip eval schedule create --process-key <guid> --eval-set-id <guid> --cron <expr> [--workload-id <guid>] [--folder-key <guid>] [--tenant <tenant>]
uip eval schedule list --process-key <guid> [--tenant <tenant>]
uip eval schedule get <schedule-id> --process-key <guid> [--tenant <tenant>]
uip eval schedule update <schedule-id> --process-key <guid> [--eval-set-id <guid>] [--cron <expr>] [--tenant <tenant>]
uip eval schedule pause <schedule-id> --process-key <guid> [--tenant <tenant>]
uip eval schedule resume <schedule-id> --process-key <guid> [--tenant <tenant>]
uip eval schedule delete <schedule-id> --process-key <guid> [--tenant <tenant>]
uip eval schedule create --process-key <guid> --eval-set-id <guid> --cron <expr> [--workload-id <guid>] [--folder-key <guid>] [--tenant <tenant>]
uip eval schedule list --process-key <guid> [--tenant <tenant>]
uip eval schedule get <schedule-id> --process-key <guid> [--tenant <tenant>]
uip eval schedule update <schedule-id> --process-key <guid> [--eval-set-id <guid>] [--cron <expr>] [--tenant <tenant>]
uip eval schedule pause <schedule-id> --process-key <guid> [--tenant <tenant>]
uip eval schedule resume <schedule-id> --process-key <guid> [--tenant <tenant>]
uip eval schedule delete <schedule-id> --process-key <guid> [--tenant <tenant>]
動詞
| 動詞 | 目的 |
|---|---|
create | Create a new recurring schedule for a process. |
list | List every schedule for a process. |
get | Fetch one schedule by ID. |
update | Change a schedule's eval set and/or cron expression. |
pause | Pause an active schedule. |
resume | Resume a paused schedule. |
delete | Delete a schedule. |
uip eval schedule create
Create a schedule that runs an eval set against a process on a recurring UTC cron trigger.
If --workload-id or --folder-key are omitted, the command looks up the eval set first (GET .../evalSets/<eval-set-id>) and fills both in from it — you only need to pass them explicitly to override that resolution.
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
| — | --process-key | GUID | — | Required. Process key (deployment GUID) — identifies the Orchestrator release. |
| — | --workload-id | GUID | resolved from eval set | Workload ID. |
| — | --eval-set-id | GUID | — | Required. Eval set to run on each trigger. |
| — | --cron | cron expression | — | Required. Five-field cron expression, evaluated in UTC (for example "0 9 * * *" for daily at 9 AM UTC). |
| — | --folder-key | GUID | resolved from eval set | Orchestrator folder key. |
| — | --tenant | name | セッションの既定値 | UiPath tenant name. Plain option, not deprecated. |
例
# Daily at 9 AM UTC
uip eval schedule create --process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09 \
--eval-set-id f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04 --cron "0 9 * * *"
# Daily at 9 AM UTC
uip eval schedule create --process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09 \
--eval-set-id f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04 --cron "0 9 * * *"
データシェイプ(--output json)
{
"Code": "EvalScheduleCreated",
"Data": {
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 9 * * *",
"Status": "active",
"CreatedAt": "2025-04-15T10:29:55Z"
}
}
{
"Code": "EvalScheduleCreated",
"Data": {
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 9 * * *",
"Status": "active",
"CreatedAt": "2025-04-15T10:29:55Z"
}
}
UpdatedAt is present only once a schedule has been changed at least once (absent on a fresh create response).
uip eval schedule list
List every schedule registered for a process.
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
| — | --process-key | GUID | — | Required. Process key. |
| — | --tenant | name | セッションの既定値 | UiPath tenant name. |
例
uip eval schedule list --process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09
uip eval schedule list --process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09
データシェイプ(--output json)
{
"Code": "EvalScheduleList",
"Data": [
{
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 9 * * *",
"Status": "active",
"CreatedAt": "2025-04-15T10:29:55Z"
}
]
}
{
"Code": "EvalScheduleList",
"Data": [
{
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 9 * * *",
"Status": "active",
"CreatedAt": "2025-04-15T10:29:55Z"
}
]
}
uip eval schedule get
Fetch one schedule by ID.
引数
| 名前 | Required | 目的 |
|---|---|---|
<schedule-id> | ○ | Schedule GUID, from create or list. |
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
| — | --process-key | GUID | — | Required. Process key. |
| — | --tenant | name | セッションの既定値 | UiPath tenant name. |
例
uip eval schedule get b2c3d4e5-0000-0000-0000-000000000001 \
--process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09
uip eval schedule get b2c3d4e5-0000-0000-0000-000000000001 \
--process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09
データシェイプ(--output json)
{
"Code": "EvalScheduleDetails",
"Data": {
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 9 * * *",
"Status": "active",
"CreatedAt": "2025-04-15T10:29:55Z"
}
}
{
"Code": "EvalScheduleDetails",
"Data": {
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 9 * * *",
"Status": "active",
"CreatedAt": "2025-04-15T10:29:55Z"
}
}
uip eval schedule update
Change a schedule's eval set and/or cron expression. At least one of --eval-set-id/--cron is required — passing neither fails client-side before any network call.
引数
| 名前 | Required | 目的 |
|---|---|---|
<schedule-id> | ○ | Schedule to update. |
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
| — | --process-key | GUID | — | Required. Process key. |
| — | --eval-set-id | GUID | — | New eval set. At least one of this or --cron is required. |
| — | --cron | cron expression | — | New five-field cron expression, UTC. At least one of this or --eval-set-id is required. |
| — | --tenant | name | セッションの既定値 | UiPath tenant name. |
例
uip eval schedule update b2c3d4e5-0000-0000-0000-000000000001 \
--process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09 --cron "0 */6 * * *"
uip eval schedule update b2c3d4e5-0000-0000-0000-000000000001 \
--process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09 --cron "0 */6 * * *"
データシェイプ(--output json)
{
"Code": "EvalScheduleUpdated",
"Data": {
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 */6 * * *",
"Status": "active",
"CreatedAt": "2025-04-15T10:29:55Z",
"UpdatedAt": "2025-04-16T08:00:00Z"
}
}
{
"Code": "EvalScheduleUpdated",
"Data": {
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 */6 * * *",
"Status": "active",
"CreatedAt": "2025-04-15T10:29:55Z",
"UpdatedAt": "2025-04-16T08:00:00Z"
}
}
Omitting both --eval-set-id and --cron fails with:
{
"Result": "Failure",
"Message": "At least one of --eval-set-id or --cron must be provided.",
"Instructions": "Provide the field(s) you want to update."
}
{
"Result": "Failure",
"Message": "At least one of --eval-set-id or --cron must be provided.",
"Instructions": "Provide the field(s) you want to update."
}
uip eval schedule pause
Pause an active schedule — no further runs trigger until resume.
引数
| 名前 | Required | 目的 |
|---|---|---|
<schedule-id> | ○ | Schedule to pause. |
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
| — | --process-key | GUID | — | Required. Process key. |
| — | --tenant | name | セッションの既定値 | UiPath tenant name. |
例
uip eval schedule pause b2c3d4e5-0000-0000-0000-000000000001 \
--process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09
uip eval schedule pause b2c3d4e5-0000-0000-0000-000000000001 \
--process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09
データシェイプ(--output json)
{
"Code": "EvalSchedulePaused",
"Data": {
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 9 * * *",
"Status": "paused",
"CreatedAt": "2025-04-15T10:29:55Z"
}
}
{
"Code": "EvalSchedulePaused",
"Data": {
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 9 * * *",
"Status": "paused",
"CreatedAt": "2025-04-15T10:29:55Z"
}
}
uip eval schedule resume
Resume a paused schedule.
引数
| 名前 | Required | 目的 |
|---|---|---|
<schedule-id> | ○ | Schedule to resume. |
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
| — | --process-key | GUID | — | Required. Process key. |
| — | --tenant | name | セッションの既定値 | UiPath tenant name. |
例
uip eval schedule resume b2c3d4e5-0000-0000-0000-000000000001 \
--process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09
uip eval schedule resume b2c3d4e5-0000-0000-0000-000000000001 \
--process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09
データシェイプ(--output json)
{
"Code": "EvalScheduleResumed",
"Data": {
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 9 * * *",
"Status": "active",
"CreatedAt": "2025-04-15T10:29:55Z"
}
}
{
"Code": "EvalScheduleResumed",
"Data": {
"ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001",
"WorkloadId": "a1b2c3d4-0000-0000-0000-000000000001",
"ProcessKey": "9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09",
"FolderKey": "a9f3b2c1-7d4e-4a8b-9c2f-5e1d3b6a8f7e",
"EvalSetId": "f3a7d219-8b4c-4e62-a951-7d3f6e2c8b04",
"CronExpression": "0 9 * * *",
"Status": "active",
"CreatedAt": "2025-04-15T10:29:55Z"
}
}
uip eval schedule delete
Delete a schedule permanently.
引数
| 名前 | Required | 目的 |
|---|---|---|
<schedule-id> | ○ | Schedule to delete. |
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
| — | --process-key | GUID | — | Required. Process key. |
| — | --tenant | name | セッションの既定値 | UiPath tenant name. |
例
uip eval schedule delete b2c3d4e5-0000-0000-0000-000000000001 \
--process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09
uip eval schedule delete b2c3d4e5-0000-0000-0000-000000000001 \
--process-key 9e4b2f17-7c3a-4d81-b592-3f6e8a1d5c09
データシェイプ(--output json)
{
"Code": "EvalScheduleDeleted",
"Data": { "ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001" }
}
{
"Code": "EvalScheduleDeleted",
"Data": { "ScheduleId": "b2c3d4e5-0000-0000-0000-000000000001" }
}
関連コマンド
uip eval— overview,execute-and-evaluate, andrun.uip eval evaluator— define the evaluators a schedule's eval set can use.uip eval eval-set/evaluation— define what a schedule actually runs.
参照
uip orの概要—すべてのuip or動詞に共通する規則。- グローバル オプション
- 終了コード
- 概要
- 動詞
- uip eval schedule create
- オプション
- 例
- データシェイプ(--output json)
- uip eval schedule list
- オプション
- 例
- データシェイプ(--output json)
- uip eval schedule get
- 引数
- オプション
- 例
- データシェイプ(--output json)
- uip eval schedule update
- 引数
- オプション
- 例
- データシェイプ(--output json)
- uip eval schedule pause
- 引数
- オプション
- 例
- データシェイプ(--output json)
- uip eval schedule resume
- 引数
- オプション
- 例
- データシェイプ(--output json)
- uip eval schedule delete
- 引数
- オプション
- 例
- データシェイプ(--output json)
- 関連コマンド
- 参照