From 445b960d5ac6174c0d6eb5463f1d672987ec19ea Mon Sep 17 00:00:00 2001 From: srinandan <13950006+srinandan@users.noreply.github.com> Date: Wed, 29 Nov 2023 13:11:48 -0800 Subject: [PATCH] chore: update descriptions #336 --- cmd/apis/bundlecrtapis.go | 2 +- cmd/sharedflows/bundlecrtsf.go | 2 +- cmd/targetservers/impts.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/apis/bundlecrtapis.go b/cmd/apis/bundlecrtapis.go index f64cddffd..65dac2e48 100644 --- a/cmd/apis/bundlecrtapis.go +++ b/cmd/apis/bundlecrtapis.go @@ -32,7 +32,7 @@ import ( var BundleCreateCmd = &cobra.Command{ Use: "bundle", Short: "Creates an API proxy from an Zip or folder", - Long: "Creates an API proxy from an Zip or folder", + Long: "Creates an API proxy from an Zip or folder; Optionally deploy the API to an env", Args: func(cmd *cobra.Command, args []string) (err error) { if proxyZip != "" && proxyFolder != "" { return fmt.Errorf("proxy bundle (zip) and folder to an API proxy cannot be combined") diff --git a/cmd/sharedflows/bundlecrtsf.go b/cmd/sharedflows/bundlecrtsf.go index 422dc24a6..ebaddbc43 100644 --- a/cmd/sharedflows/bundlecrtsf.go +++ b/cmd/sharedflows/bundlecrtsf.go @@ -33,7 +33,7 @@ import ( var BundleCreateCmd = &cobra.Command{ Use: "bundle", Short: "Creates a sharedflow in an Apigee Org", - Long: "Creates a sharedflow in an Apigee Org", + Long: "Creates a sharedflow in an Apigee Org; Optionally deploy the sharedflow to an env", Args: func(cmd *cobra.Command, args []string) (err error) { apiclient.SetApigeeEnv(env) if sfZip != "" && sfFolder != "" { diff --git a/cmd/targetservers/impts.go b/cmd/targetservers/impts.go index c6caa98d0..8ee5c749c 100644 --- a/cmd/targetservers/impts.go +++ b/cmd/targetservers/impts.go @@ -40,7 +40,7 @@ var filePath string func init() { ImpCmd.Flags().StringVarP(&filePath, "file", "f", - "", "File containing API Products") + "", "Path to a file containing Target Servers") ImpCmd.Flags().IntVarP(&conn, "conn", "c", 4, "Number of connections")