- 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 vss add`, which adds a process or a local Data Fabric entity to the current vertical solution.
uip vss add adds a process or a local Data Fabric entity to the current vertical solution. For process, it rewrites vss.json to include the new entry. For entity, it writes an entity definition into data_fabric_schema.json — it does not touch vss.json. The [target] positional means something different per type: for process it's the project directory to add (defaults to the current directory); for entity it's the entity name (required).
Synthèse
uip vss add process [target]
uip vss add entity <target> [options]
uip vss add process [target]
uip vss add entity <target> [options]
<type>—process,entity, orconnection.[target]— Project directory (process) or entity name (entity). Defaults to the current directory forprocess; required forentity.
Options
| Drapeau | Description | ApplicableÀ |
|---|---|---|
--field <definition> | Entity field definition as <name>:<type>. Repeatable. | entity |
-s, --schema <path> | Path to data_fabric_schema.json. Defaults to data_fabric_schema.json in the target directory. | entity |
-t, --target-path <targetPath> | Vertical solution directory. Defaults to the current directory. | all types |
Exemples
# Add a process from the current directory
uip vss add process
# Add a process from an explicit path
uip vss add process ./processes/onboarding
# Add a local Data Fabric entity with two fields
uip vss add entity Employee --field name:string --field salary:number
# Add a process from the current directory
uip vss add process
# Add a process from an explicit path
uip vss add process ./processes/onboarding
# Add a local Data Fabric entity with two fields
uip vss add entity Employee --field name:string --field salary:number
Format des données (--sortie json)
{
"Code": "ProcessesAdded",
"Data": {
"Status": "1 processes added successfully",
"Path": "/Users/alice/my-app"
}
}
{
"Code": "ProcessesAdded",
"Data": {
"Status": "1 processes added successfully",
"Path": "/Users/alice/my-app"
}
}
For entity, the shape is different:
{
"Code": "EntityAdded",
"Data": {
"Entity": "Employee",
"Fields": ["name", "salary"],
"Schema": "/Users/alice/my-app/data_fabric_schema.json"
}
}
{
"Code": "EntityAdded",
"Data": {
"Entity": "Employee",
"Fields": ["name", "salary"],
"Schema": "/Users/alice/my-app/data_fabric_schema.json"
}
}
connection is registered as a valid <type> value but always fails with Failure: "Connections are not supported yet" — it is not implemented. Use process or entity.
Associé
- uip vss init — produce the
vss.jsonthataddrewrites. - uip vss sync — réconcilier les processus enregistrés avec UiPath Cloud.
- uip vss assemblies : actualisez les types TypeScript après l’ajout de processus.