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 { } else {
// Print all endpoint group fields as a table // Print all endpoint group fields as a table
writer, err := common.NewTabWriter([]string{ writer, err := common.NewTabWriter([]string{
"ENDPOINT GROUP ID", "ID",
"NAME", "NAME",
"DESCRIPTION", "DESCRIPTION",
}) })

View File

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

View File

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