- 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 the deprecated `uip maestro bpmn update-metadata` command — use `uip maestro bpmn refresh` instead.
Deprecated. Use uip maestro bpmn refresh instead. The command still works and is documented below for existing scripts, but every invocation prints a [WARN] deprecation notice to stderr.
uip maestro bpmn update-metadata writes (or checks) project.uiproj, operate.json, entry-points.json, bindings_v2.json, and package-descriptor.json from a .bpmn file. Unlike refresh, it does not materialize Integration Service connection bindings — a package produced this way is not guaranteed runnable. It's registered under the bpmn branch.
Synthèse
uip maestro bpmn update-metadata <bpmn> [--output-dir <dir>] [--dry-run]
uip maestro bpmn update-metadata <bpmn> [--output-dir <dir>] [--dry-run]
Les options globales sont respectées. Les codes de sortie suivent le contrat standard.
Arguments
<bpmn>(obligatoire) : chemin d'accès au fichier.bpmn.
Options
| Option | Default | Description |
|---|---|---|
--output-dir <dir> | directory of <bpmn> | Directory for the metadata JSON files. In --dry-run mode, this is the directory whose existing files are checked for drift instead. |
--dry-run | désactivé | Report drift against the .bpmn file without writing anything. |
Exemples
# Write metadata files next to the .bpmn
uip maestro bpmn update-metadata process.bpmn
# Check for drift without writing
uip maestro bpmn update-metadata process.bpmn --dry-run
# Write metadata files next to the .bpmn
uip maestro bpmn update-metadata process.bpmn
# Check for drift without writing
uip maestro bpmn update-metadata process.bpmn --dry-run
Format des données (--sortie json)
Write mode:
{
"Code": "MaestroBpmnUpdateMetadata",
"Data": {
"DryRun": false,
"ProjectName": "process",
"OutDir": "/workspace/my-project",
"FilesWritten": [
"project.uiproj",
"operate.json",
"entry-points.json",
"bindings_v2.json",
"package-descriptor.json"
],
"EntryPointCount": 1
}
}
{
"Code": "MaestroBpmnUpdateMetadata",
"Data": {
"DryRun": false,
"ProjectName": "process",
"OutDir": "/workspace/my-project",
"FilesWritten": [
"project.uiproj",
"operate.json",
"entry-points.json",
"bindings_v2.json",
"package-descriptor.json"
],
"EntryPointCount": 1
}
}
--dry-run mode:
{
"Code": "MaestroBpmnUpdateMetadata",
"Data": {
"DryRun": true,
"Status": "OK",
"Drifts": []
}
}
{
"Code": "MaestroBpmnUpdateMetadata",
"Data": {
"DryRun": true,
"Status": "OK",
"Drifts": []
}
}
Voir également
uip maestro bpmn refresh— current replacement, also materializes Integration Service connection bindingsuip maestro bpmn init— scaffold a new project instead of hand-assembling metadata- Vue d’ensemble de Maestro