- Información general
- Comience ya
- Conceptos
- Uso de UiPath CLI
- Guías prácticas
- Recetas de CI/CD
- Referencia de los comandos
- Información general
- Códigos de salida
- Opciones globales
- agente de código UIP
- uip coder
- uip context-grounding
- UIP Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- añadir-entidad-de-datos-de-prueba
- añadir-cola-de-datos-de-prueba
- añadir-variación-de-datos-de-prueba
- Analizar
- Crear
- Crear proyecto
- Diferencia
- Buscar actividades
- obtener-reglas-del-analizador
- obtener-predeterminado-actividad-xaml
- obtener-errores
- obtener-casos-de-prueba-manual
- obtener-pasos-de-prueba-manual
- get-library-object-repository
- get-object-repository
- obtener versiones
- get-workflow-example
- indicar-aplicación
- indicar-elemento
- inspeccionar-paquete
- install-data-fabric-entities
- instalar-o-actualizar-paquetes
- enumerar-data-fabric-entities
- list-instances
- ejemplos-de-flujo-de-trabajo-de-lista
- Paquete
- Publicar
- remote
- restore
- run, debug & execution
- archivo de ejecución
- plantillas-de-búsqueda
- iniciar-studio
- detener la ejecución
- tm
- UIA
- uip tasks
- Seguimientos de UIP
- uip traces feedback
- Migración
- Referencia y soporte
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.
Sinopsis
uip api-workflow bindings sync --workflow <path>
uip api-workflow bindings sync --workflow <path>
uip api-workflow bindings sync
Opciones
| Marca | Descripción |
|---|---|
--workflow <path> | Required. Path to the API Workflow JSON file. bindings_v2.json is written into the same directory. |
Ejemplo
uip api-workflow bindings sync --workflow ./my-workflow/Workflow.json
uip api-workflow bindings sync --workflow ./my-workflow/Workflow.json
Forma de datos (--json de salida)
{
"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).
Relacionado
- 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.