- 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
- Proyectos
- Taxonomía
- documents & labellings
- deployments
- 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 ixp deployments`, which deploys a trained IXP model version to an Orchestrator folder and manages existing deployments.
uip ixp deployments deploys a trained model version to an Orchestrator folder, making it callable at runtime by activities and Maestro Flow; moves an existing deployment to another version; and inspects the taxonomy pinned to a specific version. See Concepts on the parent page for how deploying relates to publishing a model version.
Sinopsis
uip ixp deployments create <project-name> --version <n> --folder-key <guid> [--title <title>]
uip ixp deployments upgrade <project-name> <deployment-name> --version <n> --folder-key <guid>
uip ixp deployments list <project-name>
uip ixp deployments get-taxonomy <project-name> --version <n>
uip ixp deployments create <project-name> --version <n> --folder-key <guid> [--title <title>]
uip ixp deployments upgrade <project-name> <deployment-name> --version <n> --folder-key <guid>
uip ixp deployments list <project-name>
uip ixp deployments get-taxonomy <project-name> --version <n>
uip ixp deployments create
Deploy a trained model version to an Orchestrator folder. Only ever adds a deployment — moving an existing one to a different version is deployments upgrade.
Argumentos
| Nombre | Obligatorio | Propósito |
|---|---|---|
<project-name> | Sí | Project name. |
Opciones
| Largo | Valor | Obligatorio | Descripción |
|---|---|---|---|
--version <number> | non-negative integer | Sí | Trained model version to deploy. Get available versions from projects list-models. |
--folder-key <guid> | GUID | Sí | Orchestrator folder key to deploy into. Get it from uip or folders list --output json. |
--title <title> | String | No | Title to deploy under. Defaults to the project name minus its -ixp suffix. Comes back verbatim as DeploymentTitle; the backend slugs and suffixes it into the name the runtime resolves, returned as DeploymentName. |
A 409 conflict from the backend (the project already has a deployment in that folder) is enriched with a hint pointing you to deployments upgrade instead — the naive retry of re-running create with the same arguments would 404, since upgrade addresses the deployment by DeploymentName, not the title you passed.
Ejemplos
uip ixp deployments create my-invoices-a1b2c3d4-ixp --version 13 \
--folder-key 3f0a91c7-1111-2222-3333-444455556666
uip ixp deployments create my-invoices-a1b2c3d4-ixp --version 13 \
--folder-key 3f0a91c7-1111-2222-3333-444455556666
uip ixp deployments create my-invoices-a1b2c3d4-ixp --version 13 \
--folder-key 3f0a91c7-1111-2222-3333-444455556666 --title invoices
uip ixp deployments create my-invoices-a1b2c3d4-ixp --version 13 \
--folder-key 3f0a91c7-1111-2222-3333-444455556666 --title invoices
Forma de datos (--json de salida)
{
"Code": "IxpDeploymentsCreate",
"Data": {
"ProjectName": "my-invoices-a1b2c3d4-ixp",
"ModelVersion": 13,
"FolderKey": "3f0a91c7-1111-2222-3333-444455556666",
"DeploymentName": "my-invoices-a1b2c3d4-7c3f21e8-ixp",
"DeploymentTitle": "my-invoices-a1b2c3d4"
}
}
{
"Code": "IxpDeploymentsCreate",
"Data": {
"ProjectName": "my-invoices-a1b2c3d4-ixp",
"ModelVersion": 13,
"FolderKey": "3f0a91c7-1111-2222-3333-444455556666",
"DeploymentName": "my-invoices-a1b2c3d4-7c3f21e8-ixp",
"DeploymentTitle": "my-invoices-a1b2c3d4"
}
}
DeploymentName is always suffixed with a generated ID — never just the project name or title, even when --title is omitted.
uip ixp deployments upgrade
Move an existing deployment to another trained model version, changing which version every runtime caller of that folder and name gets.
Argumentos
| Nombre | Obligatorio | Propósito |
|---|---|---|
<project-name> | Sí | Project name. |
<deployment-name> | Sí | Deployment to move, addressed by the name the runtime resolves — the DeploymentName field of deployments list, not the title it was created under. |
Opciones
| Largo | Valor | Obligatorio | Descripción |
|---|---|---|---|
--version <number> | non-negative integer | Sí | Trained model version to move the deployment to. |
--folder-key <guid> | GUID | Sí | Orchestrator folder key hosting the deployment. The same name can be deployed in several folders, so the folder is part of the deployment's identity. |
Ejemplo
uip ixp deployments upgrade my-invoices-a1b2c3d4-ixp invoices-08963f00-ixp \
--version 14 --folder-key 3f0a91c7-1111-2222-3333-444455556666
uip ixp deployments upgrade my-invoices-a1b2c3d4-ixp invoices-08963f00-ixp \
--version 14 --folder-key 3f0a91c7-1111-2222-3333-444455556666
Forma de datos (--json de salida)
{
"Code": "IxpDeploymentsUpgrade",
"Data": {
"ProjectName": "my-invoices-a1b2c3d4-ixp",
"ModelVersion": 14,
"FolderKey": "3f0a91c7-1111-2222-3333-444455556666",
"DeploymentName": "invoices-08963f00-ixp",
"DeploymentTitle": "invoices"
}
}
{
"Code": "IxpDeploymentsUpgrade",
"Data": {
"ProjectName": "my-invoices-a1b2c3d4-ixp",
"ModelVersion": 14,
"FolderKey": "3f0a91c7-1111-2222-3333-444455556666",
"DeploymentName": "invoices-08963f00-ixp",
"DeploymentTitle": "invoices"
}
}
uip ixp deployments list
List the project's model deployments, across every version and folder it has been deployed to.
Argumentos
| Nombre | Obligatorio | Propósito |
|---|---|---|
<project-name> | Sí | Project name. |
Ejemplo
uip ixp deployments list my-invoices-a1b2c3d4-ixp
uip ixp deployments list my-invoices-a1b2c3d4-ixp
Forma de datos (--json de salida)
{
"Code": "IxpDeploymentsList",
"Data": [
{
"DeploymentName": "invoices-08963f00-ixp",
"DeploymentTitle": "invoices",
"ModelVersion": 13,
"FolderKey": "3f0a91c7-1111-2222-3333-444455556666",
"DeployedAt": "2026-08-18T11:26:25.367124+00:00"
}
]
}
{
"Code": "IxpDeploymentsList",
"Data": [
{
"DeploymentName": "invoices-08963f00-ixp",
"DeploymentTitle": "invoices",
"ModelVersion": 13,
"FolderKey": "3f0a91c7-1111-2222-3333-444455556666",
"DeployedAt": "2026-08-18T11:26:25.367124+00:00"
}
]
}
uip ixp deployments get-taxonomy
Get the project taxonomy (data types + field groups) at a specific trained model version — the schema that powers that deployed model.
Argumentos
| Nombre | Obligatorio | Propósito |
|---|---|---|
<project-name> | Sí | Project name. |
Opciones
| Largo | Valor | Obligatorio | Descripción |
|---|---|---|---|
--version <number> | non-negative integer | Sí | Trained model version. Get available versions from projects list-models. |
Ejemplo
uip ixp deployments get-taxonomy my-invoices --version 13 --output json
uip ixp deployments get-taxonomy my-invoices --version 13 --output json
Forma de datos (--json de salida)
{
"Code": "IxpDeploymentsGetTaxonomy",
"Data": { "dataset": { "entity_defs": [], "label_groups": [] } }
}
{
"Code": "IxpDeploymentsGetTaxonomy",
"Data": { "dataset": { "entity_defs": [], "label_groups": [] } }
}
Data is forwarded verbatim in the backend's raw snake_case, not PascalCased.
Relacionado
- uip ixp — concepts and the full resource directory.
- uip ixp projects —
publish/list-modelsto produce the version numbers this page deploys.
Ver también
- Sinopsis
- uip ixp deployments create
- Argumentos
- Opciones
- Ejemplos
- Forma de datos (--json de salida)
- uip ixp deployments upgrade
- Argumentos
- Opciones
- Ejemplo
- Forma de datos (--json de salida)
- uip ixp deployments list
- Argumentos
- Ejemplo
- Forma de datos (--json de salida)
- uip ixp deployments get-taxonomy
- Argumentos
- Opciones
- Ejemplo
- Forma de datos (--json de salida)
- Relacionado
- Ver también