From 00f4a206e491791cb36e251523e641aee863ea92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Carlos=20Mej=C3=ADas=20Rodr=C3=ADguez?= Date: Fri, 9 Aug 2019 13:32:17 -0400 Subject: [PATCH] Simplify table output column header names --- cmd/endpointGroupList.go | 2 +- cmd/endpointList.go | 2 +- cmd/stackList.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/endpointGroupList.go b/cmd/endpointGroupList.go index 874821a..8abb834 100644 --- a/cmd/endpointGroupList.go +++ b/cmd/endpointGroupList.go @@ -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", }) diff --git a/cmd/endpointList.go b/cmd/endpointList.go index 2aa04a4..8475aa1 100644 --- a/cmd/endpointList.go +++ b/cmd/endpointList.go @@ -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", diff --git a/cmd/stackList.go b/cmd/stackList.go index cd96490..4daca1c 100644 --- a/cmd/stackList.go +++ b/cmd/stackList.go @@ -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",