- Visão geral
- Introdução
- Conceitos
- Usando o UiPath CLI
- Guias de instruções
- Receitas de CI/CD
- Referência de comando
- Visão geral
- Códigos de saída
- Opções globais
- Agente de código uip
- uip coder
- uip context-grounding
- Documento da UIP
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- adicionar-tipo-dados-de-teste
- adicionar-dados-de-teste-fila
- adicionar-teste-variação de dados
- Analisar
- Criar
- criar projeto
- Comparação
- encontrar atividades
- obter-analisador-regras
- obter-padrão-atividade-xaml
- obter-erros
- obter-casos-de-teste-manuais
- obter-etapas-de-teste-manual
- get-library-object-repository
- get-object-repository
- Obter versões
- obter-fluxo-de-trabalho-exemplo
- indicar aplicativo
- indicar elemento
- inspecionar pacote
- instalar-data-fabric-entities
- instalar-ou-atualizar pacotes
- listar-data-fabric-entities
- list-instances
- listar-exemplos-de-fluxo-de-trabalho
- Empacotar
- Publicar
- remote
- restore
- run, debug & execution
- arquivo de execução
- modelos-pesquisar
- Iniciar Studio
- interromper a execução
- tm
- UIA
- uip tasks
- Traces da UIP
- uip traces feedback
- Init
- Sincronização
- Adicionar
- Gerar
- Migração
- Referência e suporte
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).
Resumo
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.
Opções
| Bandeira | Description | AplicávelA |
|---|---|---|
--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 |
Exemplos
# 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
Formato dos dados (--output 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.
Relacionado
- uip vss init — produce the
vss.jsonthataddrewrites. - uip vss sync — concilia os processos registrados com o UiPath Cloud.
- uip vss generate — atualize os tipos de TypeScript após adicionar processos.