- 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 api-workflow bindings sync`, which generates a bindings_v2.json file from an API Workflow JSON for solutions authored outside Studio Web.
uip api-workflow bindings generates the per-project bindings_v2.json file that uip solution resources refresh needs to populate a solution's resource catalogue. Studio Web computes this file in-memory whenever a workflow is opened in the designer; for agent-authored workflows that never get opened in Studio, bindings sync does the same translation offline — it walks the workflow, extracts IntSvc connector activities (skipping Http-kind / implicit-connection activities), dedupes by connection UUID, and writes bindings_v2.json next to the workflow file.
Synthèse
uip api-workflow bindings sync --workflow <path>
uip api-workflow bindings sync --workflow <path>
uip api-workflow bindings sync
Options
| Drapeau | Description |
|---|---|
--workflow <path> | Required. Path to the API Workflow JSON file. bindings_v2.json is written into the same directory. |
Exemple
uip api-workflow bindings sync --workflow ./my-workflow/Workflow.json
uip api-workflow bindings sync --workflow ./my-workflow/Workflow.json
Format des données (--sortie json)
{
"Code": "BindingsSync",
"Data": {
"BindingsPath": "/work/my-workflow/bindings_v2.json",
"ResourceCount": 3,
"ActivitiesVisited": 12,
"IntSvcActivities": 4,
"DuplicatesCollapsed": 1,
"ResourceBindings": [],
"PreservedResources": []
}
}
{
"Code": "BindingsSync",
"Data": {
"BindingsPath": "/work/my-workflow/bindings_v2.json",
"ResourceCount": 3,
"ActivitiesVisited": 12,
"IntSvcActivities": 4,
"DuplicatesCollapsed": 1,
"ResourceBindings": [],
"PreservedResources": []
}
}
PreservedResources lists any existing bindings_v2.json entries that were kept as-is because they didn't correspond to an IntSvc activity found during this walk (for example, a resource referenced only by a Http-kind activity).
Associé
- uip solution resources — consumes
bindings_v2.jsonto populate the solution resource catalogue and per-user debug overwrites. - uip is connections — get a connection UUID to pass into an activity stub before running
bindings sync. - uip api-workflow registry — emit the connector activity stubs that
bindings syncwalks.