Tags management within platform.
If you are searching for tagging object within platform, see fcpc tag-by-query.
Standard tag is just a flag. Like active or inactive asset (asset:active, asset:inactive)
fcpc tag add asset:inactive
Value tag is free form tag where value can be part of the tag. Like name/abc,name/def,name/xyz. Object can have more different values for one value tag.
fcpc tag add name/
Unique tag is similar to value tag. It is tag which can have an value. The only difference is that it can have only one value per object. If you try to set more unique tag values for object, last value will be used.
fcpc tag add name=
fcpc tag del xxx
Standart tag is just a flag
Value tag can have more values for single object
fcpc tag add test:value/one
fcpc tag add test:value/two
Unique tag can have only one value
fcpc tag add test:location=default
fcpc tag search test
name tagtype id created
------------- --------- ------------- ---------
test:tag1 0 test_tag1
test:tag2 0 test_tag2
test:tag3 0 test_tag3
test:unique1= 1 test_unique1_
test:value1/ 2 test_value1_
Let us even see other example tags predefined within platform
fcpc tag search os
name tagtype id created
-------------------------- --------- -------------------------- --------------------
os:android 0 os_android 2022-08-31T18:19:54Z
os:codename= 1 os_codename_ 2022-08-31T18:19:54Z
os:freebsd 0 os_freebsd 2022-08-31T18:19:54Z
os:ios 0 os_ios 2022-08-31T18:19:54Z
os:linux 0 os_linux 2022-08-31T18:19:54Z
os:linux:centos 0 os_linux_centos 2022-08-31T18:19:54Z
os:linux:debian 0 os_linux_debian 2022-08-31T18:19:54Z
os:linux:redhat 0 os_linux_redhat 2022-08-31T18:19:54Z
os:macos 0 os_macos 2022-08-31T18:19:54Z
os:version= 1 os_version_ 2022-08-31T18:19:54Z
os:windows 0 os_windows 2022-08-31T18:19:54Z
os:windows:10 0 os_windows_10 2022-08-31T18:19:54Z
os:windows:2012 0 os_windows_2012 2022-08-31T18:19:54Z
usage: fcpc tag [-h] {add,del,search} [params ...]
positional arguments:
{add,del,search} Tag subcommand.
Choices:
add
del
search
params Name (default: None)
optional arguments:
-h, --help show this help message and exit