diff --git a/cmd/meroxa/global/config.go b/cmd/meroxa/global/config.go index c750e6fdf..ee5a56d7b 100644 --- a/cmd/meroxa/global/config.go +++ b/cmd/meroxa/global/config.go @@ -58,9 +58,9 @@ func getEnvVal(keys []string, defaultVal string) string { func readConfig() (*viper.Viper, error) { cfg := viper.New() - if flagConfig != "" { + if flagMeroxaConfig != "" { // Use config file from the flag. - cfg.SetConfigFile(flagConfig) + cfg.SetConfigFile(flagMeroxaConfig) } else { // Find home directory. configDir, err := os.UserConfigDir() diff --git a/cmd/meroxa/global/global.go b/cmd/meroxa/global/global.go index c38527877..c3ce4bfc2 100644 --- a/cmd/meroxa/global/global.go +++ b/cmd/meroxa/global/global.go @@ -31,11 +31,11 @@ var ( ) var ( - flagConfig string - flagAPIURL string - flagDebug bool - flagTimeout time.Duration - flagJSON bool + flagMeroxaConfig string + flagAPIURL string + flagDebug bool + flagTimeout time.Duration + flagJSON bool ) func DeprecateV1Commands() bool { @@ -44,7 +44,11 @@ func DeprecateV1Commands() bool { func RegisterGlobalFlags(cmd *cobra.Command) { cmd.PersistentFlags().BoolVar(&flagJSON, "json", false, "output json") - cmd.PersistentFlags().StringVar(&flagConfig, "config", "", "config file") + + // It stays around until we update our acceptance tests + cmd.PersistentFlags().StringVar(&flagMeroxaConfig, "config", "", "meroxa configuration file") + + cmd.PersistentFlags().StringVar(&flagMeroxaConfig, "meroxa-config", "", "meroxa configuration file") cmd.PersistentFlags().StringVar(&flagAPIURL, "api-url", "", "API url") cmd.PersistentFlags().BoolVar(&flagDebug, "debug", false, "display any debugging information") cmd.PersistentFlags().DurationVar(&flagTimeout, "timeout", time.Second*10, "set the duration of the client timeout in seconds (default 10s)") // nolint:gomnd,lll diff --git a/docs/cmd/md/meroxa.md b/docs/cmd/md/meroxa.md index 36c52d193..3fe2e6ccc 100644 --- a/docs/cmd/md/meroxa.md +++ b/docs/cmd/md/meroxa.md @@ -16,11 +16,11 @@ meroxa resources list --types ### Options ``` - --config string config file - --debug display any debugging information - -h, --help help for meroxa - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + -h, --help help for meroxa + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_api.md b/docs/cmd/md/meroxa_api.md index 4d0eea136..3dfe37f9c 100644 --- a/docs/cmd/md/meroxa_api.md +++ b/docs/cmd/md/meroxa_api.md @@ -23,10 +23,10 @@ meroxa api POST /v1/endpoints '{"protocol": "HTTP", "stream": "resource-2-499379 ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_auth.md b/docs/cmd/md/meroxa_auth.md index 3949f0b65..9b1e6601f 100644 --- a/docs/cmd/md/meroxa_auth.md +++ b/docs/cmd/md/meroxa_auth.md @@ -11,10 +11,10 @@ Authentication commands for Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_auth_login.md b/docs/cmd/md/meroxa_auth_login.md index dee293fba..976ef94ce 100644 --- a/docs/cmd/md/meroxa_auth_login.md +++ b/docs/cmd/md/meroxa_auth_login.md @@ -15,10 +15,10 @@ meroxa auth login [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_auth_logout.md b/docs/cmd/md/meroxa_auth_logout.md index 5ae33a459..10da3f793 100644 --- a/docs/cmd/md/meroxa_auth_logout.md +++ b/docs/cmd/md/meroxa_auth_logout.md @@ -15,10 +15,10 @@ meroxa auth logout [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_auth_whoami.md b/docs/cmd/md/meroxa_auth_whoami.md index 1c5e9e667..1cc68880e 100644 --- a/docs/cmd/md/meroxa_auth_whoami.md +++ b/docs/cmd/md/meroxa_auth_whoami.md @@ -22,10 +22,10 @@ meroxa whoami ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_billing.md b/docs/cmd/md/meroxa_billing.md index 45551fd79..6c316fcf8 100644 --- a/docs/cmd/md/meroxa_billing.md +++ b/docs/cmd/md/meroxa_billing.md @@ -15,10 +15,10 @@ meroxa billing [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_completion.md b/docs/cmd/md/meroxa_completion.md index 84d052d51..86b2152ce 100644 --- a/docs/cmd/md/meroxa_completion.md +++ b/docs/cmd/md/meroxa_completion.md @@ -49,10 +49,10 @@ meroxa completion [bash|zsh|fish|powershell] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_config.md b/docs/cmd/md/meroxa_config.md index 24e4c1723..31b0a5524 100644 --- a/docs/cmd/md/meroxa_config.md +++ b/docs/cmd/md/meroxa_config.md @@ -15,10 +15,10 @@ meroxa config [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_config_describe.md b/docs/cmd/md/meroxa_config_describe.md index 5da9a1c67..b5dcceb50 100644 --- a/docs/cmd/md/meroxa_config_describe.md +++ b/docs/cmd/md/meroxa_config_describe.md @@ -32,10 +32,10 @@ refresh_token: c337a0d...c0f928b ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connect.md b/docs/cmd/md/meroxa_connect.md index 20ede628f..9b1d40f01 100644 --- a/docs/cmd/md/meroxa_connect.md +++ b/docs/cmd/md/meroxa_connect.md @@ -25,6 +25,7 @@ meroxa connect --from RESOURCE-NAME --to RESOURCE-NAME [flags] ### Options ``` + -c, --config string connector configuration --from string source resource name -h, --help help for connect --input string command delimited list of input streams @@ -35,10 +36,10 @@ meroxa connect --from RESOURCE-NAME --to RESOURCE-NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors.md b/docs/cmd/md/meroxa_connectors.md index 5d428092f..416b1ac65 100644 --- a/docs/cmd/md/meroxa_connectors.md +++ b/docs/cmd/md/meroxa_connectors.md @@ -11,10 +11,10 @@ Manage connectors on Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_create.md b/docs/cmd/md/meroxa_connectors_create.md index 9836ec03b..3777396ed 100644 --- a/docs/cmd/md/meroxa_connectors_create.md +++ b/docs/cmd/md/meroxa_connectors_create.md @@ -23,6 +23,7 @@ meroxa connectors create [NAME] --to pg2redshift --input orders --pipeline my-pi ### Options ``` + -c, --config string connector configuration --from string resource name to use as source -h, --help help for create --input string command delimited list of input streams @@ -33,10 +34,10 @@ meroxa connectors create [NAME] --to pg2redshift --input orders --pipeline my-pi ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_describe.md b/docs/cmd/md/meroxa_connectors_describe.md index a542e3ac1..ccb6a8059 100644 --- a/docs/cmd/md/meroxa_connectors_describe.md +++ b/docs/cmd/md/meroxa_connectors_describe.md @@ -15,10 +15,10 @@ meroxa connectors describe [NAME] [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_list.md b/docs/cmd/md/meroxa_connectors_list.md index 81bd113f9..5c5f9876a 100644 --- a/docs/cmd/md/meroxa_connectors_list.md +++ b/docs/cmd/md/meroxa_connectors_list.md @@ -17,10 +17,10 @@ meroxa connectors list [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_logs.md b/docs/cmd/md/meroxa_connectors_logs.md index c165e1ce7..96cf410a0 100644 --- a/docs/cmd/md/meroxa_connectors_logs.md +++ b/docs/cmd/md/meroxa_connectors_logs.md @@ -15,10 +15,10 @@ meroxa connectors logs NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_remove.md b/docs/cmd/md/meroxa_connectors_remove.md index cbd0890ce..19279819e 100644 --- a/docs/cmd/md/meroxa_connectors_remove.md +++ b/docs/cmd/md/meroxa_connectors_remove.md @@ -16,10 +16,10 @@ meroxa connectors remove NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_update.md b/docs/cmd/md/meroxa_connectors_update.md index 034eef490..2447d249d 100644 --- a/docs/cmd/md/meroxa_connectors_update.md +++ b/docs/cmd/md/meroxa_connectors_update.md @@ -19,18 +19,19 @@ meroxa connector update connector-name --config '{"table.name.format":"public.co ### Options ``` - -h, --help help for update - --name string new connector name - --state string new connector state + -c, --config string new connector configuration + -h, --help help for update + --name string new connector name + --state string new connector state ``` ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_endpoints.md b/docs/cmd/md/meroxa_endpoints.md index 456d0b729..1223c289f 100644 --- a/docs/cmd/md/meroxa_endpoints.md +++ b/docs/cmd/md/meroxa_endpoints.md @@ -11,10 +11,10 @@ Manage endpoints on Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_endpoints_create.md b/docs/cmd/md/meroxa_endpoints_create.md index e677d26f7..07c2574ca 100644 --- a/docs/cmd/md/meroxa_endpoints_create.md +++ b/docs/cmd/md/meroxa_endpoints_create.md @@ -27,10 +27,10 @@ meroxa endpoints create my-endpoint --protocol http --stream my-stream ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_endpoints_describe.md b/docs/cmd/md/meroxa_endpoints_describe.md index 101740545..aa9e565d2 100644 --- a/docs/cmd/md/meroxa_endpoints_describe.md +++ b/docs/cmd/md/meroxa_endpoints_describe.md @@ -15,10 +15,10 @@ meroxa endpoints describe [NAME] [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_endpoints_list.md b/docs/cmd/md/meroxa_endpoints_list.md index 0f4301b5c..acdac710a 100644 --- a/docs/cmd/md/meroxa_endpoints_list.md +++ b/docs/cmd/md/meroxa_endpoints_list.md @@ -16,10 +16,10 @@ meroxa endpoints list [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_endpoints_remove.md b/docs/cmd/md/meroxa_endpoints_remove.md index 4984f46dd..455e862b5 100644 --- a/docs/cmd/md/meroxa_endpoints_remove.md +++ b/docs/cmd/md/meroxa_endpoints_remove.md @@ -16,10 +16,10 @@ meroxa endpoints remove NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_login.md b/docs/cmd/md/meroxa_login.md index 9d3438c05..6de1a9a34 100644 --- a/docs/cmd/md/meroxa_login.md +++ b/docs/cmd/md/meroxa_login.md @@ -15,10 +15,10 @@ meroxa login [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_logout.md b/docs/cmd/md/meroxa_logout.md index 37aec1177..957cabd9c 100644 --- a/docs/cmd/md/meroxa_logout.md +++ b/docs/cmd/md/meroxa_logout.md @@ -15,10 +15,10 @@ meroxa logout [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_open.md b/docs/cmd/md/meroxa_open.md index b3f02a84a..6b5e242aa 100644 --- a/docs/cmd/md/meroxa_open.md +++ b/docs/cmd/md/meroxa_open.md @@ -11,10 +11,10 @@ Open in a web browser ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_open_billing.md b/docs/cmd/md/meroxa_open_billing.md index 4405bf43b..9d5f8a15f 100644 --- a/docs/cmd/md/meroxa_open_billing.md +++ b/docs/cmd/md/meroxa_open_billing.md @@ -15,10 +15,10 @@ meroxa open billing [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_pipelines.md b/docs/cmd/md/meroxa_pipelines.md index 6c2e94a07..72b7912b8 100644 --- a/docs/cmd/md/meroxa_pipelines.md +++ b/docs/cmd/md/meroxa_pipelines.md @@ -11,10 +11,10 @@ Manage pipelines on Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_pipelines_create.md b/docs/cmd/md/meroxa_pipelines_create.md index 470c2345e..d4c2e3cb2 100644 --- a/docs/cmd/md/meroxa_pipelines_create.md +++ b/docs/cmd/md/meroxa_pipelines_create.md @@ -16,10 +16,10 @@ meroxa pipelines create NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_pipelines_list.md b/docs/cmd/md/meroxa_pipelines_list.md index 4db8a7d41..d5e9cbcf9 100644 --- a/docs/cmd/md/meroxa_pipelines_list.md +++ b/docs/cmd/md/meroxa_pipelines_list.md @@ -16,10 +16,10 @@ meroxa pipelines list [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_pipelines_remove.md b/docs/cmd/md/meroxa_pipelines_remove.md index c1a4d63d6..4acdf1e33 100644 --- a/docs/cmd/md/meroxa_pipelines_remove.md +++ b/docs/cmd/md/meroxa_pipelines_remove.md @@ -16,10 +16,10 @@ meroxa pipelines remove NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_pipelines_update.md b/docs/cmd/md/meroxa_pipelines_update.md index ad2741a71..9552188a2 100644 --- a/docs/cmd/md/meroxa_pipelines_update.md +++ b/docs/cmd/md/meroxa_pipelines_update.md @@ -27,10 +27,10 @@ meroxa pipeline update pipeline-name --metadata '{"key":"value"}' ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources.md b/docs/cmd/md/meroxa_resources.md index 13ae0004c..9a67b9a2a 100644 --- a/docs/cmd/md/meroxa_resources.md +++ b/docs/cmd/md/meroxa_resources.md @@ -11,10 +11,10 @@ Manage resources on Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_create.md b/docs/cmd/md/meroxa_resources_create.md index 2a5430acd..aa991bd2b 100644 --- a/docs/cmd/md/meroxa_resources_create.md +++ b/docs/cmd/md/meroxa_resources_create.md @@ -41,10 +41,10 @@ meroxa resources create slack --type url -u $WEBHOOK_URL ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_describe.md b/docs/cmd/md/meroxa_resources_describe.md index 1e226ca2e..5db96e861 100644 --- a/docs/cmd/md/meroxa_resources_describe.md +++ b/docs/cmd/md/meroxa_resources_describe.md @@ -15,10 +15,10 @@ meroxa resources describe [NAME] [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_list.md b/docs/cmd/md/meroxa_resources_list.md index d90476358..1e3e62bb7 100644 --- a/docs/cmd/md/meroxa_resources_list.md +++ b/docs/cmd/md/meroxa_resources_list.md @@ -17,10 +17,10 @@ meroxa resources list [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_remove.md b/docs/cmd/md/meroxa_resources_remove.md index 4faa741b8..89b44cd1d 100644 --- a/docs/cmd/md/meroxa_resources_remove.md +++ b/docs/cmd/md/meroxa_resources_remove.md @@ -16,10 +16,10 @@ meroxa resources remove NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_rotate-tunnel-key.md b/docs/cmd/md/meroxa_resources_rotate-tunnel-key.md index 72108aca9..787d06c37 100644 --- a/docs/cmd/md/meroxa_resources_rotate-tunnel-key.md +++ b/docs/cmd/md/meroxa_resources_rotate-tunnel-key.md @@ -20,10 +20,10 @@ meroxa resources rotate-tunnel-key NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_update.md b/docs/cmd/md/meroxa_resources_update.md index a1fbd1f9d..371acd337 100644 --- a/docs/cmd/md/meroxa_resources_update.md +++ b/docs/cmd/md/meroxa_resources_update.md @@ -29,10 +29,10 @@ meroxa resources update NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_validate.md b/docs/cmd/md/meroxa_resources_validate.md index fb93a7e60..69577be5d 100644 --- a/docs/cmd/md/meroxa_resources_validate.md +++ b/docs/cmd/md/meroxa_resources_validate.md @@ -19,10 +19,10 @@ meroxa resources validate NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_transforms.md b/docs/cmd/md/meroxa_transforms.md index 325529c5e..6f32c561f 100644 --- a/docs/cmd/md/meroxa_transforms.md +++ b/docs/cmd/md/meroxa_transforms.md @@ -11,10 +11,10 @@ Manage transforms on Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_transforms_list.md b/docs/cmd/md/meroxa_transforms_list.md index 9f15aaa2d..c9dfd8032 100644 --- a/docs/cmd/md/meroxa_transforms_list.md +++ b/docs/cmd/md/meroxa_transforms_list.md @@ -16,10 +16,10 @@ meroxa transforms list [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_version.md b/docs/cmd/md/meroxa_version.md index 7e678cbdf..a3f21dd41 100644 --- a/docs/cmd/md/meroxa_version.md +++ b/docs/cmd/md/meroxa_version.md @@ -15,10 +15,10 @@ meroxa version [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_whoami.md b/docs/cmd/md/meroxa_whoami.md index 61a95f6a8..553ed7cf1 100644 --- a/docs/cmd/md/meroxa_whoami.md +++ b/docs/cmd/md/meroxa_whoami.md @@ -22,10 +22,10 @@ meroxa whoami ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-api.md b/docs/cmd/www/meroxa-api.md index 4308c7900..30dd10fc5 100644 --- a/docs/cmd/www/meroxa-api.md +++ b/docs/cmd/www/meroxa-api.md @@ -30,10 +30,10 @@ meroxa api POST /v1/endpoints '{"protocol": "HTTP", "stream": "resource-2-499379 ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-auth-login.md b/docs/cmd/www/meroxa-auth-login.md index 5aada00bf..ff1a65497 100644 --- a/docs/cmd/www/meroxa-auth-login.md +++ b/docs/cmd/www/meroxa-auth-login.md @@ -22,10 +22,10 @@ meroxa auth login [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-auth-logout.md b/docs/cmd/www/meroxa-auth-logout.md index 503a4f833..ce8c7f1e0 100644 --- a/docs/cmd/www/meroxa-auth-logout.md +++ b/docs/cmd/www/meroxa-auth-logout.md @@ -22,10 +22,10 @@ meroxa auth logout [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-auth-whoami.md b/docs/cmd/www/meroxa-auth-whoami.md index 5ac974bb2..f4b15a8eb 100644 --- a/docs/cmd/www/meroxa-auth-whoami.md +++ b/docs/cmd/www/meroxa-auth-whoami.md @@ -29,10 +29,10 @@ meroxa whoami ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-auth.md b/docs/cmd/www/meroxa-auth.md index ed087d6f1..a76f4367f 100644 --- a/docs/cmd/www/meroxa-auth.md +++ b/docs/cmd/www/meroxa-auth.md @@ -18,10 +18,10 @@ Authentication commands for Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-billing.md b/docs/cmd/www/meroxa-billing.md index 8038272c0..443b62003 100644 --- a/docs/cmd/www/meroxa-billing.md +++ b/docs/cmd/www/meroxa-billing.md @@ -22,10 +22,10 @@ meroxa billing [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-completion.md b/docs/cmd/www/meroxa-completion.md index 36c7a4933..7bf98ef74 100644 --- a/docs/cmd/www/meroxa-completion.md +++ b/docs/cmd/www/meroxa-completion.md @@ -56,10 +56,10 @@ meroxa completion [bash|zsh|fish|powershell] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-config-describe.md b/docs/cmd/www/meroxa-config-describe.md index e84f4f515..7e11f34f8 100644 --- a/docs/cmd/www/meroxa-config-describe.md +++ b/docs/cmd/www/meroxa-config-describe.md @@ -39,10 +39,10 @@ refresh_token: c337a0d...c0f928b ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-config.md b/docs/cmd/www/meroxa-config.md index 9f7b8c506..266d6cdba 100644 --- a/docs/cmd/www/meroxa-config.md +++ b/docs/cmd/www/meroxa-config.md @@ -22,10 +22,10 @@ meroxa config [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connect.md b/docs/cmd/www/meroxa-connect.md index f129538ad..06e2a51a0 100644 --- a/docs/cmd/www/meroxa-connect.md +++ b/docs/cmd/www/meroxa-connect.md @@ -32,6 +32,7 @@ meroxa connect --from RESOURCE-NAME --to RESOURCE-NAME [flags] ### Options ``` + -c, --config string connector configuration --from string source resource name -h, --help help for connect --input string command delimited list of input streams @@ -42,10 +43,10 @@ meroxa connect --from RESOURCE-NAME --to RESOURCE-NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-create.md b/docs/cmd/www/meroxa-connectors-create.md index e06126216..be3c8cd2a 100644 --- a/docs/cmd/www/meroxa-connectors-create.md +++ b/docs/cmd/www/meroxa-connectors-create.md @@ -30,6 +30,7 @@ meroxa connectors create [NAME] --to pg2redshift --input orders --pipeline my-pi ### Options ``` + -c, --config string connector configuration --from string resource name to use as source -h, --help help for create --input string command delimited list of input streams @@ -40,10 +41,10 @@ meroxa connectors create [NAME] --to pg2redshift --input orders --pipeline my-pi ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-describe.md b/docs/cmd/www/meroxa-connectors-describe.md index 44d8b7431..b567377a2 100644 --- a/docs/cmd/www/meroxa-connectors-describe.md +++ b/docs/cmd/www/meroxa-connectors-describe.md @@ -22,10 +22,10 @@ meroxa connectors describe [NAME] [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-list.md b/docs/cmd/www/meroxa-connectors-list.md index 113229a21..73e889f22 100644 --- a/docs/cmd/www/meroxa-connectors-list.md +++ b/docs/cmd/www/meroxa-connectors-list.md @@ -24,10 +24,10 @@ meroxa connectors list [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-logs.md b/docs/cmd/www/meroxa-connectors-logs.md index 9f9af93f7..4031fccf2 100644 --- a/docs/cmd/www/meroxa-connectors-logs.md +++ b/docs/cmd/www/meroxa-connectors-logs.md @@ -22,10 +22,10 @@ meroxa connectors logs NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-remove.md b/docs/cmd/www/meroxa-connectors-remove.md index 722f42e21..c0d9a88de 100644 --- a/docs/cmd/www/meroxa-connectors-remove.md +++ b/docs/cmd/www/meroxa-connectors-remove.md @@ -23,10 +23,10 @@ meroxa connectors remove NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-update.md b/docs/cmd/www/meroxa-connectors-update.md index fa8ee60f5..2b5cc28d4 100644 --- a/docs/cmd/www/meroxa-connectors-update.md +++ b/docs/cmd/www/meroxa-connectors-update.md @@ -26,18 +26,19 @@ meroxa connector update connector-name --config '{"table.name.format":"public.co ### Options ``` - -h, --help help for update - --name string new connector name - --state string new connector state + -c, --config string new connector configuration + -h, --help help for update + --name string new connector name + --state string new connector state ``` ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors.md b/docs/cmd/www/meroxa-connectors.md index 8bd997288..169e40c96 100644 --- a/docs/cmd/www/meroxa-connectors.md +++ b/docs/cmd/www/meroxa-connectors.md @@ -18,10 +18,10 @@ Manage connectors on Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-endpoints-create.md b/docs/cmd/www/meroxa-endpoints-create.md index 117fa7d40..20f801769 100644 --- a/docs/cmd/www/meroxa-endpoints-create.md +++ b/docs/cmd/www/meroxa-endpoints-create.md @@ -34,10 +34,10 @@ meroxa endpoints create my-endpoint --protocol http --stream my-stream ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-endpoints-describe.md b/docs/cmd/www/meroxa-endpoints-describe.md index a5a60fa39..afabdbc15 100644 --- a/docs/cmd/www/meroxa-endpoints-describe.md +++ b/docs/cmd/www/meroxa-endpoints-describe.md @@ -22,10 +22,10 @@ meroxa endpoints describe [NAME] [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-endpoints-list.md b/docs/cmd/www/meroxa-endpoints-list.md index a4dafdd71..e5fa40e62 100644 --- a/docs/cmd/www/meroxa-endpoints-list.md +++ b/docs/cmd/www/meroxa-endpoints-list.md @@ -23,10 +23,10 @@ meroxa endpoints list [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-endpoints-remove.md b/docs/cmd/www/meroxa-endpoints-remove.md index bdeae774f..52dbef390 100644 --- a/docs/cmd/www/meroxa-endpoints-remove.md +++ b/docs/cmd/www/meroxa-endpoints-remove.md @@ -23,10 +23,10 @@ meroxa endpoints remove NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-endpoints.md b/docs/cmd/www/meroxa-endpoints.md index 03ac4545c..b7814d749 100644 --- a/docs/cmd/www/meroxa-endpoints.md +++ b/docs/cmd/www/meroxa-endpoints.md @@ -18,10 +18,10 @@ Manage endpoints on Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-login.md b/docs/cmd/www/meroxa-login.md index 2e969ec8a..bfdcd1cf8 100644 --- a/docs/cmd/www/meroxa-login.md +++ b/docs/cmd/www/meroxa-login.md @@ -22,10 +22,10 @@ meroxa login [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-logout.md b/docs/cmd/www/meroxa-logout.md index 08731dc3d..65c04ae03 100644 --- a/docs/cmd/www/meroxa-logout.md +++ b/docs/cmd/www/meroxa-logout.md @@ -22,10 +22,10 @@ meroxa logout [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-open-billing.md b/docs/cmd/www/meroxa-open-billing.md index 20745320d..f0b940a3a 100644 --- a/docs/cmd/www/meroxa-open-billing.md +++ b/docs/cmd/www/meroxa-open-billing.md @@ -22,10 +22,10 @@ meroxa open billing [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-open.md b/docs/cmd/www/meroxa-open.md index 868612668..9c7c12b4e 100644 --- a/docs/cmd/www/meroxa-open.md +++ b/docs/cmd/www/meroxa-open.md @@ -18,10 +18,10 @@ Open in a web browser ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-pipelines-create.md b/docs/cmd/www/meroxa-pipelines-create.md index de8e8f5da..7a943d176 100644 --- a/docs/cmd/www/meroxa-pipelines-create.md +++ b/docs/cmd/www/meroxa-pipelines-create.md @@ -23,10 +23,10 @@ meroxa pipelines create NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-pipelines-list.md b/docs/cmd/www/meroxa-pipelines-list.md index 80cbb5f4c..c983d4f2b 100644 --- a/docs/cmd/www/meroxa-pipelines-list.md +++ b/docs/cmd/www/meroxa-pipelines-list.md @@ -23,10 +23,10 @@ meroxa pipelines list [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-pipelines-remove.md b/docs/cmd/www/meroxa-pipelines-remove.md index cc797d55b..0fd974d24 100644 --- a/docs/cmd/www/meroxa-pipelines-remove.md +++ b/docs/cmd/www/meroxa-pipelines-remove.md @@ -23,10 +23,10 @@ meroxa pipelines remove NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-pipelines-update.md b/docs/cmd/www/meroxa-pipelines-update.md index 5e1cded8e..75c7d8c1a 100644 --- a/docs/cmd/www/meroxa-pipelines-update.md +++ b/docs/cmd/www/meroxa-pipelines-update.md @@ -34,10 +34,10 @@ meroxa pipeline update pipeline-name --metadata '{"key":"value"}' ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-pipelines.md b/docs/cmd/www/meroxa-pipelines.md index f085e0080..7520d0e83 100644 --- a/docs/cmd/www/meroxa-pipelines.md +++ b/docs/cmd/www/meroxa-pipelines.md @@ -18,10 +18,10 @@ Manage pipelines on Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-create.md b/docs/cmd/www/meroxa-resources-create.md index c710f93b1..bf85a79ac 100644 --- a/docs/cmd/www/meroxa-resources-create.md +++ b/docs/cmd/www/meroxa-resources-create.md @@ -48,10 +48,10 @@ meroxa resources create slack --type url -u $WEBHOOK_URL ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-describe.md b/docs/cmd/www/meroxa-resources-describe.md index a8cab1809..866d1b998 100644 --- a/docs/cmd/www/meroxa-resources-describe.md +++ b/docs/cmd/www/meroxa-resources-describe.md @@ -22,10 +22,10 @@ meroxa resources describe [NAME] [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-list.md b/docs/cmd/www/meroxa-resources-list.md index 6683bd274..0caa2bb8d 100644 --- a/docs/cmd/www/meroxa-resources-list.md +++ b/docs/cmd/www/meroxa-resources-list.md @@ -24,10 +24,10 @@ meroxa resources list [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-remove.md b/docs/cmd/www/meroxa-resources-remove.md index af6a97f4b..2182dffa7 100644 --- a/docs/cmd/www/meroxa-resources-remove.md +++ b/docs/cmd/www/meroxa-resources-remove.md @@ -23,10 +23,10 @@ meroxa resources remove NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-rotate-tunnel-key.md b/docs/cmd/www/meroxa-resources-rotate-tunnel-key.md index 334e8ad1a..189130f4c 100644 --- a/docs/cmd/www/meroxa-resources-rotate-tunnel-key.md +++ b/docs/cmd/www/meroxa-resources-rotate-tunnel-key.md @@ -27,10 +27,10 @@ meroxa resources rotate-tunnel-key NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-update.md b/docs/cmd/www/meroxa-resources-update.md index 9eae1399b..80279e131 100644 --- a/docs/cmd/www/meroxa-resources-update.md +++ b/docs/cmd/www/meroxa-resources-update.md @@ -36,10 +36,10 @@ meroxa resources update NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-validate.md b/docs/cmd/www/meroxa-resources-validate.md index 7837355ea..b74787fe7 100644 --- a/docs/cmd/www/meroxa-resources-validate.md +++ b/docs/cmd/www/meroxa-resources-validate.md @@ -26,10 +26,10 @@ meroxa resources validate NAME [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources.md b/docs/cmd/www/meroxa-resources.md index a2ce778a1..317740d8f 100644 --- a/docs/cmd/www/meroxa-resources.md +++ b/docs/cmd/www/meroxa-resources.md @@ -18,10 +18,10 @@ Manage resources on Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-transforms-list.md b/docs/cmd/www/meroxa-transforms-list.md index 64a00c5e4..059843bf8 100644 --- a/docs/cmd/www/meroxa-transforms-list.md +++ b/docs/cmd/www/meroxa-transforms-list.md @@ -23,10 +23,10 @@ meroxa transforms list [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-transforms.md b/docs/cmd/www/meroxa-transforms.md index a20cb75f0..52bc1096f 100644 --- a/docs/cmd/www/meroxa-transforms.md +++ b/docs/cmd/www/meroxa-transforms.md @@ -18,10 +18,10 @@ Manage transforms on Meroxa ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-version.md b/docs/cmd/www/meroxa-version.md index 3d6038687..3fd668d32 100644 --- a/docs/cmd/www/meroxa-version.md +++ b/docs/cmd/www/meroxa-version.md @@ -22,10 +22,10 @@ meroxa version [flags] ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-whoami.md b/docs/cmd/www/meroxa-whoami.md index 9db0f3a8b..755b00111 100644 --- a/docs/cmd/www/meroxa-whoami.md +++ b/docs/cmd/www/meroxa-whoami.md @@ -29,10 +29,10 @@ meroxa whoami ### Options inherited from parent commands ``` - --config string config file - --debug display any debugging information - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa.md b/docs/cmd/www/meroxa.md index 64fea37a6..c7ae0fd4b 100644 --- a/docs/cmd/www/meroxa.md +++ b/docs/cmd/www/meroxa.md @@ -23,11 +23,11 @@ meroxa resources list --types ### Options ``` - --config string config file - --debug display any debugging information - -h, --help help for meroxa - --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --debug display any debugging information + -h, --help help for meroxa + --json output json + --meroxa-config string meroxa configuration file + --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) ``` ### SEE ALSO diff --git a/etc/completion/meroxa.completion.sh b/etc/completion/meroxa.completion.sh index 12f01882f..b6bb9d9db 100644 --- a/etc/completion/meroxa.completion.sh +++ b/etc/completion/meroxa.completion.sh @@ -369,10 +369,10 @@ _meroxa_api() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -395,10 +395,10 @@ _meroxa_auth_help() flags_with_completion=() flags_completion=() - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -424,10 +424,10 @@ _meroxa_auth_login() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -452,10 +452,10 @@ _meroxa_auth_logout() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -480,10 +480,10 @@ _meroxa_auth_whoami() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -512,10 +512,10 @@ _meroxa_auth() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -540,10 +540,10 @@ _meroxa_billing() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -568,10 +568,10 @@ _meroxa_completion() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -600,10 +600,10 @@ _meroxa_config_describe() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -626,10 +626,10 @@ _meroxa_config_help() flags_with_completion=() flags_completion=() - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -657,10 +657,10 @@ _meroxa_config() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -683,6 +683,9 @@ _meroxa_connect() flags_with_completion=() flags_completion=() + flags+=("--config=") + two_word_flags+=("--config") + two_word_flags+=("-c") flags+=("--from=") two_word_flags+=("--from") flags+=("--help") @@ -693,10 +696,10 @@ _meroxa_connect() two_word_flags+=("--pipeline") flags+=("--to=") two_word_flags+=("--to") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -722,6 +725,9 @@ _meroxa_connectors_create() flags_with_completion=() flags_completion=() + flags+=("--config=") + two_word_flags+=("--config") + two_word_flags+=("-c") flags+=("--from=") two_word_flags+=("--from") flags+=("--help") @@ -732,10 +738,10 @@ _meroxa_connectors_create() two_word_flags+=("--pipeline") flags+=("--to=") two_word_flags+=("--to") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -761,10 +767,10 @@ _meroxa_connectors_describe() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -787,10 +793,10 @@ _meroxa_connectors_help() flags_with_completion=() flags_completion=() - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -819,10 +825,10 @@ _meroxa_connectors_list() flags+=("--no-headers") flags+=("--pipeline=") two_word_flags+=("--pipeline") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -847,10 +853,10 @@ _meroxa_connectors_logs() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -877,10 +883,10 @@ _meroxa_connectors_remove() flags+=("-f") flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -903,16 +909,19 @@ _meroxa_connectors_update() flags_with_completion=() flags_completion=() + flags+=("--config=") + two_word_flags+=("--config") + two_word_flags+=("-c") flags+=("--help") flags+=("-h") flags+=("--name=") two_word_flags+=("--name") flags+=("--state=") two_word_flags+=("--state") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -954,10 +963,10 @@ _meroxa_connectors() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -988,10 +997,10 @@ _meroxa_endpoints_create() flags+=("--stream=") two_word_flags+=("--stream") two_word_flags+=("-s") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1020,10 +1029,10 @@ _meroxa_endpoints_describe() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1046,10 +1055,10 @@ _meroxa_endpoints_help() flags_with_completion=() flags_completion=() - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1076,10 +1085,10 @@ _meroxa_endpoints_list() flags+=("--help") flags+=("-h") flags+=("--no-headers") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1106,10 +1115,10 @@ _meroxa_endpoints_remove() flags+=("-f") flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1149,10 +1158,10 @@ _meroxa_endpoints() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1175,10 +1184,10 @@ _meroxa_help() flags_with_completion=() flags_completion=() - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1204,10 +1213,10 @@ _meroxa_login() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1232,10 +1241,10 @@ _meroxa_logout() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1260,10 +1269,10 @@ _meroxa_open_billing() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1286,10 +1295,10 @@ _meroxa_open_help() flags_with_completion=() flags_completion=() - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1317,10 +1326,10 @@ _meroxa_open() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1348,10 +1357,10 @@ _meroxa_pipelines_create() flags+=("--metadata=") two_word_flags+=("--metadata") two_word_flags+=("-m") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1374,10 +1383,10 @@ _meroxa_pipelines_help() flags_with_completion=() flags_completion=() - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1404,10 +1413,10 @@ _meroxa_pipelines_list() flags+=("--help") flags+=("-h") flags+=("--no-headers") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1434,10 +1443,10 @@ _meroxa_pipelines_remove() flags+=("-f") flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1469,10 +1478,10 @@ _meroxa_pipelines_update() two_word_flags+=("--name") flags+=("--state=") two_word_flags+=("--state") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1512,10 +1521,10 @@ _meroxa_pipelines() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1563,10 +1572,10 @@ _meroxa_resources_create() two_word_flags+=("-u") flags+=("--username=") two_word_flags+=("--username") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1594,10 +1603,10 @@ _meroxa_resources_describe() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1620,10 +1629,10 @@ _meroxa_resources_help() flags_with_completion=() flags_completion=() - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1651,10 +1660,10 @@ _meroxa_resources_list() flags+=("-h") flags+=("--no-headers") flags+=("--types") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1681,10 +1690,10 @@ _meroxa_resources_remove() flags+=("-f") flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1711,10 +1720,10 @@ _meroxa_resources_rotate-tunnel-key() flags+=("-f") flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1760,10 +1769,10 @@ _meroxa_resources_update() two_word_flags+=("-u") flags+=("--username=") two_word_flags+=("--username") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1788,10 +1797,10 @@ _meroxa_resources_validate() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1838,10 +1847,10 @@ _meroxa_resources() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1864,10 +1873,10 @@ _meroxa_transforms_help() flags_with_completion=() flags_completion=() - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1894,10 +1903,10 @@ _meroxa_transforms_list() flags+=("--help") flags+=("-h") flags+=("--no-headers") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1928,10 +1937,10 @@ _meroxa_transforms() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1956,10 +1965,10 @@ _meroxa_version() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -1984,10 +1993,10 @@ _meroxa_whoami() flags+=("--help") flags+=("-h") - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") @@ -2051,12 +2060,12 @@ _meroxa_root_command() flags_with_completion=() flags_completion=() - flags+=("--config=") - two_word_flags+=("--config") flags+=("--debug") flags+=("--help") flags+=("-h") flags+=("--json") + flags+=("--meroxa-config=") + two_word_flags+=("--meroxa-config") flags+=("--timeout=") two_word_flags+=("--timeout") diff --git a/etc/man/man1/meroxa-api.1 b/etc/man/man1/meroxa-api.1 index 69acf0015..06711ae95 100644 --- a/etc/man/man1/meroxa-api.1 +++ b/etc/man/man1/meroxa-api.1 @@ -23,10 +23,6 @@ Invoke Meroxa API .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Invoke Meroxa API \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-auth-login.1 b/etc/man/man1/meroxa-auth-login.1 index 1887fa099..74edd557f 100644 --- a/etc/man/man1/meroxa-auth-login.1 +++ b/etc/man/man1/meroxa-auth-login.1 @@ -23,10 +23,6 @@ Login or Sign up to the Meroxa Platform .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Login or Sign up to the Meroxa Platform \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-auth-logout.1 b/etc/man/man1/meroxa-auth-logout.1 index 1a5c81469..c0ef35efc 100644 --- a/etc/man/man1/meroxa-auth-logout.1 +++ b/etc/man/man1/meroxa-auth-logout.1 @@ -23,10 +23,6 @@ Clears local login credentials of the Meroxa Platform .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Clears local login credentials of the Meroxa Platform \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-auth-whoami.1 b/etc/man/man1/meroxa-auth-whoami.1 index ef7324acf..f132fba1a 100644 --- a/etc/man/man1/meroxa-auth-whoami.1 +++ b/etc/man/man1/meroxa-auth-whoami.1 @@ -23,10 +23,6 @@ Display the current logged in user .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Display the current logged in user \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-auth.1 b/etc/man/man1/meroxa-auth.1 index 6f30a9fbe..a50400d30 100644 --- a/etc/man/man1/meroxa-auth.1 +++ b/etc/man/man1/meroxa-auth.1 @@ -23,10 +23,6 @@ Authentication commands for Meroxa .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Authentication commands for Meroxa \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-billing.1 b/etc/man/man1/meroxa-billing.1 index 8ffb17e5d..164e7999e 100644 --- a/etc/man/man1/meroxa-billing.1 +++ b/etc/man/man1/meroxa-billing.1 @@ -23,10 +23,6 @@ Open your billing page in a web browser .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Open your billing page in a web browser \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-completion.1 b/etc/man/man1/meroxa-completion.1 index 2b2ecb58c..3e4e13818 100644 --- a/etc/man/man1/meroxa-completion.1 +++ b/etc/man/man1/meroxa-completion.1 @@ -59,10 +59,6 @@ $ meroxa completion fish > \~/.config/fish/completions/meroxa.fish .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -71,6 +67,10 @@ $ meroxa completion fish > \~/.config/fish/completions/meroxa.fish \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-config-describe.1 b/etc/man/man1/meroxa-config-describe.1 index 25a523f2c..c1b7c952b 100644 --- a/etc/man/man1/meroxa-config-describe.1 +++ b/etc/man/man1/meroxa-config-describe.1 @@ -23,10 +23,6 @@ This command will return the content of your configuration file where you could .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ This command will return the content of your configuration file where you could \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-config.1 b/etc/man/man1/meroxa-config.1 index da3dfc5a2..5e01b6869 100644 --- a/etc/man/man1/meroxa-config.1 +++ b/etc/man/man1/meroxa-config.1 @@ -23,10 +23,6 @@ Manage your Meroxa CLI configuration .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Manage your Meroxa CLI configuration \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-connect.1 b/etc/man/man1/meroxa-connect.1 index 51564c143..c54fa78a5 100644 --- a/etc/man/man1/meroxa-connect.1 +++ b/etc/man/man1/meroxa-connect.1 @@ -32,6 +32,10 @@ meroxa connector create \-\-to redshift \-\-input orders \-\-pipeline my\-pipeli .SH OPTIONS +.PP +\fB\-c\fP, \fB\-\-config\fP="" + connector configuration + .PP \fB\-\-from\fP="" source resource name @@ -54,10 +58,6 @@ meroxa connector create \-\-to redshift \-\-input orders \-\-pipeline my\-pipeli .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -66,6 +66,10 @@ meroxa connector create \-\-to redshift \-\-input orders \-\-pipeline my\-pipeli \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-connectors-create.1 b/etc/man/man1/meroxa-connectors-create.1 index 555f631f3..ac3f8b4f0 100644 --- a/etc/man/man1/meroxa-connectors-create.1 +++ b/etc/man/man1/meroxa-connectors-create.1 @@ -17,6 +17,10 @@ Use \fB\fCconnectors create\fR to create a connector from a source (\-\-from) or .SH OPTIONS +.PP +\fB\-c\fP, \fB\-\-config\fP="" + connector configuration + .PP \fB\-\-from\fP="" resource name to use as source @@ -39,10 +43,6 @@ Use \fB\fCconnectors create\fR to create a connector from a source (\-\-from) or .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -51,6 +51,10 @@ Use \fB\fCconnectors create\fR to create a connector from a source (\-\-from) or \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-connectors-describe.1 b/etc/man/man1/meroxa-connectors-describe.1 index 83dbd7077..b7960e32a 100644 --- a/etc/man/man1/meroxa-connectors-describe.1 +++ b/etc/man/man1/meroxa-connectors-describe.1 @@ -23,10 +23,6 @@ Describe connector .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Describe connector \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-connectors-list.1 b/etc/man/man1/meroxa-connectors-list.1 index 3eb648cbc..3231e10c5 100644 --- a/etc/man/man1/meroxa-connectors-list.1 +++ b/etc/man/man1/meroxa-connectors-list.1 @@ -31,10 +31,6 @@ List connectors .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -43,6 +39,10 @@ List connectors \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-connectors-logs.1 b/etc/man/man1/meroxa-connectors-logs.1 index b3e68f2d2..3434f6f52 100644 --- a/etc/man/man1/meroxa-connectors-logs.1 +++ b/etc/man/man1/meroxa-connectors-logs.1 @@ -23,10 +23,6 @@ Print logs for a connector .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Print logs for a connector \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-connectors-remove.1 b/etc/man/man1/meroxa-connectors-remove.1 index ee6ab03e8..fbb3b2eec 100644 --- a/etc/man/man1/meroxa-connectors-remove.1 +++ b/etc/man/man1/meroxa-connectors-remove.1 @@ -27,10 +27,6 @@ Remove connector .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -39,6 +35,10 @@ Remove connector \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-connectors-update.1 b/etc/man/man1/meroxa-connectors-update.1 index a2aa27e14..f6ae76228 100644 --- a/etc/man/man1/meroxa-connectors-update.1 +++ b/etc/man/man1/meroxa-connectors-update.1 @@ -17,6 +17,10 @@ Update connector name, configuration or state .SH OPTIONS +.PP +\fB\-c\fP, \fB\-\-config\fP="" + new connector configuration + .PP \fB\-h\fP, \fB\-\-help\fP[=false] help for update @@ -31,10 +35,6 @@ Update connector name, configuration or state .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -43,6 +43,10 @@ Update connector name, configuration or state \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-connectors.1 b/etc/man/man1/meroxa-connectors.1 index 0fd021a71..53c710e65 100644 --- a/etc/man/man1/meroxa-connectors.1 +++ b/etc/man/man1/meroxa-connectors.1 @@ -23,10 +23,6 @@ Manage connectors on Meroxa .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Manage connectors on Meroxa \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-endpoints-create.1 b/etc/man/man1/meroxa-endpoints-create.1 index 98c7807e6..24a071097 100644 --- a/etc/man/man1/meroxa-endpoints-create.1 +++ b/etc/man/man1/meroxa-endpoints-create.1 @@ -31,10 +31,6 @@ Use create endpoint to expose an endpoint to a connector stream .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -43,6 +39,10 @@ Use create endpoint to expose an endpoint to a connector stream \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-endpoints-describe.1 b/etc/man/man1/meroxa-endpoints-describe.1 index a8d16e04b..478092098 100644 --- a/etc/man/man1/meroxa-endpoints-describe.1 +++ b/etc/man/man1/meroxa-endpoints-describe.1 @@ -23,10 +23,6 @@ Describe endpoint .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Describe endpoint \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-endpoints-list.1 b/etc/man/man1/meroxa-endpoints-list.1 index 9e86e96ae..468fdb857 100644 --- a/etc/man/man1/meroxa-endpoints-list.1 +++ b/etc/man/man1/meroxa-endpoints-list.1 @@ -27,10 +27,6 @@ List endpoints .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -39,6 +35,10 @@ List endpoints \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-endpoints-remove.1 b/etc/man/man1/meroxa-endpoints-remove.1 index 296efc1f6..ecdbf3e26 100644 --- a/etc/man/man1/meroxa-endpoints-remove.1 +++ b/etc/man/man1/meroxa-endpoints-remove.1 @@ -27,10 +27,6 @@ Remove endpoint .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -39,6 +35,10 @@ Remove endpoint \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-endpoints.1 b/etc/man/man1/meroxa-endpoints.1 index 923bce76d..c835aefac 100644 --- a/etc/man/man1/meroxa-endpoints.1 +++ b/etc/man/man1/meroxa-endpoints.1 @@ -23,10 +23,6 @@ Manage endpoints on Meroxa .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Manage endpoints on Meroxa \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-login.1 b/etc/man/man1/meroxa-login.1 index cd32d9416..97b04e500 100644 --- a/etc/man/man1/meroxa-login.1 +++ b/etc/man/man1/meroxa-login.1 @@ -23,10 +23,6 @@ Login or Sign up to the Meroxa Platform .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Login or Sign up to the Meroxa Platform \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-logout.1 b/etc/man/man1/meroxa-logout.1 index dc01f5e7c..a8a71168b 100644 --- a/etc/man/man1/meroxa-logout.1 +++ b/etc/man/man1/meroxa-logout.1 @@ -23,10 +23,6 @@ Clears local login credentials of the Meroxa Platform .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Clears local login credentials of the Meroxa Platform \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-open-billing.1 b/etc/man/man1/meroxa-open-billing.1 index 41a34e470..cb840d238 100644 --- a/etc/man/man1/meroxa-open-billing.1 +++ b/etc/man/man1/meroxa-open-billing.1 @@ -23,10 +23,6 @@ Open your billing page in a web browser .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Open your billing page in a web browser \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-open.1 b/etc/man/man1/meroxa-open.1 index abd1ca95b..a5440fd9f 100644 --- a/etc/man/man1/meroxa-open.1 +++ b/etc/man/man1/meroxa-open.1 @@ -23,10 +23,6 @@ Open in a web browser .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Open in a web browser \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-pipelines-create.1 b/etc/man/man1/meroxa-pipelines-create.1 index aa6e844f7..4dd748358 100644 --- a/etc/man/man1/meroxa-pipelines-create.1 +++ b/etc/man/man1/meroxa-pipelines-create.1 @@ -27,10 +27,6 @@ Create a pipeline .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -39,6 +35,10 @@ Create a pipeline \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-pipelines-list.1 b/etc/man/man1/meroxa-pipelines-list.1 index 108e24136..b64aa7a41 100644 --- a/etc/man/man1/meroxa-pipelines-list.1 +++ b/etc/man/man1/meroxa-pipelines-list.1 @@ -27,10 +27,6 @@ List pipelines .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -39,6 +35,10 @@ List pipelines \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-pipelines-remove.1 b/etc/man/man1/meroxa-pipelines-remove.1 index 489feb58a..2b08bd64e 100644 --- a/etc/man/man1/meroxa-pipelines-remove.1 +++ b/etc/man/man1/meroxa-pipelines-remove.1 @@ -27,10 +27,6 @@ Remove pipeline .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -39,6 +35,10 @@ Remove pipeline \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-pipelines-update.1 b/etc/man/man1/meroxa-pipelines-update.1 index d062892c8..6b8e5165b 100644 --- a/etc/man/man1/meroxa-pipelines-update.1 +++ b/etc/man/man1/meroxa-pipelines-update.1 @@ -35,10 +35,6 @@ Update pipeline name, state or metadata .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -47,6 +43,10 @@ Update pipeline name, state or metadata \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-pipelines.1 b/etc/man/man1/meroxa-pipelines.1 index e94e32bc7..33a194cbf 100644 --- a/etc/man/man1/meroxa-pipelines.1 +++ b/etc/man/man1/meroxa-pipelines.1 @@ -23,10 +23,6 @@ Manage pipelines on Meroxa .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Manage pipelines on Meroxa \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-resources-create.1 b/etc/man/man1/meroxa-resources-create.1 index 92bc08774..7d851a7dd 100644 --- a/etc/man/man1/meroxa-resources-create.1 +++ b/etc/man/man1/meroxa-resources-create.1 @@ -67,10 +67,6 @@ Use the create command to add resources to your Meroxa resource catalog. .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -79,6 +75,10 @@ Use the create command to add resources to your Meroxa resource catalog. \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-resources-describe.1 b/etc/man/man1/meroxa-resources-describe.1 index 62d320e84..a70f44cf2 100644 --- a/etc/man/man1/meroxa-resources-describe.1 +++ b/etc/man/man1/meroxa-resources-describe.1 @@ -23,10 +23,6 @@ Describe resource .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Describe resource \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-resources-list.1 b/etc/man/man1/meroxa-resources-list.1 index c0c58603d..4e20f10cd 100644 --- a/etc/man/man1/meroxa-resources-list.1 +++ b/etc/man/man1/meroxa-resources-list.1 @@ -31,10 +31,6 @@ List resources and resource types .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -43,6 +39,10 @@ List resources and resource types \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-resources-remove.1 b/etc/man/man1/meroxa-resources-remove.1 index b9424e8c0..00e994767 100644 --- a/etc/man/man1/meroxa-resources-remove.1 +++ b/etc/man/man1/meroxa-resources-remove.1 @@ -27,10 +27,6 @@ Remove resource .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -39,6 +35,10 @@ Remove resource \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-resources-rotate-tunnel-key.1 b/etc/man/man1/meroxa-resources-rotate-tunnel-key.1 index e90049588..0177fd72a 100644 --- a/etc/man/man1/meroxa-resources-rotate-tunnel-key.1 +++ b/etc/man/man1/meroxa-resources-rotate-tunnel-key.1 @@ -27,10 +27,6 @@ Rotate the tunnel key for a Meroxa resource. .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -39,6 +35,10 @@ Rotate the tunnel key for a Meroxa resource. \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-resources-update.1 b/etc/man/man1/meroxa-resources-update.1 index d4923628e..8e00666bb 100644 --- a/etc/man/man1/meroxa-resources-update.1 +++ b/etc/man/man1/meroxa-resources-update.1 @@ -63,10 +63,6 @@ Use the update command to update various Meroxa resources. .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -75,6 +71,10 @@ Use the update command to update various Meroxa resources. \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-resources-validate.1 b/etc/man/man1/meroxa-resources-validate.1 index 1f4b4caf4..8de4ca811 100644 --- a/etc/man/man1/meroxa-resources-validate.1 +++ b/etc/man/man1/meroxa-resources-validate.1 @@ -23,10 +23,6 @@ Validate a Meroxa resource. .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Validate a Meroxa resource. \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-resources.1 b/etc/man/man1/meroxa-resources.1 index d85c81297..9b8437ccc 100644 --- a/etc/man/man1/meroxa-resources.1 +++ b/etc/man/man1/meroxa-resources.1 @@ -23,10 +23,6 @@ Manage resources on Meroxa .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Manage resources on Meroxa \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-transforms-list.1 b/etc/man/man1/meroxa-transforms-list.1 index af5159ec0..4a8389752 100644 --- a/etc/man/man1/meroxa-transforms-list.1 +++ b/etc/man/man1/meroxa-transforms-list.1 @@ -27,10 +27,6 @@ List transforms .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -39,6 +35,10 @@ List transforms \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-transforms.1 b/etc/man/man1/meroxa-transforms.1 index f6603340d..0c49b31d7 100644 --- a/etc/man/man1/meroxa-transforms.1 +++ b/etc/man/man1/meroxa-transforms.1 @@ -23,10 +23,6 @@ Manage transforms on Meroxa .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Manage transforms on Meroxa \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-version.1 b/etc/man/man1/meroxa-version.1 index 18b4d9382..818e10912 100644 --- a/etc/man/man1/meroxa-version.1 +++ b/etc/man/man1/meroxa-version.1 @@ -23,10 +23,6 @@ Display the Meroxa CLI version .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Display the Meroxa CLI version \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa-whoami.1 b/etc/man/man1/meroxa-whoami.1 index e88b47dfb..cdb6bb466 100644 --- a/etc/man/man1/meroxa-whoami.1 +++ b/etc/man/man1/meroxa-whoami.1 @@ -23,10 +23,6 @@ Display the current logged in user .SH OPTIONS INHERITED FROM PARENT COMMANDS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -35,6 +31,10 @@ Display the current logged in user \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s) diff --git a/etc/man/man1/meroxa.1 b/etc/man/man1/meroxa.1 index 5b3b10b5b..8aa2cc821 100644 --- a/etc/man/man1/meroxa.1 +++ b/etc/man/man1/meroxa.1 @@ -25,10 +25,6 @@ meroxa resources list \-\-types .SH OPTIONS -.PP -\fB\-\-config\fP="" - config file - .PP \fB\-\-debug\fP[=false] display any debugging information @@ -41,6 +37,10 @@ meroxa resources list \-\-types \fB\-\-json\fP[=false] output json +.PP +\fB\-\-meroxa\-config\fP="" + meroxa configuration file + .PP \fB\-\-timeout\fP=10s set the duration of the client timeout in seconds (default 10s)