- 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 flow debug-instance`, a low-level debugger control surface for stepping through, inspecting, and steering a Studio Web debug session.
uip maestro flow debug-instance is a low-level debugger control surface — create a debug instance, then step through it, inspect its variables and incidents, and cancel or continue it. This is a different, more granular layer than uip maestro flow debug, which uploads a project and polls to completion in one call. debug-instance is what you'd reach for to build a custom debugging tool (for example, an editor integration) around Studio Web's debug protocol, driving one step at a time.
Synthèse
uip maestro flow 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 flow debug-instance status <instance-id>
uip maestro flow debug-instance breakpoints <instance-id> [--inputs <json|@file>]
uip maestro flow debug-instance cancel <instance-id>
uip maestro flow debug-instance continue <instance-id> [--inputs <json|@file>]
uip maestro flow debug-instance incidents <instance-id>
uip maestro flow debug-instance variables <instance-id> [--parent-element-id <id>]
uip maestro flow debug-instance variables-set <instance-id> [--inputs <json|@file>]
uip maestro flow debug-instance variables-all <instance-id>
uip maestro flow 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 flow debug-instance status <instance-id>
uip maestro flow debug-instance breakpoints <instance-id> [--inputs <json|@file>]
uip maestro flow debug-instance cancel <instance-id>
uip maestro flow debug-instance continue <instance-id> [--inputs <json|@file>]
uip maestro flow debug-instance incidents <instance-id>
uip maestro flow debug-instance variables <instance-id> [--parent-element-id <id>]
uip maestro flow debug-instance variables-set <instance-id> [--inputs <json|@file>]
uip maestro flow debug-instance variables-all <instance-id>
Honors global options. Exit codes follow the standard contract. Requires uip login.
uip maestro flow debug-instance create
Begin a debug session in Orchestrator and create the corresponding debug instance for an already-uploaded solution.
Options
| Option | Requis | Default | 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 | processOrchestration | Process type. |
--debug-mode <mode> | non | Default | Default (pause at breakpoints), StepByStep (pause at every step), or SingleStep (execute exactly one step). |
--simulation-mode <mode> | non | None | None, All (simulate every element), or Selective (simulate except opt-outs). |
-i, --inputs <json> | non | {} | Les arguments d'entrée sous la forme d'une chaîne JSON. |
Invalid --debug-mode/--simulation-mode values fail fast, listing the valid set.
Format des données
{
"Code": "DebugInstanceCreated",
"Data": {
"instanceId": "…",
"runId": "…",
"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": "…",
"runId": "…",
"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 flow debug-instance status
Get per-element execution status. Argument: <instance-id>. Data shape: Code: "DebugInstanceStatus".
uip maestro flow debug-instance breakpoints
Update the breakpoint set for a paused instance. Argument: <instance-id>. Option: --inputs <value> — breakpoints payload as a JSON string, an @file path, or piped via stdin. Data shape: Code: "DebugInstanceBreakpointsUpdated".
uip maestro flow debug-instance cancel
Cancel a debug instance. Argument: <instance-id>. Data shape: Code: "DebugInstanceCanceled".
uip maestro flow debug-instance continue
Resume execution on a paused instance. Argument: <instance-id>. Option: --inputs <value> — a JSON string, @file path, or stdin; defaults to {"nextStep": false} when omitted (run to the next breakpoint rather than a single step). Data shape: Code: "DebugInstanceContinued".
uip maestro flow debug-instance incidents
Get incidents raised during the debug session. Argument: <instance-id>. Data shape: Code: "DebugInstanceIncidents", Data is an array (empty if none).
uip maestro flow debug-instance variables
Get variables for the instance. Argument: <instance-id>. Option: --parent-element-id <id> — filter to variables scoped under one element. Data shape: Code: "DebugInstanceVariables".
uip maestro flow debug-instance variables-set
Patch (partially update) variables. Argument: <instance-id>. Option: --inputs <value> — patch payload as JSON string, @file path, or stdin. Data shape: Code: "DebugInstanceVariablesSet".
uip maestro flow debug-instance variables-all
Get all variables, including subprocess scopes. Argument: <instance-id>. Data shape: Code: "DebugInstanceVariablesAll".
Voir également
uip maestro flow debug— the higher-level, upload-and-poll debug command most workflows should use insteaduip maestro flow instance— the equivalent control surface for a published, running instance rather than a debug session- Vue d’ensemble du flux
- Options globales, codes de sortie
- Synthèse
- uip maestro flow debug-instance create
- Options
- Format des données
- uip maestro flow debug-instance status
- uip maestro flow debug-instance breakpoints
- uip maestro flow debug-instance cancel
- uip maestro flow debug-instance continue
- uip maestro flow debug-instance incidents
- uip maestro flow debug-instance variables
- uip maestro flow debug-instance variables-set
- uip maestro flow debug-instance variables-all
- Voir également