diff --git a/cmd/meroxa/builder/builder.go b/cmd/meroxa/builder/builder.go index a16c5617e..f17da7ecc 100644 --- a/cmd/meroxa/builder/builder.go +++ b/cmd/meroxa/builder/builder.go @@ -451,6 +451,10 @@ func buildCommandWithFlags(cmd *cobra.Command, c Command) { flags = cmd.Flags() } + if f.Required { + f.Usage += " (required)" + } + switch val := f.Ptr.(type) { case *string: if f.Default == nil { diff --git a/cmd/meroxa/global/global.go b/cmd/meroxa/global/global.go index 784b0bc86..ba195e388 100644 --- a/cmd/meroxa/global/global.go +++ b/cmd/meroxa/global/global.go @@ -56,7 +56,7 @@ func RegisterGlobalFlags(cmd *cobra.Command) { cmd.PersistentFlags().StringVar(&flagCLIConfigFile, "cli-config-file", "", "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 + cmd.PersistentFlags().DurationVar(&flagTimeout, "timeout", time.Second*10, "set the duration of the client timeout in seconds") // nolint:gomnd,lll if err := cmd.PersistentFlags().MarkHidden("api-url"); err != nil { panic(fmt.Sprintf("could not mark flag as hidden: %v", err)) diff --git a/docs/cmd/md/meroxa.md b/docs/cmd/md/meroxa.md index 0b1a1a46c..9fbe131af 100644 --- a/docs/cmd/md/meroxa.md +++ b/docs/cmd/md/meroxa.md @@ -20,7 +20,7 @@ meroxa resources list --types --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) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_api.md b/docs/cmd/md/meroxa_api.md index 5e641e407..0c68506f3 100644 --- a/docs/cmd/md/meroxa_api.md +++ b/docs/cmd/md/meroxa_api.md @@ -26,7 +26,7 @@ meroxa api POST /v1/endpoints '{"protocol": "HTTP", "stream": "resource-2-499379 --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_auth.md b/docs/cmd/md/meroxa_auth.md index c1e070ca2..d8423aa63 100644 --- a/docs/cmd/md/meroxa_auth.md +++ b/docs/cmd/md/meroxa_auth.md @@ -14,7 +14,7 @@ Authentication commands for Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_auth_login.md b/docs/cmd/md/meroxa_auth_login.md index a4b833b32..6f735f842 100644 --- a/docs/cmd/md/meroxa_auth_login.md +++ b/docs/cmd/md/meroxa_auth_login.md @@ -18,7 +18,7 @@ meroxa auth login [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_auth_logout.md b/docs/cmd/md/meroxa_auth_logout.md index 8915091cb..758368457 100644 --- a/docs/cmd/md/meroxa_auth_logout.md +++ b/docs/cmd/md/meroxa_auth_logout.md @@ -18,7 +18,7 @@ meroxa auth logout [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_auth_whoami.md b/docs/cmd/md/meroxa_auth_whoami.md index 68a37990d..b72534824 100644 --- a/docs/cmd/md/meroxa_auth_whoami.md +++ b/docs/cmd/md/meroxa_auth_whoami.md @@ -25,7 +25,7 @@ meroxa whoami --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_billing.md b/docs/cmd/md/meroxa_billing.md index 1455b6a43..6c9992f79 100644 --- a/docs/cmd/md/meroxa_billing.md +++ b/docs/cmd/md/meroxa_billing.md @@ -18,7 +18,7 @@ meroxa billing [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_completion.md b/docs/cmd/md/meroxa_completion.md index fe47934d3..754a10868 100644 --- a/docs/cmd/md/meroxa_completion.md +++ b/docs/cmd/md/meroxa_completion.md @@ -52,7 +52,7 @@ meroxa completion [bash|zsh|fish|powershell] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_config.md b/docs/cmd/md/meroxa_config.md index e19f8f2ea..11436b2bb 100644 --- a/docs/cmd/md/meroxa_config.md +++ b/docs/cmd/md/meroxa_config.md @@ -18,7 +18,7 @@ meroxa config [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_config_describe.md b/docs/cmd/md/meroxa_config_describe.md index 6764d168f..d48d83ec4 100644 --- a/docs/cmd/md/meroxa_config_describe.md +++ b/docs/cmd/md/meroxa_config_describe.md @@ -35,7 +35,7 @@ refresh_token: c337a0d...c0f928b --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connect.md b/docs/cmd/md/meroxa_connect.md index f2c31f8e4..e00d5d7a0 100644 --- a/docs/cmd/md/meroxa_connect.md +++ b/docs/cmd/md/meroxa_connect.md @@ -26,11 +26,11 @@ meroxa connect --from RESOURCE-NAME --to RESOURCE-NAME [flags] ``` -c, --config string connector configuration - --from string source resource name + --from string source resource name (required) -h, --help help for connect --input string command delimited list of input streams - --pipeline string pipeline name to attach connectors to - --to string destination resource name + --pipeline string pipeline name to attach connectors to (required) + --to string destination resource name (required) ``` ### Options inherited from parent commands @@ -39,7 +39,7 @@ meroxa connect --from RESOURCE-NAME --to RESOURCE-NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors.md b/docs/cmd/md/meroxa_connectors.md index 6055cda77..bf3cdb332 100644 --- a/docs/cmd/md/meroxa_connectors.md +++ b/docs/cmd/md/meroxa_connectors.md @@ -14,7 +14,7 @@ Manage connectors on Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_create.md b/docs/cmd/md/meroxa_connectors_create.md index a14559420..e759c5866 100644 --- a/docs/cmd/md/meroxa_connectors_create.md +++ b/docs/cmd/md/meroxa_connectors_create.md @@ -27,7 +27,7 @@ meroxa connectors create [NAME] --to pg2redshift --input orders --pipeline my-pi --from string resource name to use as source -h, --help help for create --input string command delimited list of input streams - --pipeline string pipeline name to attach connector to + --pipeline string pipeline name to attach connector to (required) --to string resource name to use as destination ``` @@ -37,7 +37,7 @@ meroxa connectors create [NAME] --to pg2redshift --input orders --pipeline my-pi --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_describe.md b/docs/cmd/md/meroxa_connectors_describe.md index 2e50962e6..426a6c737 100644 --- a/docs/cmd/md/meroxa_connectors_describe.md +++ b/docs/cmd/md/meroxa_connectors_describe.md @@ -18,7 +18,7 @@ meroxa connectors describe [NAME] [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_list.md b/docs/cmd/md/meroxa_connectors_list.md index f85788a10..9f932366b 100644 --- a/docs/cmd/md/meroxa_connectors_list.md +++ b/docs/cmd/md/meroxa_connectors_list.md @@ -20,7 +20,7 @@ meroxa connectors list [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_logs.md b/docs/cmd/md/meroxa_connectors_logs.md index 9eab82406..491650b9b 100644 --- a/docs/cmd/md/meroxa_connectors_logs.md +++ b/docs/cmd/md/meroxa_connectors_logs.md @@ -18,7 +18,7 @@ meroxa connectors logs NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_remove.md b/docs/cmd/md/meroxa_connectors_remove.md index 4a2d02038..03cbf5b37 100644 --- a/docs/cmd/md/meroxa_connectors_remove.md +++ b/docs/cmd/md/meroxa_connectors_remove.md @@ -19,7 +19,7 @@ meroxa connectors remove NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_connectors_update.md b/docs/cmd/md/meroxa_connectors_update.md index 679e53fec..8bd8f147c 100644 --- a/docs/cmd/md/meroxa_connectors_update.md +++ b/docs/cmd/md/meroxa_connectors_update.md @@ -31,7 +31,7 @@ meroxa connector update connector-name --config '{"table.name.format":"public.co --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_endpoints.md b/docs/cmd/md/meroxa_endpoints.md index 2308a46ad..b499f9d53 100644 --- a/docs/cmd/md/meroxa_endpoints.md +++ b/docs/cmd/md/meroxa_endpoints.md @@ -14,7 +14,7 @@ Manage endpoints on Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_endpoints_create.md b/docs/cmd/md/meroxa_endpoints_create.md index 43b3c0435..fb8e4e50a 100644 --- a/docs/cmd/md/meroxa_endpoints_create.md +++ b/docs/cmd/md/meroxa_endpoints_create.md @@ -20,8 +20,8 @@ meroxa endpoints create my-endpoint --protocol http --stream my-stream ``` -h, --help help for create - -p, --protocol string protocol, value can be http or grpc - -s, --stream string stream name + -p, --protocol string protocol, value can be http or grpc (required) + -s, --stream string stream name (required) ``` ### Options inherited from parent commands @@ -30,7 +30,7 @@ meroxa endpoints create my-endpoint --protocol http --stream my-stream --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_endpoints_describe.md b/docs/cmd/md/meroxa_endpoints_describe.md index 3d9d43a52..244ad4a63 100644 --- a/docs/cmd/md/meroxa_endpoints_describe.md +++ b/docs/cmd/md/meroxa_endpoints_describe.md @@ -18,7 +18,7 @@ meroxa endpoints describe [NAME] [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_endpoints_list.md b/docs/cmd/md/meroxa_endpoints_list.md index 473a1f93f..0933e2e50 100644 --- a/docs/cmd/md/meroxa_endpoints_list.md +++ b/docs/cmd/md/meroxa_endpoints_list.md @@ -19,7 +19,7 @@ meroxa endpoints list [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_endpoints_remove.md b/docs/cmd/md/meroxa_endpoints_remove.md index c21ad9559..b90c2d1dd 100644 --- a/docs/cmd/md/meroxa_endpoints_remove.md +++ b/docs/cmd/md/meroxa_endpoints_remove.md @@ -19,7 +19,7 @@ meroxa endpoints remove NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_login.md b/docs/cmd/md/meroxa_login.md index 0160b258f..e66f6b9af 100644 --- a/docs/cmd/md/meroxa_login.md +++ b/docs/cmd/md/meroxa_login.md @@ -18,7 +18,7 @@ meroxa login [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_logout.md b/docs/cmd/md/meroxa_logout.md index 9961afe34..8b9d26cfb 100644 --- a/docs/cmd/md/meroxa_logout.md +++ b/docs/cmd/md/meroxa_logout.md @@ -18,7 +18,7 @@ meroxa logout [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_open.md b/docs/cmd/md/meroxa_open.md index abab26c6c..ebf66c3d5 100644 --- a/docs/cmd/md/meroxa_open.md +++ b/docs/cmd/md/meroxa_open.md @@ -14,7 +14,7 @@ Open in a web browser --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_open_billing.md b/docs/cmd/md/meroxa_open_billing.md index b4fbafe8b..369c78f60 100644 --- a/docs/cmd/md/meroxa_open_billing.md +++ b/docs/cmd/md/meroxa_open_billing.md @@ -18,7 +18,7 @@ meroxa open billing [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_pipelines.md b/docs/cmd/md/meroxa_pipelines.md index 01dcf0c67..86c6be5cc 100644 --- a/docs/cmd/md/meroxa_pipelines.md +++ b/docs/cmd/md/meroxa_pipelines.md @@ -14,7 +14,7 @@ Manage pipelines on Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_pipelines_create.md b/docs/cmd/md/meroxa_pipelines_create.md index 05e90f4fc..ccf5e8766 100644 --- a/docs/cmd/md/meroxa_pipelines_create.md +++ b/docs/cmd/md/meroxa_pipelines_create.md @@ -19,7 +19,7 @@ meroxa pipelines create NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_pipelines_list.md b/docs/cmd/md/meroxa_pipelines_list.md index 6ae749fa1..519372148 100644 --- a/docs/cmd/md/meroxa_pipelines_list.md +++ b/docs/cmd/md/meroxa_pipelines_list.md @@ -19,7 +19,7 @@ meroxa pipelines list [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_pipelines_remove.md b/docs/cmd/md/meroxa_pipelines_remove.md index d03d15d68..fcb9dfbbc 100644 --- a/docs/cmd/md/meroxa_pipelines_remove.md +++ b/docs/cmd/md/meroxa_pipelines_remove.md @@ -19,7 +19,7 @@ meroxa pipelines remove NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_pipelines_update.md b/docs/cmd/md/meroxa_pipelines_update.md index e37051801..e08601587 100644 --- a/docs/cmd/md/meroxa_pipelines_update.md +++ b/docs/cmd/md/meroxa_pipelines_update.md @@ -30,7 +30,7 @@ meroxa pipeline update pipeline-name --metadata '{"key":"value"}' --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources.md b/docs/cmd/md/meroxa_resources.md index 2e4bfa81d..6adcf9b07 100644 --- a/docs/cmd/md/meroxa_resources.md +++ b/docs/cmd/md/meroxa_resources.md @@ -14,7 +14,7 @@ Manage resources on Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_create.md b/docs/cmd/md/meroxa_resources_create.md index 73cac751f..7945db2b8 100644 --- a/docs/cmd/md/meroxa_resources_create.md +++ b/docs/cmd/md/meroxa_resources_create.md @@ -33,8 +33,8 @@ meroxa resources create slack --type url -u $WEBHOOK_URL --ssh-private-key string SSH tunneling private key --ssh-url string SSH tunneling address --ssl use SSL - --type string resource type - -u, --url string resource url + --type string resource type (required) + -u, --url string resource url (required) --username string username ``` @@ -44,7 +44,7 @@ meroxa resources create slack --type url -u $WEBHOOK_URL --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_describe.md b/docs/cmd/md/meroxa_resources_describe.md index 9f1e411e3..69c73da37 100644 --- a/docs/cmd/md/meroxa_resources_describe.md +++ b/docs/cmd/md/meroxa_resources_describe.md @@ -18,7 +18,7 @@ meroxa resources describe [NAME] [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_list.md b/docs/cmd/md/meroxa_resources_list.md index e38acf2ae..cc7afa381 100644 --- a/docs/cmd/md/meroxa_resources_list.md +++ b/docs/cmd/md/meroxa_resources_list.md @@ -20,7 +20,7 @@ meroxa resources list [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_remove.md b/docs/cmd/md/meroxa_resources_remove.md index b0773778a..791231d97 100644 --- a/docs/cmd/md/meroxa_resources_remove.md +++ b/docs/cmd/md/meroxa_resources_remove.md @@ -19,7 +19,7 @@ meroxa resources remove NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (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 d5ed92f94..f8884346e 100644 --- a/docs/cmd/md/meroxa_resources_rotate-tunnel-key.md +++ b/docs/cmd/md/meroxa_resources_rotate-tunnel-key.md @@ -23,7 +23,7 @@ meroxa resources rotate-tunnel-key NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_update.md b/docs/cmd/md/meroxa_resources_update.md index 96ecb5833..9f8676d5d 100644 --- a/docs/cmd/md/meroxa_resources_update.md +++ b/docs/cmd/md/meroxa_resources_update.md @@ -32,7 +32,7 @@ meroxa resources update NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_resources_validate.md b/docs/cmd/md/meroxa_resources_validate.md index a7de93e95..711c2c2fa 100644 --- a/docs/cmd/md/meroxa_resources_validate.md +++ b/docs/cmd/md/meroxa_resources_validate.md @@ -22,7 +22,7 @@ meroxa resources validate NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_transforms.md b/docs/cmd/md/meroxa_transforms.md index 950bd9147..b0f98acca 100644 --- a/docs/cmd/md/meroxa_transforms.md +++ b/docs/cmd/md/meroxa_transforms.md @@ -14,7 +14,7 @@ Manage transforms on Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_transforms_list.md b/docs/cmd/md/meroxa_transforms_list.md index 4a740e648..c2a8e5eba 100644 --- a/docs/cmd/md/meroxa_transforms_list.md +++ b/docs/cmd/md/meroxa_transforms_list.md @@ -19,7 +19,7 @@ meroxa transforms list [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_version.md b/docs/cmd/md/meroxa_version.md index ce950b9ff..1593ae40a 100644 --- a/docs/cmd/md/meroxa_version.md +++ b/docs/cmd/md/meroxa_version.md @@ -18,7 +18,7 @@ meroxa version [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/md/meroxa_whoami.md b/docs/cmd/md/meroxa_whoami.md index 404ce746e..ca9f37c62 100644 --- a/docs/cmd/md/meroxa_whoami.md +++ b/docs/cmd/md/meroxa_whoami.md @@ -25,7 +25,7 @@ meroxa whoami --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-api.md b/docs/cmd/www/meroxa-api.md index 093f2626d..3d72c653c 100644 --- a/docs/cmd/www/meroxa-api.md +++ b/docs/cmd/www/meroxa-api.md @@ -33,7 +33,7 @@ meroxa api POST /v1/endpoints '{"protocol": "HTTP", "stream": "resource-2-499379 --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-auth-login.md b/docs/cmd/www/meroxa-auth-login.md index 38eba1ea1..5c899944a 100644 --- a/docs/cmd/www/meroxa-auth-login.md +++ b/docs/cmd/www/meroxa-auth-login.md @@ -25,7 +25,7 @@ meroxa auth login [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-auth-logout.md b/docs/cmd/www/meroxa-auth-logout.md index 1331370b2..085ab6efc 100644 --- a/docs/cmd/www/meroxa-auth-logout.md +++ b/docs/cmd/www/meroxa-auth-logout.md @@ -25,7 +25,7 @@ meroxa auth logout [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-auth-whoami.md b/docs/cmd/www/meroxa-auth-whoami.md index 819e062bd..3ad156253 100644 --- a/docs/cmd/www/meroxa-auth-whoami.md +++ b/docs/cmd/www/meroxa-auth-whoami.md @@ -32,7 +32,7 @@ meroxa whoami --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-auth.md b/docs/cmd/www/meroxa-auth.md index 7049f7949..39e1cfd0e 100644 --- a/docs/cmd/www/meroxa-auth.md +++ b/docs/cmd/www/meroxa-auth.md @@ -21,7 +21,7 @@ Authentication commands for Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-billing.md b/docs/cmd/www/meroxa-billing.md index efc21c5ea..94add0bdf 100644 --- a/docs/cmd/www/meroxa-billing.md +++ b/docs/cmd/www/meroxa-billing.md @@ -25,7 +25,7 @@ meroxa billing [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-completion.md b/docs/cmd/www/meroxa-completion.md index 902789f19..ac7d0f9d0 100644 --- a/docs/cmd/www/meroxa-completion.md +++ b/docs/cmd/www/meroxa-completion.md @@ -59,7 +59,7 @@ meroxa completion [bash|zsh|fish|powershell] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-config-describe.md b/docs/cmd/www/meroxa-config-describe.md index 04e50f61c..80e0ed56e 100644 --- a/docs/cmd/www/meroxa-config-describe.md +++ b/docs/cmd/www/meroxa-config-describe.md @@ -42,7 +42,7 @@ refresh_token: c337a0d...c0f928b --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-config.md b/docs/cmd/www/meroxa-config.md index fb1faec79..d0d3e3c37 100644 --- a/docs/cmd/www/meroxa-config.md +++ b/docs/cmd/www/meroxa-config.md @@ -25,7 +25,7 @@ meroxa config [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connect.md b/docs/cmd/www/meroxa-connect.md index 9b5ab45e9..33cdc5b5d 100644 --- a/docs/cmd/www/meroxa-connect.md +++ b/docs/cmd/www/meroxa-connect.md @@ -33,11 +33,11 @@ meroxa connect --from RESOURCE-NAME --to RESOURCE-NAME [flags] ``` -c, --config string connector configuration - --from string source resource name + --from string source resource name (required) -h, --help help for connect --input string command delimited list of input streams - --pipeline string pipeline name to attach connectors to - --to string destination resource name + --pipeline string pipeline name to attach connectors to (required) + --to string destination resource name (required) ``` ### Options inherited from parent commands @@ -46,7 +46,7 @@ meroxa connect --from RESOURCE-NAME --to RESOURCE-NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-create.md b/docs/cmd/www/meroxa-connectors-create.md index 89ccd34da..a8c4f95c8 100644 --- a/docs/cmd/www/meroxa-connectors-create.md +++ b/docs/cmd/www/meroxa-connectors-create.md @@ -34,7 +34,7 @@ meroxa connectors create [NAME] --to pg2redshift --input orders --pipeline my-pi --from string resource name to use as source -h, --help help for create --input string command delimited list of input streams - --pipeline string pipeline name to attach connector to + --pipeline string pipeline name to attach connector to (required) --to string resource name to use as destination ``` @@ -44,7 +44,7 @@ meroxa connectors create [NAME] --to pg2redshift --input orders --pipeline my-pi --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-describe.md b/docs/cmd/www/meroxa-connectors-describe.md index e3545c53e..fc86131a0 100644 --- a/docs/cmd/www/meroxa-connectors-describe.md +++ b/docs/cmd/www/meroxa-connectors-describe.md @@ -25,7 +25,7 @@ meroxa connectors describe [NAME] [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-list.md b/docs/cmd/www/meroxa-connectors-list.md index c370bb6a3..7b9978949 100644 --- a/docs/cmd/www/meroxa-connectors-list.md +++ b/docs/cmd/www/meroxa-connectors-list.md @@ -27,7 +27,7 @@ meroxa connectors list [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-logs.md b/docs/cmd/www/meroxa-connectors-logs.md index 8e1d77b1a..7d3a6ec86 100644 --- a/docs/cmd/www/meroxa-connectors-logs.md +++ b/docs/cmd/www/meroxa-connectors-logs.md @@ -25,7 +25,7 @@ meroxa connectors logs NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-remove.md b/docs/cmd/www/meroxa-connectors-remove.md index 080256db1..cb5371cfd 100644 --- a/docs/cmd/www/meroxa-connectors-remove.md +++ b/docs/cmd/www/meroxa-connectors-remove.md @@ -26,7 +26,7 @@ meroxa connectors remove NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors-update.md b/docs/cmd/www/meroxa-connectors-update.md index 8c4bc429e..bafd58408 100644 --- a/docs/cmd/www/meroxa-connectors-update.md +++ b/docs/cmd/www/meroxa-connectors-update.md @@ -38,7 +38,7 @@ meroxa connector update connector-name --config '{"table.name.format":"public.co --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-connectors.md b/docs/cmd/www/meroxa-connectors.md index acd4ab53f..fd5b18b5d 100644 --- a/docs/cmd/www/meroxa-connectors.md +++ b/docs/cmd/www/meroxa-connectors.md @@ -21,7 +21,7 @@ Manage connectors on Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-endpoints-create.md b/docs/cmd/www/meroxa-endpoints-create.md index 084d81997..d315bfc32 100644 --- a/docs/cmd/www/meroxa-endpoints-create.md +++ b/docs/cmd/www/meroxa-endpoints-create.md @@ -27,8 +27,8 @@ meroxa endpoints create my-endpoint --protocol http --stream my-stream ``` -h, --help help for create - -p, --protocol string protocol, value can be http or grpc - -s, --stream string stream name + -p, --protocol string protocol, value can be http or grpc (required) + -s, --stream string stream name (required) ``` ### Options inherited from parent commands @@ -37,7 +37,7 @@ meroxa endpoints create my-endpoint --protocol http --stream my-stream --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-endpoints-describe.md b/docs/cmd/www/meroxa-endpoints-describe.md index 1ab451519..d014a143c 100644 --- a/docs/cmd/www/meroxa-endpoints-describe.md +++ b/docs/cmd/www/meroxa-endpoints-describe.md @@ -25,7 +25,7 @@ meroxa endpoints describe [NAME] [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-endpoints-list.md b/docs/cmd/www/meroxa-endpoints-list.md index 98a94cc89..2c49c476c 100644 --- a/docs/cmd/www/meroxa-endpoints-list.md +++ b/docs/cmd/www/meroxa-endpoints-list.md @@ -26,7 +26,7 @@ meroxa endpoints list [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-endpoints-remove.md b/docs/cmd/www/meroxa-endpoints-remove.md index daee01ad2..dc428e05f 100644 --- a/docs/cmd/www/meroxa-endpoints-remove.md +++ b/docs/cmd/www/meroxa-endpoints-remove.md @@ -26,7 +26,7 @@ meroxa endpoints remove NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-endpoints.md b/docs/cmd/www/meroxa-endpoints.md index 9e94ccfa8..58645f874 100644 --- a/docs/cmd/www/meroxa-endpoints.md +++ b/docs/cmd/www/meroxa-endpoints.md @@ -21,7 +21,7 @@ Manage endpoints on Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-login.md b/docs/cmd/www/meroxa-login.md index 41d18b24f..7226d1997 100644 --- a/docs/cmd/www/meroxa-login.md +++ b/docs/cmd/www/meroxa-login.md @@ -25,7 +25,7 @@ meroxa login [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-logout.md b/docs/cmd/www/meroxa-logout.md index a2c3ac017..48bbd8a4e 100644 --- a/docs/cmd/www/meroxa-logout.md +++ b/docs/cmd/www/meroxa-logout.md @@ -25,7 +25,7 @@ meroxa logout [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-open-billing.md b/docs/cmd/www/meroxa-open-billing.md index 1fb32582b..271e0eb70 100644 --- a/docs/cmd/www/meroxa-open-billing.md +++ b/docs/cmd/www/meroxa-open-billing.md @@ -25,7 +25,7 @@ meroxa open billing [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-open.md b/docs/cmd/www/meroxa-open.md index 78d8f973a..5c388f682 100644 --- a/docs/cmd/www/meroxa-open.md +++ b/docs/cmd/www/meroxa-open.md @@ -21,7 +21,7 @@ Open in a web browser --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-pipelines-create.md b/docs/cmd/www/meroxa-pipelines-create.md index 38512e1e0..b4d146776 100644 --- a/docs/cmd/www/meroxa-pipelines-create.md +++ b/docs/cmd/www/meroxa-pipelines-create.md @@ -26,7 +26,7 @@ meroxa pipelines create NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-pipelines-list.md b/docs/cmd/www/meroxa-pipelines-list.md index c3b9cfa92..b7d97a482 100644 --- a/docs/cmd/www/meroxa-pipelines-list.md +++ b/docs/cmd/www/meroxa-pipelines-list.md @@ -26,7 +26,7 @@ meroxa pipelines list [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-pipelines-remove.md b/docs/cmd/www/meroxa-pipelines-remove.md index 3a2ea801f..2e796bbfa 100644 --- a/docs/cmd/www/meroxa-pipelines-remove.md +++ b/docs/cmd/www/meroxa-pipelines-remove.md @@ -26,7 +26,7 @@ meroxa pipelines remove NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-pipelines-update.md b/docs/cmd/www/meroxa-pipelines-update.md index 0dad7d448..d5bc569ff 100644 --- a/docs/cmd/www/meroxa-pipelines-update.md +++ b/docs/cmd/www/meroxa-pipelines-update.md @@ -37,7 +37,7 @@ meroxa pipeline update pipeline-name --metadata '{"key":"value"}' --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-pipelines.md b/docs/cmd/www/meroxa-pipelines.md index 9b3e825ab..befc0ffc8 100644 --- a/docs/cmd/www/meroxa-pipelines.md +++ b/docs/cmd/www/meroxa-pipelines.md @@ -21,7 +21,7 @@ Manage pipelines on Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-create.md b/docs/cmd/www/meroxa-resources-create.md index 15c3afe11..022996547 100644 --- a/docs/cmd/www/meroxa-resources-create.md +++ b/docs/cmd/www/meroxa-resources-create.md @@ -40,8 +40,8 @@ meroxa resources create slack --type url -u $WEBHOOK_URL --ssh-private-key string SSH tunneling private key --ssh-url string SSH tunneling address --ssl use SSL - --type string resource type - -u, --url string resource url + --type string resource type (required) + -u, --url string resource url (required) --username string username ``` @@ -51,7 +51,7 @@ meroxa resources create slack --type url -u $WEBHOOK_URL --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-describe.md b/docs/cmd/www/meroxa-resources-describe.md index 7b0d07499..58b87ef0a 100644 --- a/docs/cmd/www/meroxa-resources-describe.md +++ b/docs/cmd/www/meroxa-resources-describe.md @@ -25,7 +25,7 @@ meroxa resources describe [NAME] [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-list.md b/docs/cmd/www/meroxa-resources-list.md index 51f76608a..664bd0c30 100644 --- a/docs/cmd/www/meroxa-resources-list.md +++ b/docs/cmd/www/meroxa-resources-list.md @@ -27,7 +27,7 @@ meroxa resources list [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-remove.md b/docs/cmd/www/meroxa-resources-remove.md index 2e95d5993..b896db156 100644 --- a/docs/cmd/www/meroxa-resources-remove.md +++ b/docs/cmd/www/meroxa-resources-remove.md @@ -26,7 +26,7 @@ meroxa resources remove NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (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 fde6de70a..a7cdece72 100644 --- a/docs/cmd/www/meroxa-resources-rotate-tunnel-key.md +++ b/docs/cmd/www/meroxa-resources-rotate-tunnel-key.md @@ -30,7 +30,7 @@ meroxa resources rotate-tunnel-key NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-update.md b/docs/cmd/www/meroxa-resources-update.md index 8de4e70b3..3f12ee9c7 100644 --- a/docs/cmd/www/meroxa-resources-update.md +++ b/docs/cmd/www/meroxa-resources-update.md @@ -39,7 +39,7 @@ meroxa resources update NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources-validate.md b/docs/cmd/www/meroxa-resources-validate.md index aeecb6482..09a578ea6 100644 --- a/docs/cmd/www/meroxa-resources-validate.md +++ b/docs/cmd/www/meroxa-resources-validate.md @@ -29,7 +29,7 @@ meroxa resources validate NAME [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-resources.md b/docs/cmd/www/meroxa-resources.md index f2a1779a9..0bc255b98 100644 --- a/docs/cmd/www/meroxa-resources.md +++ b/docs/cmd/www/meroxa-resources.md @@ -21,7 +21,7 @@ Manage resources on Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-transforms-list.md b/docs/cmd/www/meroxa-transforms-list.md index e56a52024..f2d36b3e8 100644 --- a/docs/cmd/www/meroxa-transforms-list.md +++ b/docs/cmd/www/meroxa-transforms-list.md @@ -26,7 +26,7 @@ meroxa transforms list [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-transforms.md b/docs/cmd/www/meroxa-transforms.md index a4d41c788..05d23d121 100644 --- a/docs/cmd/www/meroxa-transforms.md +++ b/docs/cmd/www/meroxa-transforms.md @@ -21,7 +21,7 @@ Manage transforms on Meroxa --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-version.md b/docs/cmd/www/meroxa-version.md index 7da17cf2b..6a60f44bf 100644 --- a/docs/cmd/www/meroxa-version.md +++ b/docs/cmd/www/meroxa-version.md @@ -25,7 +25,7 @@ meroxa version [flags] --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa-whoami.md b/docs/cmd/www/meroxa-whoami.md index 82af94391..b5ba17f55 100644 --- a/docs/cmd/www/meroxa-whoami.md +++ b/docs/cmd/www/meroxa-whoami.md @@ -32,7 +32,7 @@ meroxa whoami --cli-config-file string meroxa configuration file --debug display any debugging information --json output json - --timeout duration set the duration of the client timeout in seconds (default 10s) (default 10s) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/docs/cmd/www/meroxa.md b/docs/cmd/www/meroxa.md index 79f8d0961..085e97ff0 100644 --- a/docs/cmd/www/meroxa.md +++ b/docs/cmd/www/meroxa.md @@ -27,7 +27,7 @@ meroxa resources list --types --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) + --timeout duration set the duration of the client timeout in seconds (default 10s) ``` ### SEE ALSO diff --git a/etc/man/man1/meroxa-api.1 b/etc/man/man1/meroxa-api.1 index 070b7e376..ce5c5ba27 100644 --- a/etc/man/man1/meroxa-api.1 +++ b/etc/man/man1/meroxa-api.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Invoke Meroxa API .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH EXAMPLE diff --git a/etc/man/man1/meroxa-auth-login.1 b/etc/man/man1/meroxa-auth-login.1 index a7c09689c..707882a41 100644 --- a/etc/man/man1/meroxa-auth-login.1 +++ b/etc/man/man1/meroxa-auth-login.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Login or Sign up to the Meroxa Platform .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-auth-logout.1 b/etc/man/man1/meroxa-auth-logout.1 index d68f23056..8c6ba111b 100644 --- a/etc/man/man1/meroxa-auth-logout.1 +++ b/etc/man/man1/meroxa-auth-logout.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Clears local login credentials of the Meroxa Platform .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-auth-whoami.1 b/etc/man/man1/meroxa-auth-whoami.1 index 28359cc56..401df78d6 100644 --- a/etc/man/man1/meroxa-auth-whoami.1 +++ b/etc/man/man1/meroxa-auth-whoami.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Display the current logged in user .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH EXAMPLE diff --git a/etc/man/man1/meroxa-auth.1 b/etc/man/man1/meroxa-auth.1 index 7a40b621b..7c0d8e4b8 100644 --- a/etc/man/man1/meroxa-auth.1 +++ b/etc/man/man1/meroxa-auth.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Authentication commands for Meroxa .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-billing.1 b/etc/man/man1/meroxa-billing.1 index e576c3aeb..d1ec0ef5f 100644 --- a/etc/man/man1/meroxa-billing.1 +++ b/etc/man/man1/meroxa-billing.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Open your billing page in a web browser .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-completion.1 b/etc/man/man1/meroxa-completion.1 index 149499248..377bb302b 100644 --- a/etc/man/man1/meroxa-completion.1 +++ b/etc/man/man1/meroxa-completion.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -73,7 +73,7 @@ $ meroxa completion fish > \~/.config/fish/completions/meroxa.fish .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-config-describe.1 b/etc/man/man1/meroxa-config-describe.1 index 7d881e570..2c9624e59 100644 --- a/etc/man/man1/meroxa-config-describe.1 +++ b/etc/man/man1/meroxa-config-describe.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ This command will return the content of your configuration file where you could .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH EXAMPLE diff --git a/etc/man/man1/meroxa-config.1 b/etc/man/man1/meroxa-config.1 index e4032f701..4eef4081e 100644 --- a/etc/man/man1/meroxa-config.1 +++ b/etc/man/man1/meroxa-config.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Manage your Meroxa CLI configuration .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-connect.1 b/etc/man/man1/meroxa-connect.1 index b7e063190..f02979ecd 100644 --- a/etc/man/man1/meroxa-connect.1 +++ b/etc/man/man1/meroxa-connect.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -38,7 +38,7 @@ meroxa connector create \-\-to redshift \-\-input orders \-\-pipeline my\-pipeli .PP \fB\-\-from\fP="" - source resource name + source resource name (required) .PP \fB\-h\fP, \fB\-\-help\fP[=false] @@ -50,11 +50,11 @@ meroxa connector create \-\-to redshift \-\-input orders \-\-pipeline my\-pipeli .PP \fB\-\-pipeline\fP="" - pipeline name to attach connectors to + pipeline name to attach connectors to (required) .PP \fB\-\-to\fP="" - destination resource name + destination resource name (required) .SH OPTIONS INHERITED FROM PARENT COMMANDS @@ -72,7 +72,7 @@ meroxa connector create \-\-to redshift \-\-input orders \-\-pipeline my\-pipeli .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-connectors-create.1 b/etc/man/man1/meroxa-connectors-create.1 index eac9fd20b..4323036aa 100644 --- a/etc/man/man1/meroxa-connectors-create.1 +++ b/etc/man/man1/meroxa-connectors-create.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -35,7 +35,7 @@ Use \fB\fCconnectors create\fR to create a connector from a source (\-\-from) or .PP \fB\-\-pipeline\fP="" - pipeline name to attach connector to + pipeline name to attach connector to (required) .PP \fB\-\-to\fP="" @@ -57,7 +57,7 @@ Use \fB\fCconnectors create\fR to create a connector from a source (\-\-from) or .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH EXAMPLE diff --git a/etc/man/man1/meroxa-connectors-describe.1 b/etc/man/man1/meroxa-connectors-describe.1 index 6cb540a51..752858fad 100644 --- a/etc/man/man1/meroxa-connectors-describe.1 +++ b/etc/man/man1/meroxa-connectors-describe.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Describe connector .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-connectors-list.1 b/etc/man/man1/meroxa-connectors-list.1 index e39c525fb..222d9fb3b 100644 --- a/etc/man/man1/meroxa-connectors-list.1 +++ b/etc/man/man1/meroxa-connectors-list.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -45,7 +45,7 @@ List connectors .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-connectors-logs.1 b/etc/man/man1/meroxa-connectors-logs.1 index 49e8eb2c6..f9a3f5fbd 100644 --- a/etc/man/man1/meroxa-connectors-logs.1 +++ b/etc/man/man1/meroxa-connectors-logs.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Print logs for a connector .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-connectors-remove.1 b/etc/man/man1/meroxa-connectors-remove.1 index 7f769b9bc..d54e8e500 100644 --- a/etc/man/man1/meroxa-connectors-remove.1 +++ b/etc/man/man1/meroxa-connectors-remove.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -41,7 +41,7 @@ Remove connector .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-connectors-update.1 b/etc/man/man1/meroxa-connectors-update.1 index 11ef29421..1847abba8 100644 --- a/etc/man/man1/meroxa-connectors-update.1 +++ b/etc/man/man1/meroxa-connectors-update.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -49,7 +49,7 @@ Update connector name, configuration or state .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH EXAMPLE diff --git a/etc/man/man1/meroxa-connectors.1 b/etc/man/man1/meroxa-connectors.1 index 48fe52611..f05f9b50e 100644 --- a/etc/man/man1/meroxa-connectors.1 +++ b/etc/man/man1/meroxa-connectors.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Manage connectors on Meroxa .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-endpoints-create.1 b/etc/man/man1/meroxa-endpoints-create.1 index b28fae423..f2d293e1f 100644 --- a/etc/man/man1/meroxa-endpoints-create.1 +++ b/etc/man/man1/meroxa-endpoints-create.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -23,11 +23,11 @@ Use create endpoint to expose an endpoint to a connector stream .PP \fB\-p\fP, \fB\-\-protocol\fP="" - protocol, value can be http or grpc + protocol, value can be http or grpc (required) .PP \fB\-s\fP, \fB\-\-stream\fP="" - stream name + stream name (required) .SH OPTIONS INHERITED FROM PARENT COMMANDS @@ -45,7 +45,7 @@ Use create endpoint to expose an endpoint to a connector stream .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH EXAMPLE diff --git a/etc/man/man1/meroxa-endpoints-describe.1 b/etc/man/man1/meroxa-endpoints-describe.1 index f13af51dc..e769c4329 100644 --- a/etc/man/man1/meroxa-endpoints-describe.1 +++ b/etc/man/man1/meroxa-endpoints-describe.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Describe endpoint .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-endpoints-list.1 b/etc/man/man1/meroxa-endpoints-list.1 index ce29ad17a..88cae1ed9 100644 --- a/etc/man/man1/meroxa-endpoints-list.1 +++ b/etc/man/man1/meroxa-endpoints-list.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -41,7 +41,7 @@ List endpoints .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-endpoints-remove.1 b/etc/man/man1/meroxa-endpoints-remove.1 index 4251bc16c..87056c28d 100644 --- a/etc/man/man1/meroxa-endpoints-remove.1 +++ b/etc/man/man1/meroxa-endpoints-remove.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -41,7 +41,7 @@ Remove endpoint .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-endpoints.1 b/etc/man/man1/meroxa-endpoints.1 index a41642b89..eecb3ce0f 100644 --- a/etc/man/man1/meroxa-endpoints.1 +++ b/etc/man/man1/meroxa-endpoints.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Manage endpoints on Meroxa .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-login.1 b/etc/man/man1/meroxa-login.1 index 6a444ce44..3c5e25ec7 100644 --- a/etc/man/man1/meroxa-login.1 +++ b/etc/man/man1/meroxa-login.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Login or Sign up to the Meroxa Platform .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-logout.1 b/etc/man/man1/meroxa-logout.1 index 4e7138550..4b00e2ee7 100644 --- a/etc/man/man1/meroxa-logout.1 +++ b/etc/man/man1/meroxa-logout.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Clears local login credentials of the Meroxa Platform .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-open-billing.1 b/etc/man/man1/meroxa-open-billing.1 index 317a919d9..5c7c46212 100644 --- a/etc/man/man1/meroxa-open-billing.1 +++ b/etc/man/man1/meroxa-open-billing.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Open your billing page in a web browser .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-open.1 b/etc/man/man1/meroxa-open.1 index 48101cffc..08dcfe765 100644 --- a/etc/man/man1/meroxa-open.1 +++ b/etc/man/man1/meroxa-open.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Open in a web browser .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-pipelines-create.1 b/etc/man/man1/meroxa-pipelines-create.1 index 90a770d79..9db34e51d 100644 --- a/etc/man/man1/meroxa-pipelines-create.1 +++ b/etc/man/man1/meroxa-pipelines-create.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -41,7 +41,7 @@ Create a pipeline .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-pipelines-list.1 b/etc/man/man1/meroxa-pipelines-list.1 index 14afaef58..b8a65977b 100644 --- a/etc/man/man1/meroxa-pipelines-list.1 +++ b/etc/man/man1/meroxa-pipelines-list.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -41,7 +41,7 @@ List pipelines .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-pipelines-remove.1 b/etc/man/man1/meroxa-pipelines-remove.1 index 6712e7dd1..50730309e 100644 --- a/etc/man/man1/meroxa-pipelines-remove.1 +++ b/etc/man/man1/meroxa-pipelines-remove.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -41,7 +41,7 @@ Remove pipeline .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-pipelines-update.1 b/etc/man/man1/meroxa-pipelines-update.1 index 51f0e920f..40a961ae5 100644 --- a/etc/man/man1/meroxa-pipelines-update.1 +++ b/etc/man/man1/meroxa-pipelines-update.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -49,7 +49,7 @@ Update pipeline name, state or metadata .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH EXAMPLE diff --git a/etc/man/man1/meroxa-pipelines.1 b/etc/man/man1/meroxa-pipelines.1 index da2165f08..9e6e88a99 100644 --- a/etc/man/man1/meroxa-pipelines.1 +++ b/etc/man/man1/meroxa-pipelines.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Manage pipelines on Meroxa .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-resources-create.1 b/etc/man/man1/meroxa-resources-create.1 index 4ec9a5381..eb3d925b4 100644 --- a/etc/man/man1/meroxa-resources-create.1 +++ b/etc/man/man1/meroxa-resources-create.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -55,11 +55,11 @@ Use the create command to add resources to your Meroxa resource catalog. .PP \fB\-\-type\fP="" - resource type + resource type (required) .PP \fB\-u\fP, \fB\-\-url\fP="" - resource url + resource url (required) .PP \fB\-\-username\fP="" @@ -81,7 +81,7 @@ Use the create command to add resources to your Meroxa resource catalog. .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH EXAMPLE diff --git a/etc/man/man1/meroxa-resources-describe.1 b/etc/man/man1/meroxa-resources-describe.1 index 256e6cf54..0674f689a 100644 --- a/etc/man/man1/meroxa-resources-describe.1 +++ b/etc/man/man1/meroxa-resources-describe.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Describe resource .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-resources-list.1 b/etc/man/man1/meroxa-resources-list.1 index 4267108a2..6c71e0757 100644 --- a/etc/man/man1/meroxa-resources-list.1 +++ b/etc/man/man1/meroxa-resources-list.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -45,7 +45,7 @@ List resources and resource types .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-resources-remove.1 b/etc/man/man1/meroxa-resources-remove.1 index 525ffff3f..7a8d79399 100644 --- a/etc/man/man1/meroxa-resources-remove.1 +++ b/etc/man/man1/meroxa-resources-remove.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -41,7 +41,7 @@ Remove resource .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-resources-rotate-tunnel-key.1 b/etc/man/man1/meroxa-resources-rotate-tunnel-key.1 index 001839084..8504c8c9b 100644 --- a/etc/man/man1/meroxa-resources-rotate-tunnel-key.1 +++ b/etc/man/man1/meroxa-resources-rotate-tunnel-key.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -41,7 +41,7 @@ Rotate the tunnel key for a Meroxa resource. .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-resources-update.1 b/etc/man/man1/meroxa-resources-update.1 index 258bd4365..1e6c3cc05 100644 --- a/etc/man/man1/meroxa-resources-update.1 +++ b/etc/man/man1/meroxa-resources-update.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -77,7 +77,7 @@ Use the update command to update various Meroxa resources. .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-resources-validate.1 b/etc/man/man1/meroxa-resources-validate.1 index 0d4039dea..e1805bdb7 100644 --- a/etc/man/man1/meroxa-resources-validate.1 +++ b/etc/man/man1/meroxa-resources-validate.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Validate a Meroxa resource. .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-resources.1 b/etc/man/man1/meroxa-resources.1 index f2db2e229..69c44d467 100644 --- a/etc/man/man1/meroxa-resources.1 +++ b/etc/man/man1/meroxa-resources.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Manage resources on Meroxa .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-transforms-list.1 b/etc/man/man1/meroxa-transforms-list.1 index 085ddcd09..d27b87fb8 100644 --- a/etc/man/man1/meroxa-transforms-list.1 +++ b/etc/man/man1/meroxa-transforms-list.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -41,7 +41,7 @@ List transforms .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-transforms.1 b/etc/man/man1/meroxa-transforms.1 index 88642469a..42b50581b 100644 --- a/etc/man/man1/meroxa-transforms.1 +++ b/etc/man/man1/meroxa-transforms.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Manage transforms on Meroxa .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-version.1 b/etc/man/man1/meroxa-version.1 index ef574baa3..b4193f434 100644 --- a/etc/man/man1/meroxa-version.1 +++ b/etc/man/man1/meroxa-version.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Display the Meroxa CLI version .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO diff --git a/etc/man/man1/meroxa-whoami.1 b/etc/man/man1/meroxa-whoami.1 index fb0281bb7..ee30614d9 100644 --- a/etc/man/man1/meroxa-whoami.1 +++ b/etc/man/man1/meroxa-whoami.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -37,7 +37,7 @@ Display the current logged in user .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH EXAMPLE diff --git a/etc/man/man1/meroxa.1 b/etc/man/man1/meroxa.1 index 5f1ed51ef..4c678dc8b 100644 --- a/etc/man/man1/meroxa.1 +++ b/etc/man/man1/meroxa.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Sep 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Oct 2021" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -43,7 +43,7 @@ meroxa resources list \-\-types .PP \fB\-\-timeout\fP=10s - set the duration of the client timeout in seconds (default 10s) + set the duration of the client timeout in seconds .SH SEE ALSO