- 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 bpmn debug-instance`, which drives an interactive, breakpoint-capable debug session against an already-uploaded Studio Web solution.
uip maestro bpmn debug-instance drives a low-level, interactive debug session — create the instance, inspect its status/variables/incidents, set breakpoints, and step it forward. It's registered under the bpmn branch.
This is a different, lower-level surface than uip maestro bpmn debug: debug is a one-shot "upload and run to completion" command. debug-instance assumes the solution is already uploaded to Studio Web and gives you manual control over one debug run — pausing at breakpoints, inspecting variables mid-run, and stepping forward — the interactive counterpart, referenced by debug's own error instructions when a debug session needs step-level control.
Synthèse
uip maestro bpmn debug-instance create --solution-id <id> --project-id <id> --entry-point <path>
[--process-type <type>] [--debug-mode <mode>] [--simulation-mode <mode>] [-i, --inputs <json>]
uip maestro bpmn debug-instance status <instance-id>
uip maestro bpmn debug-instance breakpoints <instance-id> --inputs <json|@file>
uip maestro bpmn debug-instance cancel <instance-id>
uip maestro bpmn debug-instance continue <instance-id> [--inputs <json|@file>]
uip maestro bpmn debug-instance incidents <instance-id>
uip maestro bpmn debug-instance variables <instance-id> [--parent-element-id <id>]
uip maestro bpmn debug-instance variables-set <instance-id> --inputs <json|@file> [--parent-element-id <id>]
uip maestro bpmn debug-instance variables-all <instance-id>
uip maestro bpmn debug-instance create --solution-id <id> --project-id <id> --entry-point <path>
[--process-type <type>] [--debug-mode <mode>] [--simulation-mode <mode>] [-i, --inputs <json>]
uip maestro bpmn debug-instance status <instance-id>
uip maestro bpmn debug-instance breakpoints <instance-id> --inputs <json|@file>
uip maestro bpmn debug-instance cancel <instance-id>
uip maestro bpmn debug-instance continue <instance-id> [--inputs <json|@file>]
uip maestro bpmn debug-instance incidents <instance-id>
uip maestro bpmn debug-instance variables <instance-id> [--parent-element-id <id>]
uip maestro bpmn debug-instance variables-set <instance-id> --inputs <json|@file> [--parent-element-id <id>]
uip maestro bpmn debug-instance variables-all <instance-id>
All subcommands require uip login, honor global options, and follow the standard exit-code contract.
uip maestro bpmn debug-instance create
Create a debug instance from a solution already uploaded to Studio Web, and begin a debug session in Orchestrator's personal workspace folder.
Options
| Option | Requis | Description |
|---|---|---|
--solution-id <id> | oui | Solution ID from a previous upload or Studio Web. |
--project-id <id> | oui | Studio Web project ID within the solution. |
--entry-point <path> | oui | Entry point path, e.g. /Main.bpmn#start. |
--process-type <type> | non | Process type. Default processOrchestration. |
--debug-mode <mode> | non | One of None, Default (pause at breakpoints), StepByStep (pause at every step), SingleStep (one step only). Default Default. An invalid value fails fast listing the accepted set. |
--simulation-mode <mode> | non | One of None, All (simulate all elements), Selective (simulate except opt-outs). Default None. An invalid value fails fast listing the accepted set. |
-i, --inputs <json> | non | Input arguments as a JSON string. Default {}. |
Format des données
{
"Code": "DebugInstanceCreated",
"Data": {
"instanceId": "c3d4e5f6-...",
"runId": "d4e5f6a7-...",
"jobKey": "b2c3d4e5-..."
},
"Instructions": "Use 'debug-instance status <instance-id>' to check the run. Use 'debug-instance incidents <instance-id>' or 'debug-instance variables <instance-id>' to inspect it."
}
{
"Code": "DebugInstanceCreated",
"Data": {
"instanceId": "c3d4e5f6-...",
"runId": "d4e5f6a7-...",
"jobKey": "b2c3d4e5-..."
},
"Instructions": "Use 'debug-instance status <instance-id>' to check the run. Use 'debug-instance incidents <instance-id>' or 'debug-instance variables <instance-id>' to inspect it."
}
uip maestro bpmn debug-instance status
Get the current per-element execution status of a debug instance.
Arguments: <instance-id> (required). Data shape: Code: "DebugInstanceStatus".
uip maestro bpmn debug-instance breakpoints
Replace the breakpoint set on a debug instance.
Arguments: <instance-id> (required).
Options: --inputs <value> — breakpoints payload as a JSON string, @file path, or piped via stdin. If omitted, an empty breakpoint list ({"breakpoints": []}) is sent, clearing all breakpoints.
Format des données: Code: "DebugInstanceBreakpointsUpdated".
uip maestro bpmn debug-instance cancel
Cancel a debug instance.
Arguments: <instance-id> (required). Data shape: Code: "DebugInstanceCanceled".
uip maestro bpmn debug-instance continue
Resume execution on a paused debug instance.
Arguments: <instance-id> (required).
Options: --inputs <value> — continue payload as a JSON string, @file path, or piped via stdin. If omitted, {"nextStep": false} is sent (run to the next breakpoint rather than a single step).
Format des données: Code: "DebugInstanceContinued".
uip maestro bpmn debug-instance incidents
Get incidents raised during a debug instance's run.
Arguments: <instance-id> (required). Data shape: Code: "DebugInstanceIncidents", Data is an array (empty when there are none).
uip maestro bpmn debug-instance variables
Get a debug instance's current variable values.
Arguments: <instance-id> (required).
Options: --parent-element-id <id> — filter variables by parent element ID.
Format des données: Code: "DebugInstanceVariables".
uip maestro bpmn debug-instance variables-set
Patch (update) a debug instance's variables mid-run.
Arguments: <instance-id> (required).
Options:
| Option | Requis | Description |
|---|---|---|
--inputs <value> | oui | Patch-variables payload as a JSON string, @file path, or piped via stdin. Fails if no payload resolves. |
--parent-element-id <id> | non | Scope the patch to a parent element ID. |
Format des données: Code: "DebugInstanceVariablesSet".
uip maestro bpmn debug-instance variables-all
Get every variable for a debug instance, including subprocess variables.
Arguments: <instance-id> (required). Data shape: Code: "DebugInstanceVariablesAll".
Exemples
# Create a debug session, stepping through one element at a time
uip maestro bpmn debug-instance create \
--solution-id <solution-id> --project-id <project-id> \
--entry-point "/Main.bpmn#start" --debug-mode StepByStep
# Check status, then step forward
uip maestro bpmn debug-instance status <instance-id>
uip maestro bpmn debug-instance continue <instance-id>
# Inspect and patch a variable mid-run
uip maestro bpmn debug-instance variables <instance-id>
uip maestro bpmn debug-instance variables-set <instance-id> --inputs '{"amount": 250}'
# Clean up
uip maestro bpmn debug-instance cancel <instance-id>
# Create a debug session, stepping through one element at a time
uip maestro bpmn debug-instance create \
--solution-id <solution-id> --project-id <project-id> \
--entry-point "/Main.bpmn#start" --debug-mode StepByStep
# Check status, then step forward
uip maestro bpmn debug-instance status <instance-id>
uip maestro bpmn debug-instance continue <instance-id>
# Inspect and patch a variable mid-run
uip maestro bpmn debug-instance variables <instance-id>
uip maestro bpmn debug-instance variables-set <instance-id> --inputs '{"amount": 250}'
# Clean up
uip maestro bpmn debug-instance cancel <instance-id>
Voir également
uip maestro bpmn debug— one-shot upload-and-run debug sessionuip maestro bpmn instance— the equivalent operations on a published process instance, rather than a debug session- Vue d’ensemble de Maestro
- Synthèse
- uip maestro bpmn debug-instance create
- Options
- Format des données
- uip maestro bpmn debug-instance status
- uip maestro bpmn debug-instance breakpoints
- uip maestro bpmn debug-instance cancel
- uip maestro bpmn debug-instance continue
- uip maestro bpmn debug-instance incidents
- uip maestro bpmn debug-instance variables
- uip maestro bpmn debug-instance variables-set
- uip maestro bpmn debug-instance variables-all
- Exemples
- Voir également