- Vue d'ensemble (Overview)
- Démarrer
- Concepts
- Utilisation de la UiPath CLI
- Guides pratiques
- Revenus CI/CD
- Référence de commande
- Vue d'ensemble (Overview)
- Codes de sortie
- Options globales
- agent codé uip
- uip coder
- uip context-grounding
- UiPath Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Tâches (Jobs)
- Dossiers
- Processus
- Paquets
- Machines
- Utilisateurs
- Rôles
- Licences
- Flux
- Pièces jointes (Attachments)
- Sessions
- Calendriers
- magasins d'informations d’identification
- journaux-audit
- paramètres
- Actifs
- Compartiments
- Compartiment-fichiers
- Bibliothèques
- Files d'attente (Queues)
- éléments de la file d'attente
- Déclencheurs (Triggers)
- Webhooks
- add-test-data-entity
- ajouter une file d'attente de données de test
- add-test-data-variation
- Analyser
- Construire
- créer-projet
- Différence
- recherche-activités
- Obtenir les règles de l'analyse
- récupérer-activité-xaml par défaut
- Récupérer les erreurs
- obtenir des cas de test manuels
- Obtenir les étapes de test manuelles
- get-library-object-repository
- get-object-repository
- Obtenir les versions
- exemple de workflow
- indiquer l'application
- indiquer l'élément
- inspecter-package
- install-data-fabric-entities
- installer-ou-Update-packages
- list-data-fabric-entités
- list-instances
- listes-exemples-workflow
- Créer un package
- Publier
- remote
- restore
- run, debug & execution
- Exécuter le fichier
- modèles-recherche
- Démarrer-Studio
- arrêter l'exécution
- tm
- UIA
- uip tasks
- Traçages UIP
- uip traces feedback
- Migration
- Référence et assistance
Syntax and options for `uip maestro case task-entry-conditions get`, which reads the rules that gate when a task becomes runnable in a case management definition JSON file, plus the JSON field reference for hand-editing one.
A task entry condition is a named rule set attached to a task that determines when the task becomes eligible to run — for example, only after every other task in the stage has completed, or only after specific named tasks finish. uip maestro case task-entry-conditions reads these conditions from a case-definition JSON file.
For the tasks these conditions gate, see uip maestro case tasks. For the overall Case Management concept model, see uip maestro case.
Concepts
- Rule type — the real, source-validated set is
current-stage-entered,selected-tasks-completed,wait-for-connector,adhoc,runs-sequentially.selected-tasks-completedadditionally requires a list of task IDs. Note: this command's own built-in--helpexample demonstrates--rule-type all-previous-tasks-completed, which is not in the validated list above — treat that specific value as a bug in the source's own example, not a valid rule type.
Synthèse
uip maestro case task-entry-conditions get <file> <stage-id> <task-id> <condition-id>
uip maestro case task-entry-conditions get <file> <stage-id> <task-id> <condition-id>
uip maestro case task-entry-conditions get
Print an entry condition by ID.
Arguments
| Nom | Requis | Objectif |
|---|---|---|
<file> | oui | Path to the case management JSON file. |
<stage-id> | oui | ID of the stage node. |
<task-id> | oui | ID of the task. |
<condition-id> | oui | ID of the entry condition to retrieve. |
Exemple
uip maestro case task-entry-conditions get case.json Stage_1 Task_1 Condition_a1b2c3d4
uip maestro case task-entry-conditions get case.json Stage_1 Task_1 Condition_a1b2c3d4
Format des données (--sortie json)
{
"Code": "TaskEntryConditionFound",
"Data": {
"Condition": { "id": "Condition_a1b2c3d4", "displayName": "Start", "rules": [[{ "id": "Rule_e5f6a7b8", "type": "current-stage-entered" }]] }
}
}
{
"Code": "TaskEntryConditionFound",
"Data": {
"Condition": { "id": "Condition_a1b2c3d4", "displayName": "Start", "rules": [[{ "id": "Rule_e5f6a7b8", "type": "current-stage-entered" }]] }
}
}
Condition is the raw node object as stored on disk — use this shape as a reference when hand-editing caseplan.json. rules is a nested array — one inner array per OR-branch rule group.
Task-entry-condition JSON fields
Conditions are added, edited, and removed by hand in caseplan.json's task-entry-conditions array. Field reference:
| Champ | Valeur (Value) | Remarques |
|---|---|---|
displayName | string | Display name for the condition. |
Règles type | current-stage-entered|selected-tasks-completed|wait-for-connector|adhoc|runs-sequentially | Goes inside a rules[][] entry. |
| condition expression | string | Free-form expression on a rule, when the rule type supports one. |
selectedTasksIds | array of strings | Required alongside a selected-tasks-completed rule. |
After editing caseplan.json's task-entry-conditions array directly, run uip maestro case validate.
Associé
- uip maestro case — concepts and the full subsystem directory.
- uip maestro case tasks — the tasks these conditions gate.
- uip maestro case cases & stages — the stage a task lives inside.
- uip maestro case conditions — the case-level and stage-level equivalents.