- 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
- apps model
- ingestions & transformations
- conformance, deviations & query
- 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 triggering and inspecting Process Mining data ingestions and dbt transformations with `uip pm ingestions` and `uip pm transformations`.
Part of the uip pm tool. ingestions loads uploaded data files into a process app; transformations manages and runs the dbt SQL models that reshape ingested data into the app's queryable tables. Both support --wait to block until a run finishes — see Concepts on the parent page.
Synthèse
uip pm ingestions create <app-id> [--stage dev|published] [--file-format csv|tsv] [--field-delimiter <char>] [--quote-character <char>] [--encoding utf-8|iso-8859-1] [--wait] [--timeout <s>] [--poll-interval <s>]
uip pm ingestions cancel <app-id> <ingestion-id> [--stage dev|published]
uip pm ingestions logs <app-id> <ingestion-id> [--stage dev|published] [--limit <n>] [--offset <n>]
uip pm transformations list <app-id> [--stage dev|published]
uip pm transformations get <app-id> <path> [--stage dev|published] [--destination <file>]
uip pm transformations create <app-id> <path> --file <local-file> [--stage dev|published]
uip pm transformations update <app-id> <path> --file <local-file> --etag <etag> [--stage dev|published]
uip pm transformations run <app-id> [--model <path>] [--wait] [--timeout <s>] [--poll-interval <s>]
uip pm transformations apply <app-id> [--stage dev|published] [--wait] [--timeout <s>] [--poll-interval <s>]
uip pm transformations cancel <app-id>
uip pm transformations status <app-id>
uip pm transformations logs <app-id>
uip pm ingestions create <app-id> [--stage dev|published] [--file-format csv|tsv] [--field-delimiter <char>] [--quote-character <char>] [--encoding utf-8|iso-8859-1] [--wait] [--timeout <s>] [--poll-interval <s>]
uip pm ingestions cancel <app-id> <ingestion-id> [--stage dev|published]
uip pm ingestions logs <app-id> <ingestion-id> [--stage dev|published] [--limit <n>] [--offset <n>]
uip pm transformations list <app-id> [--stage dev|published]
uip pm transformations get <app-id> <path> [--stage dev|published] [--destination <file>]
uip pm transformations create <app-id> <path> --file <local-file> [--stage dev|published]
uip pm transformations update <app-id> <path> --file <local-file> --etag <etag> [--stage dev|published]
uip pm transformations run <app-id> [--model <path>] [--wait] [--timeout <s>] [--poll-interval <s>]
uip pm transformations apply <app-id> [--stage dev|published] [--wait] [--timeout <s>] [--poll-interval <s>]
uip pm transformations cancel <app-id>
uip pm transformations status <app-id>
uip pm transformations logs <app-id>
uip pm ingestions create
Trigger an ingestion of the uploaded data files.
Arguments
| Nom | Requis | Objectif |
|---|---|---|
<app-id> | oui | Process app ID. |
Options
| Long | Valeur (Value) | Default | Description |
|---|---|---|---|
--stage <stage> | dev | published | dev | App stage to ingest into. |
--file-format <format> | csv | tsv | csv | Data file format. |
--field-delimiter <char> | string | , | Field delimiter in the data files. |
--quote-character <char> | string | " | Quote character enclosing fields. |
--encoding <encoding> | utf-8 | iso-8859-1 | utf-8 | File encoding. |
--wait | Drapeau | désactivé | Block until the ingestion reaches a terminal state; exit non-zero on failure. |
--timeout <seconds> | Integer | 1800 | Max seconds to wait when --wait is set. |
--poll-interval <seconds> | Integer | 5 | Seconds between status polls when --wait is set. |
Exemple
uip pm ingestions create 9c46289e --file-format csv --encoding iso-8859-1
uip pm ingestions create 9c46289e --file-format csv --encoding iso-8859-1
Format des données (--sortie json)
Sans --wait:
{ "Code": "PmIngestionsCreate", "Data": { "Status": "Accepted", "Message": "Ingestion started. Poll 'uip pm apps list' (LastIngestion) for progress." } }
{ "Code": "PmIngestionsCreate", "Data": { "Status": "Accepted", "Message": "Ingestion started. Poll 'uip pm apps list' (LastIngestion) for progress." } }
Avec --wait:
{ "Code": "PmIngestionsCreate", "Data": { "Status": "SUCCESS", "IngestionId": "1d7e1421" } }
{ "Code": "PmIngestionsCreate", "Data": { "Status": "SUCCESS", "IngestionId": "1d7e1421" } }
On --wait failure, exits non-zero with the ingestion's own error-log lines (via ingestions logs) folded into the failure message.
uip pm ingestions cancel
Cancel an ingestion that is still running.
Arguments
| Nom | Requis | Objectif |
|---|---|---|
<app-id> | oui | Process app ID. |
<ingestion-id> | oui | Ingestion ID (uip pm apps get <app-id> shows LastIngestion). |
Options
| Long | Valeur (Value) | Default | Description |
|---|---|---|---|
--stage <stage> | dev | published | dev | App stage the ingestion runs on. |
Exemple
uip pm ingestions cancel 9c46289e 1d7e1421
uip pm ingestions cancel 9c46289e 1d7e1421
Format des données (--sortie json)
{ "Code": "PmIngestionsCancel", "Data": { "AppId": "9c46289e", "IngestionId": "1d7e1421", "Status": "Cancelling" } }
{ "Code": "PmIngestionsCancel", "Data": { "AppId": "9c46289e", "IngestionId": "1d7e1421", "Status": "Cancelling" } }
uip pm ingestions logs
Get the logs of an ingestion run.
Arguments
| Nom | Requis | Objectif |
|---|---|---|
<app-id> | oui | Process app ID. |
<ingestion-id> | oui | Ingestion ID. |
Options
| Long | Valeur (Value) | Default | Description |
|---|---|---|---|
--stage <stage> | dev | published | dev | App stage the ingestion ran on. |
--limit <number> | Integer | 100 | Max log entries to fetch (page size). |
--offset <number> | Integer | 0 | Number of log entries to skip before the page. |
Exemple
uip pm ingestions logs 9c46289e 1d7e1421 --limit 50 --offset 50
uip pm ingestions logs 9c46289e 1d7e1421 --limit 50 --offset 50
Format des données (--sortie json)
{ "Code": "PmIngestionsLogs", "Data": [{ "Message": "Data run started" }] }
{ "Code": "PmIngestionsLogs", "Data": [{ "Message": "Data run started" }] }
uip pm transformations list
List the transformation (dbt model) files of a process app.
| Name/Option | Requis | Objectif |
|---|---|---|
<app-id> | oui | Process app ID. |
--stage <stage> | non | dev | published, default dev. |
{ "Code": "PmTransformationsList", "Data": {} }
{ "Code": "PmTransformationsList", "Data": {} }
uip pm transformations get
Get the content of a transformation file, plus its ETag — which update requires as --etag.
| Name/Option | Requis | Objectif |
|---|---|---|
<app-id> | oui | Process app ID. |
<path> | oui | Transformation file path, e.g. models/Cases.sql. |
--stage <stage> | non | dev | published, default dev. |
--destination <local-file> | non | Write content to this local file instead of the output envelope. |
{ "Code": "PmTransformationsGet", "Data": { "Path": "models/Cases.sql", "ETag": "W/\"...\"", "Content": "select ..." } }
{ "Code": "PmTransformationsGet", "Data": { "Path": "models/Cases.sql", "ETag": "W/\"...\"", "Content": "select ..." } }
uip pm transformations create
Create a new transformation file from a local file. Use update to modify an existing one — this fails if the path already exists.
Options
| Long | Valeur (Value) | Requis | Description |
|---|---|---|---|
--file <local-file> | Chemin d'accès | oui | Local file with the new content. |
--stage <stage> | dev | published | non | Default dev. |
uip pm transformations create 9c46289e models/Workload.sql --file ./Workload.sql
uip pm transformations create 9c46289e models/Workload.sql --file ./Workload.sql
{ "Code": "PmTransformationsCreate", "Data": { "Path": "models/Workload.sql", "ETag": "W/\"...\"" } }
{ "Code": "PmTransformationsCreate", "Data": { "Path": "models/Workload.sql", "ETag": "W/\"...\"" } }
uip pm transformations update
Update a transformation file from a local file (ETag-safe).
Options
| Long | Valeur (Value) | Requis | Description |
|---|---|---|---|
--file <local-file> | Chemin d'accès | oui | Local file with the new content. |
--etag <etag> | string | oui | ETag of the file this edit is based on, from transformations get. |
--stage <stage> | dev | published | non | Default dev. |
uip pm transformations update 9c46289e models/Cases.sql --file ./Cases.sql --etag 'W/"639204059477096903"'
uip pm transformations update 9c46289e models/Cases.sql --file ./Cases.sql --etag 'W/"639204059477096903"'
{ "Code": "PmTransformationsUpdate", "Data": { "Path": "models/Cases.sql", "ETag": "W/\"639209312397638135\"" } }
{ "Code": "PmTransformationsUpdate", "Data": { "Path": "models/Cases.sql", "ETag": "W/\"639209312397638135\"" } }
A stale --etag fails with a conflict — re-read via transformations get, redo the edit, and retry.
uip pm transformations run
Run the dbt transformations on the dev stage — builds only changed/dependent models. Use apply to force a full re-run on already-ingested data.
Options
| Long | Valeur (Value) | Default | Description |
|---|---|---|---|
--stage <stage> | dev | dev | Seul dev est pris en charge. |
--model <model-path> | Chemin d'accès | — | Run only this model (e.g. models/Cases.sql) and its dependents. Omit to run everything. |
--wait | Drapeau | désactivé | Block until the build reaches a terminal state; exit non-zero on failure (auto-prints the dbt error). |
--timeout <seconds> | Integer | 1800 | Max seconds to wait. |
--poll-interval <seconds> | Integer | 5 | Seconds between polls. |
Exemple
uip pm transformations run 9c46289e --model models/Cases.sql
uip pm transformations run 9c46289e --model models/Cases.sql
Format des données (--sortie json)
{ "Code": "PmTransformationsRun", "Data": { "Status": "Accepted", "Message": "Build started. Re-run with --wait to block until it finishes, or poll 'uip pm transformations status 9c46289e'." } }
{ "Code": "PmTransformationsRun", "Data": { "Status": "Accepted", "Message": "Build started. Re-run with --wait to block until it finishes, or poll 'uip pm transformations status 9c46289e'." } }
uip pm transformations cancel
Cancel the dbt build currently running on dev.
uip pm transformations cancel 9c46289e
uip pm transformations cancel 9c46289e
{ "Code": "PmTransformationsCancel", "Data": { "AppId": "9c46289e", "Status": "Cancelling" } }
{ "Code": "PmTransformationsCancel", "Data": { "AppId": "9c46289e", "Status": "Cancelling" } }
uip pm transformations apply
Re-run the full data transformation on already-ingested data (unlike run, which builds only changed dev models).
| Long | Valeur (Value) | Default | Description |
|---|---|---|---|
--stage <stage> | dev | published | dev | App stage. |
--wait | Drapeau | désactivé | Block until the transform reaches a terminal state; exit non-zero on failure. |
--timeout <seconds> | Integer | 1800 | Max seconds to wait. |
--poll-interval <seconds> | Integer | 5 | Seconds between polls. |
uip pm transformations apply 9c46289e
uip pm transformations apply 9c46289e
{ "Code": "PmTransformationsApply", "Data": { "Status": "Accepted", "Message": "Transform started. Poll 'uip pm apps list' (LastIngestion) for progress." } }
{ "Code": "PmTransformationsApply", "Data": { "Status": "Accepted", "Message": "Transform started. Poll 'uip pm apps list' (LastIngestion) for progress." } }
uip pm transformations status
Get the status of the current/last transformation build.
uip pm transformations status 9c46289e
uip pm transformations status 9c46289e
{ "Code": "PmTransformationsStatus", "Data": {} }
{ "Code": "PmTransformationsStatus", "Data": {} }
uip pm transformations logs
Get the logs of the current/last transformation build.
uip pm transformations logs 9c46289e
uip pm transformations logs 9c46289e
{ "Code": "PmTransformationsLogs", "Data": {} }
{ "Code": "PmTransformationsLogs", "Data": {} }
Associé
uip pm— overview,apps,files.apps model— model/field/data-mapping changes that need re-ingestion or re-transformation to take effect.conformance,deviations&query— analyze the result.
Voir également
- Synthèse
- uip pm ingestions create
- Arguments
- Options
- Exemple
- Format des données (--sortie json)
- uip pm ingestions cancel
- Arguments
- Options
- Exemple
- Format des données (--sortie json)
- uip pm ingestions logs
- Arguments
- Options
- Exemple
- Format des données (--sortie json)
- uip pm transformations list
- uip pm transformations get
- uip pm transformations create
- Options
- uip pm transformations update
- Options
- uip pm transformations run
- Options
- Exemple
- Format des données (--sortie json)
- uip pm transformations cancel
- uip pm transformations apply
- uip pm transformations status
- uip pm transformations logs
- Associé
- Voir également