- 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
- Migração
- Referência e suporte
Syntax and options for `uip or triggers`, which manages time, queue, and API triggers in Orchestrator.
Gerenciar gatilhos do Orchestrator: tempo (programação), fila e API. Os gatilhos de tempo e fila têm escopo de pasta; Os gatilhos de API têm o escopo de tenant. Todo verbo aceita --type <time|queue|api> (padrão time).
Para as convenções entre recursos (autenticação, escopo de pasta, tipos de chave, envelope de saída), consulte a visão geraluip or .
Resumo
uip or triggers list [--type <type>] [--folder-path <path> | --folder-key <key>] [-n <name>] [--enabled | --disabled] [--sort-by <field>] [--all-fields]
uip or triggers get <trigger-key> --type <type> [--folder-path <path> | --folder-key <key>] [--all-fields]
uip or triggers create --type <type> --name <n> --release-key <k> --runtime-type <r> --job-priority <p> [type-specific flags]
uip or triggers update <trigger-key> --type <type> [type-specific flags] [--enabled | --disabled]
uip or triggers delete <trigger-key> --type <type> [--folder-path <path> | --folder-key <key>] --yes
uip or triggers history <trigger-key> --type <type> [--folder-path <path> | --folder-key <key>] [-l <n>] [--offset <n>] [--all-fields]
uip or triggers list [--type <type>] [--folder-path <path> | --folder-key <key>] [-n <name>] [--enabled | --disabled] [--sort-by <field>] [--all-fields]
uip or triggers get <trigger-key> --type <type> [--folder-path <path> | --folder-key <key>] [--all-fields]
uip or triggers create --type <type> --name <n> --release-key <k> --runtime-type <r> --job-priority <p> [type-specific flags]
uip or triggers update <trigger-key> --type <type> [type-specific flags] [--enabled | --disabled]
uip or triggers delete <trigger-key> --type <type> [--folder-path <path> | --folder-key <key>] --yes
uip or triggers history <trigger-key> --type <type> [--folder-path <path> | --folder-key <key>] [-l <n>] [--offset <n>] [--all-fields]
There is no dedicated enable or disable command. Toggle a trigger with update <trigger-key> --enabled or update <trigger-key> --disabled instead (the two flags are mutually exclusive).
List
List triggers. Filters: -n, --name, --enabled, --disabled (mutually exclusive). --sort-by <field> sorts results. --all-fields returns the full API response instead of the curated subset.
uip or triggers list --type time --folder-path Shared --enabled
uip or triggers list --type time --folder-path Shared --enabled
get
Get a trigger by key. --all-fields returns the full API response instead of the curated subset.
Criar
Crie um gatilho. Sinalizadores obrigatórios: --name, --release-key, --runtime-type <Serverless|Unattended|Headless|NonProduction|AgentService>, --job-priority <Low|Normal|High> (padrão Normal).
Específico do tipo:
- o tempo precisa de
--cron(formato de campo Quartz 6) e, opcionalmente,--time-zone. - a fila precisa de
--queue-key(e aceita--items-threshold,--max-jobs,--items-per-job,--activate-on-complete). - a API precisa de
--sluge--method <Get|Post|Put|Delete>(com--calling-modeopcional).
Common: -d, --description, --input-arguments <json>, --calendar-key, --stop-strategy <SoftStop|Kill>, --kill-process-expression, --resume-on-same-context, --run-as-me, repeatable --target "machine=<guid>,user=<guid>,session=<int>", --mapping-mode <dynamic|strict> (default dynamic; use strict when the folder has "Enable account-machine mappings" turned on).
uip or triggers create --type time \
--name NightlyInvoices --release-key <release-guid> \
--runtime-type Unattended --job-priority Normal \
--folder-path Shared --cron "0 0 2 * * ?" --time-zone UTC
uip or triggers create --type time \
--name NightlyInvoices --release-key <release-guid> \
--runtime-type Unattended --job-priority Normal \
--folder-path Shared --cron "0 0 2 * * ?" --time-zone UTC
Atualizar
Update by key. Same type-specific flags as create, all optional. Use --no-* counterparts to unset booleans (for example --no-activate-on-complete, --no-resume-on-same-context, --no-run-as-me). Pass --enabled or --disabled to toggle the trigger's state (mutually exclusive).
uip or triggers update <trigger-key> --type time --disabled
uip or triggers update <trigger-key> --type time --disabled
Excluir
Delete a trigger by key. Requires -y, --yes — the CLI never prompts for destructive operations.
uip or triggers delete <trigger-key> --type time --yes
uip or triggers delete <trigger-key> --type time --yes
Histórico
Show the trigger execution history (fire log). Paginated via -l, --limit / --offset. --all-fields returns the full API response instead of the curated subset. Useful for diagnosing why a trigger did not fire (missing license, no machines, disabled, etc.).
Códigos de saída
See Exit codes for the shared contract. delete exits 1 if -y, --yes is omitted.
Comandos relacionados
uip or processes— obtenha um--release-keyparatriggers create.uip or queues— chaves de fila para--queue-keyem gatilhos de fila.
Veja também
- Visão geral
uip or— convenções compartilhadas para cada verbouip or. - Como fazer: gerenciar ativos e filas do Orchestrator — disparar padrões de criação.