@@ -16,12 +16,13 @@ USAGE:
16
16
osctrl-cli tag command [command options] [arguments...]
17
17
18
18
COMMANDS:
19
- add, a Add a new tag
20
- edit, e Edit values for an existing tag
21
- delete, d Delete an existing tag
22
- list, l List all tags
23
- show, s Show an existing tag
24
- help, h Shows a list of commands or help for one command
19
+ add, a Add a new tag
20
+ edit, e Edit values for an existing tag
21
+ delete, d Delete an existing tag
22
+ list, l List all tags by environment
23
+ list-all, L List all tags in osctrl
24
+ show, s Show an existing tag
25
+ help, h Shows a list of commands or help for one command
25
26
26
27
OPTIONS:
27
28
--help, -h show help
@@ -38,11 +39,13 @@ USAGE:
38
39
osctrl-cli tag add [command options] [arguments...]
39
40
40
41
OPTIONS:
41
- --name value, -n value Tage name to be added
42
- --color value, -c value Tag color to be added
43
- --description value, -d value Tag description to be added
44
- --icon value, -i value Tag icon to be added
45
- --help, -h show help
42
+ --name value, -n value Tage name to be used
43
+ --env-uuid value, -e value Environment UUID to be used
44
+ --icon value, -i value Fontawesome icon to be used (default: " fas fa-tag" )
45
+ --color value, -c value HTML color to be used. If not provided it will be randomly generated
46
+ --description value, -d value Tag description to be used
47
+ --tag-type value, -t value, --type value Tag type to be used. It can be ' env' , ' uuid' , ' platform' , ' localname' and ' custom' (default: " custom" )
48
+ --help, -h show help
46
49
```
47
50
48
51
#### Edit tag
@@ -56,11 +59,13 @@ USAGE:
56
59
osctrl-cli tag edit [command options] [arguments...]
57
60
58
61
OPTIONS:
59
- --name value, -n value Tage name to be edited
60
- --color value, -c value Tag color to be edited
61
- --description value, -d value Tag description to be edited
62
- --icon value, -i value Tag icon to be edited
63
- --help, -h show help
62
+ --name value, -n value Tage name to be used
63
+ --env-uuid value, -e value Environment UUID to be used
64
+ --icon value, -i value Fontawesome icon to be used
65
+ --color value, -c value HTML color to be used. If not provided it will be randomly generated
66
+ --description value, -d value Tag description to be used
67
+ --tag-type value, -t value, --type value Tag type to be used. It can be ' env' , ' uuid' , ' platform' , ' localname' and ' custom'
68
+ --help, -h show help
64
69
```
65
70
66
71
#### Delete tag
@@ -74,20 +79,36 @@ USAGE:
74
79
osctrl-cli tag delete [command options] [arguments...]
75
80
76
81
OPTIONS:
77
- --name value, -n value Tag name to be deleted
78
- --help, -h show help
82
+ --name value, -n value Tag name to be deleted
83
+ --env-uuid value, -e value Environment UUID to be used
84
+ --help, -h show help
79
85
```
80
86
81
87
#### List tags
82
88
83
89
``` properties
84
90
$ ./osctrl-cli tag list -h
85
91
NAME:
86
- osctrl-cli tag list - List all tags
92
+ osctrl-cli tag list - List all tags by environment
87
93
88
94
USAGE:
89
95
osctrl-cli tag list [command options] [arguments...]
90
96
97
+ OPTIONS:
98
+ --env-uuid value, -e value Environment UUID to be used
99
+ --help, -h show help
100
+ ```
101
+
102
+ #### List all tags
103
+
104
+ ``` properties
105
+ $ ./osctrl-cli tag list-all -h
106
+ NAME:
107
+ osctrl-cli tag list-all - List all tags in osctrl
108
+
109
+ USAGE:
110
+ osctrl-cli tag list-all [command options] [arguments...]
111
+
91
112
OPTIONS:
92
113
--help, -h show help
93
114
```
@@ -103,6 +124,7 @@ USAGE:
103
124
osctrl-cli tag show [command options] [arguments...]
104
125
105
126
OPTIONS:
106
- --name value, -n value Tag name to be displayed
107
- --help, -h show help
127
+ --name value, -n value Tag name to be displayed
128
+ --env-uuid value, -e value Environment UUID to be used
129
+ --help, -h show help
108
130
```
0 commit comments