Simplify table output column header names

This commit is contained in:
Juan Carlos Mejías Rodríguez 2019-08-09 13:32:17 -04:00
parent aeba258ef8
commit 00f4a206e4
3 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ var endpointGroupListCmd = &cobra.Command{
} else {
// Print all endpoint group fields as a table
writer, err := common.NewTabWriter([]string{
"ENDPOINT GROUP ID",
"ID",
"NAME",
"DESCRIPTION",
})

View File

@ -53,7 +53,7 @@ var endpointListCmd = &cobra.Command{
} else {
// Print all endpoint fields as a table
writer, err := common.NewTabWriter([]string{
"ENDPOINT ID",
"ID",
"NAME",
"TYPE",
"URL",

View File

@ -73,7 +73,7 @@ var stackListCmd = &cobra.Command{
} else {
// Print all stack fields as a table
writer, err := common.NewTabWriter([]string{
"STACK ID",
"ID",
"NAME",
"TYPE",
"ENDPOINT ID",