- Vue d'ensemble (Overview)
- Démarrer
- Concepts
- Utilisation de la UiPath CLI
- UiPath pour les agents de codage
- Guides pratiques
- Revenus CI/CD
- Référence de commande
- Vue d'ensemble (Overview)
- Codes de sortie
- Options globales
- agent codé uip
- UiPath Docsai
- 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
- 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
- listes-exemples-workflow
- Créer un package
- restore
- Exécuter le fichier
- modèles-recherche
- Démarrer-Studio
- arrêter l'exécution
- UIA
- Traçages UIP
- Migration
- Référence et assistance
Guide de l'utilisateur de UiPath CLI
uip tm customfield manages custom field definitions on a Test Manager tenant. Custom fields extend test case and requirement entities with project-specific metadata. This command group has three sub-groups:
customfield— manage the field definition itself (list, get, create, update, delete)customfield label— manage the display labels for a fieldcustomfield value— manage the allowed values for a field (for list-type fields)
Synthèse
uip tm customfield list [--project-key <key>]
uip tm customfield get --customfield-id <uuid>
uip tm customfield create --name <name> --type <type> [options…]
uip tm customfield update --customfield-id <uuid> [options…]
uip tm customfield delete --customfield-id <uuid>
uip tm customfield label get --customfield-id <uuid>
uip tm customfield label list --customfield-id <uuid>
uip tm customfield label create --customfield-id <uuid> --label <text>
uip tm customfield label add --customfield-id <uuid> --label <text>
uip tm customfield label remove --customfield-id <uuid> --label <text>
uip tm customfield value list --customfield-id <uuid>
uip tm customfield value get --customfield-id <uuid> --value-id <uuid>
uip tm customfield value create --customfield-id <uuid> --value <text>
uip tm customfield value update --customfield-id <uuid> --value-id <uuid> --value <text>
uip tm customfield value delete --customfield-id <uuid> --value-id <uuid>
uip tm customfield list [--project-key <key>]
uip tm customfield get --customfield-id <uuid>
uip tm customfield create --name <name> --type <type> [options…]
uip tm customfield update --customfield-id <uuid> [options…]
uip tm customfield delete --customfield-id <uuid>
uip tm customfield label get --customfield-id <uuid>
uip tm customfield label list --customfield-id <uuid>
uip tm customfield label create --customfield-id <uuid> --label <text>
uip tm customfield label add --customfield-id <uuid> --label <text>
uip tm customfield label remove --customfield-id <uuid> --label <text>
uip tm customfield value list --customfield-id <uuid>
uip tm customfield value get --customfield-id <uuid> --value-id <uuid>
uip tm customfield value create --customfield-id <uuid> --value <text>
uip tm customfield value update --customfield-id <uuid> --value-id <uuid> --value <text>
uip tm customfield value delete --customfield-id <uuid> --value-id <uuid>
Tous les verbes respectent les options globales et les codes de sortie standard. Chaque verbe accepte -t, --tenant <name> et --log-level <level> (par défaut Information).
uip tm customfield list
List all custom field definitions. Optionally scoped to a project.
Arguments
Aucun
Options
--project-key <key>— scope the list to a specific project (optional).
Exemple
uip tm customfield list --project-key DEMO
uip tm customfield list --project-key DEMO
Format des données
{
"Code": "CustomFieldList",
"Data": [
{
"Id": "c1b2c3d4-0000-0000-0000-000000000001",
"Name": "Priority",
"Type": "List"
}
]
}
{
"Code": "CustomFieldList",
"Data": [
{
"Id": "c1b2c3d4-0000-0000-0000-000000000001",
"Name": "Priority",
"Type": "List"
}
]
}
uip tm customfield get
Get a single custom field definition by its UUID.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field UUID. Obtain fromcustomfield list.
Exemple
uip tm customfield get --customfield-id c1b2c3d4-0000-0000-0000-000000000001
uip tm customfield get --customfield-id c1b2c3d4-0000-0000-0000-000000000001
Format des données
{
"Code": "CustomFieldGet",
"Data": {
"Id": "c1b2c3d4-0000-0000-0000-000000000001",
"Name": "Priority",
"Type": "List"
}
}
{
"Code": "CustomFieldGet",
"Data": {
"Id": "c1b2c3d4-0000-0000-0000-000000000001",
"Name": "Priority",
"Type": "List"
}
}
uip tm customfield create
Create a new custom field.
Arguments
Aucun
Options
--name <name>(required) — field name.--type <type>(required) — field type. Accepted values are tool-version-dependent; runuip tm customfield create --helpto see the current enum.--project-key <key>— scope the field to a specific project.
Exemple
uip tm customfield create \
--name "Priority" \
--type List \
--project-key DEMO
uip tm customfield create \
--name "Priority" \
--type List \
--project-key DEMO
Format des données
{
"Code": "CustomFieldCreate",
"Data": {
"Id": "c1b2c3d4-0000-0000-0000-000000000001",
"Name": "Priority"
}
}
{
"Code": "CustomFieldCreate",
"Data": {
"Id": "c1b2c3d4-0000-0000-0000-000000000001",
"Name": "Priority"
}
}
uip tm customfield update
Update a custom field's name or other properties.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field to update.--name <name>— nouveau nom.
Exemple
uip tm customfield update \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--name "Severity"
uip tm customfield update \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--name "Severity"
Format des données
{
"Code": "CustomFieldUpdate",
"Data": {
"Id": "c1b2c3d4-0000-0000-0000-000000000001",
"Name": "Severity",
"Result": "Updated"
}
}
{
"Code": "CustomFieldUpdate",
"Data": {
"Id": "c1b2c3d4-0000-0000-0000-000000000001",
"Name": "Severity",
"Result": "Updated"
}
}
uip tm customfield delete
Delete a custom field definition.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field to delete.
Exemple
uip tm customfield delete --customfield-id c1b2c3d4-0000-0000-0000-000000000001
uip tm customfield delete --customfield-id c1b2c3d4-0000-0000-0000-000000000001
Format des données
{
"Code": "CustomFieldDelete",
"Data": {
"Id": "c1b2c3d4-0000-0000-0000-000000000001",
"Result": "Deleted"
}
}
{
"Code": "CustomFieldDelete",
"Data": {
"Id": "c1b2c3d4-0000-0000-0000-000000000001",
"Result": "Deleted"
}
}
uip tm customfield label get
Get the display label for a custom field.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field UUID.
Exemple
uip tm customfield label get --customfield-id c1b2c3d4-0000-0000-0000-000000000001
uip tm customfield label get --customfield-id c1b2c3d4-0000-0000-0000-000000000001
Format des données
{
"Code": "CustomFieldLabelGet",
"Data": {
"Label": "Priority"
}
}
{
"Code": "CustomFieldLabelGet",
"Data": {
"Label": "Priority"
}
}
uip tm customfield label list
List all display labels for a custom field.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field UUID.
Exemple
uip tm customfield label list --customfield-id c1b2c3d4-0000-0000-0000-000000000001
uip tm customfield label list --customfield-id c1b2c3d4-0000-0000-0000-000000000001
Format des données
{
"Code": "CustomFieldLabelList",
"Data": [
"Priority",
"Severity"
]
}
{
"Code": "CustomFieldLabelList",
"Data": [
"Priority",
"Severity"
]
}
uip tm customfield label create
Set the display label for a custom field.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field UUID.--label <text>(required) — label text.
Exemple
uip tm customfield label create \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--label "Priority"
uip tm customfield label create \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--label "Priority"
Format des données
{
"Code": "CustomFieldLabelCreate",
"Data": {
"Label": "Priority",
"Result": "Created"
}
}
{
"Code": "CustomFieldLabelCreate",
"Data": {
"Label": "Priority",
"Result": "Created"
}
}
uip tm customfield label add
Add a label to a custom field.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field UUID.--label <text>(required) — label text to add.
Exemple
uip tm customfield label add \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--label "Severity"
uip tm customfield label add \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--label "Severity"
Format des données
{
"Code": "CustomFieldLabelAdd",
"Data": {
"Label": "Severity",
"Result": "Added"
}
}
{
"Code": "CustomFieldLabelAdd",
"Data": {
"Label": "Severity",
"Result": "Added"
}
}
uip tm customfield label remove
Remove a label from a custom field.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field UUID.--label <text>(required) — label text to remove.
Exemple
uip tm customfield label remove \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--label "Severity"
uip tm customfield label remove \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--label "Severity"
Format des données
{
"Code": "CustomFieldLabelRemove",
"Data": {
"Label": "Severity",
"Result": "Removed"
}
}
{
"Code": "CustomFieldLabelRemove",
"Data": {
"Label": "Severity",
"Result": "Removed"
}
}
uip tm customfield value list
List the allowed values for a list-type custom field.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field UUID.
Exemple
uip tm customfield value list --customfield-id c1b2c3d4-0000-0000-0000-000000000001
uip tm customfield value list --customfield-id c1b2c3d4-0000-0000-0000-000000000001
Format des données
{
"Code": "CustomFieldValueList",
"Data": [
{
"Id": "v1b2c3d4-0000-0000-0000-000000000001",
"Value": "High"
},
{
"Id": "v1b2c3d4-0000-0000-0000-000000000002",
"Value": "Medium"
}
]
}
{
"Code": "CustomFieldValueList",
"Data": [
{
"Id": "v1b2c3d4-0000-0000-0000-000000000001",
"Value": "High"
},
{
"Id": "v1b2c3d4-0000-0000-0000-000000000002",
"Value": "Medium"
}
]
}
uip tm customfield value get
Get a single allowed value by its UUID.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field UUID.--value-id <uuid>(required) — value UUID. Obtain fromcustomfield value list.
Exemple
uip tm customfield value get \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--value-id v1b2c3d4-0000-0000-0000-000000000001
uip tm customfield value get \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--value-id v1b2c3d4-0000-0000-0000-000000000001
Format des données
{
"Code": "CustomFieldValueGet",
"Data": {
"Id": "v1b2c3d4-0000-0000-0000-000000000001",
"Value": "High"
}
}
{
"Code": "CustomFieldValueGet",
"Data": {
"Id": "v1b2c3d4-0000-0000-0000-000000000001",
"Value": "High"
}
}
uip tm customfield value create
Add an allowed value to a list-type custom field.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field UUID.--value <text>(required) — value text to add.
Exemple
uip tm customfield value create \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--value "High"
uip tm customfield value create \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--value "High"
Format des données
{
"Code": "CustomFieldValueCreate",
"Data": {
"Id": "v1b2c3d4-0000-0000-0000-000000000001",
"Value": "High"
}
}
{
"Code": "CustomFieldValueCreate",
"Data": {
"Id": "v1b2c3d4-0000-0000-0000-000000000001",
"Value": "High"
}
}
uip tm customfield value update
Update an existing allowed value.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field UUID.--value-id <uuid>(required) — value UUID to update.--value <text>(required) — new value text.
Exemple
uip tm customfield value update \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--value-id v1b2c3d4-0000-0000-0000-000000000001 \
--value "Critical"
uip tm customfield value update \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--value-id v1b2c3d4-0000-0000-0000-000000000001 \
--value "Critical"
Format des données
{
"Code": "CustomFieldValueUpdate",
"Data": {
"Id": "v1b2c3d4-0000-0000-0000-000000000001",
"Value": "Critical",
"Result": "Updated"
}
}
{
"Code": "CustomFieldValueUpdate",
"Data": {
"Id": "v1b2c3d4-0000-0000-0000-000000000001",
"Value": "Critical",
"Result": "Updated"
}
}
uip tm customfield value delete
Delete an allowed value.
Arguments
Aucun
Options
--customfield-id <uuid>(required) — custom field UUID.--value-id <uuid>(required) — value UUID to delete.
Exemple
uip tm customfield value delete \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--value-id v1b2c3d4-0000-0000-0000-000000000001
uip tm customfield value delete \
--customfield-id c1b2c3d4-0000-0000-0000-000000000001 \
--value-id v1b2c3d4-0000-0000-0000-000000000001
Format des données
{
"Code": "CustomFieldValueDelete",
"Data": {
"Id": "v1b2c3d4-0000-0000-0000-000000000001",
"Result": "Deleted"
}
}
{
"Code": "CustomFieldValueDelete",
"Data": {
"Id": "v1b2c3d4-0000-0000-0000-000000000001",
"Result": "Deleted"
}
}
Associé
- requirement — requirements can carry custom field values.
- testcases — test cases can carry custom field values.
Voir également
- Synthèse
- uip tm customfield list
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield get
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield create
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield update
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield delete
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield label get
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield label list
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield label create
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield label add
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield label remove
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield value list
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield value get
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield value create
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield value update
- Arguments
- Options
- Exemple
- Format des données
- uip tm customfield value delete
- Arguments
- Options
- Exemple
- Format des données
- Associé
- Voir également