From 44d29a0e198f94ceff0f56e01233f9420277f4ff Mon Sep 17 00:00:00 2001 From: janelletavares Date: Sun, 16 Jan 2022 09:08:44 -0800 Subject: [PATCH] docs updates remove unnecessary attribute assignments --- cmd/meroxa/root/pipelines/create.go | 1 + cmd/meroxa/root/pipelines/create_test.go | 4 +- cmd/meroxa/root/resources/create.go | 1 + docs/cmd/md/meroxa.md | 1 + docs/cmd/md/meroxa_environments.md | 28 ++ docs/cmd/md/meroxa_environments_create.md | 40 +++ docs/cmd/md/meroxa_environments_describe.md | 27 ++ docs/cmd/md/meroxa_environments_list.md | 28 ++ docs/cmd/md/meroxa_environments_remove.md | 28 ++ docs/cmd/md/meroxa_environments_update.md | 38 +++ docs/cmd/md/meroxa_pipelines_create.md | 1 + docs/cmd/md/meroxa_resources_create.md | 1 + docs/cmd/www/meroxa-environments-create.md | 47 ++++ docs/cmd/www/meroxa-environments-describe.md | 34 +++ docs/cmd/www/meroxa-environments-list.md | 35 +++ docs/cmd/www/meroxa-environments-remove.md | 35 +++ docs/cmd/www/meroxa-environments-update.md | 45 ++++ docs/cmd/www/meroxa-environments.md | 35 +++ docs/cmd/www/meroxa-pipelines-create.md | 1 + docs/cmd/www/meroxa-resources-create.md | 1 + docs/cmd/www/meroxa.md | 1 + etc/completion/meroxa.completion.sh | 243 ++++++++++++++++++ etc/man/man1/meroxa-api.1 | 2 +- etc/man/man1/meroxa-auth-login.1 | 2 +- etc/man/man1/meroxa-auth-logout.1 | 2 +- etc/man/man1/meroxa-auth-whoami.1 | 2 +- etc/man/man1/meroxa-auth.1 | 2 +- etc/man/man1/meroxa-billing.1 | 2 +- etc/man/man1/meroxa-completion.1 | 2 +- etc/man/man1/meroxa-config-describe.1 | 2 +- etc/man/man1/meroxa-config.1 | 2 +- etc/man/man1/meroxa-connect.1 | 2 +- etc/man/man1/meroxa-connectors-create.1 | 2 +- etc/man/man1/meroxa-connectors-describe.1 | 2 +- etc/man/man1/meroxa-connectors-list.1 | 2 +- etc/man/man1/meroxa-connectors-logs.1 | 2 +- etc/man/man1/meroxa-connectors-remove.1 | 2 +- etc/man/man1/meroxa-connectors-update.1 | 2 +- etc/man/man1/meroxa-connectors.1 | 2 +- etc/man/man1/meroxa-endpoints-create.1 | 2 +- etc/man/man1/meroxa-endpoints-describe.1 | 2 +- etc/man/man1/meroxa-endpoints-list.1 | 2 +- etc/man/man1/meroxa-endpoints-remove.1 | 2 +- etc/man/man1/meroxa-endpoints.1 | 2 +- etc/man/man1/meroxa-environments-create.1 | 78 ++++++ etc/man/man1/meroxa-environments-describe.1 | 45 ++++ etc/man/man1/meroxa-environments-list.1 | 49 ++++ etc/man/man1/meroxa-environments-remove.1 | 49 ++++ etc/man/man1/meroxa-environments-update.1 | 70 +++++ etc/man/man1/meroxa-environments.1 | 45 ++++ etc/man/man1/meroxa-login.1 | 2 +- etc/man/man1/meroxa-logout.1 | 2 +- etc/man/man1/meroxa-open-billing.1 | 2 +- etc/man/man1/meroxa-open.1 | 2 +- etc/man/man1/meroxa-pipelines-create.1 | 6 +- etc/man/man1/meroxa-pipelines-describe.1 | 2 +- etc/man/man1/meroxa-pipelines-list.1 | 2 +- etc/man/man1/meroxa-pipelines-remove.1 | 2 +- etc/man/man1/meroxa-pipelines-update.1 | 2 +- etc/man/man1/meroxa-pipelines.1 | 2 +- etc/man/man1/meroxa-resources-create.1 | 6 +- etc/man/man1/meroxa-resources-describe.1 | 2 +- etc/man/man1/meroxa-resources-list.1 | 2 +- etc/man/man1/meroxa-resources-remove.1 | 2 +- .../man1/meroxa-resources-rotate-tunnel-key.1 | 2 +- etc/man/man1/meroxa-resources-update.1 | 2 +- etc/man/man1/meroxa-resources-validate.1 | 2 +- etc/man/man1/meroxa-resources.1 | 2 +- etc/man/man1/meroxa-transforms-list.1 | 2 +- etc/man/man1/meroxa-transforms.1 | 2 +- etc/man/man1/meroxa-version.1 | 2 +- etc/man/man1/meroxa-whoami.1 | 2 +- etc/man/man1/meroxa.1 | 4 +- 73 files changed, 1063 insertions(+), 48 deletions(-) create mode 100644 docs/cmd/md/meroxa_environments.md create mode 100644 docs/cmd/md/meroxa_environments_create.md create mode 100644 docs/cmd/md/meroxa_environments_describe.md create mode 100644 docs/cmd/md/meroxa_environments_list.md create mode 100644 docs/cmd/md/meroxa_environments_remove.md create mode 100644 docs/cmd/md/meroxa_environments_update.md create mode 100644 docs/cmd/www/meroxa-environments-create.md create mode 100644 docs/cmd/www/meroxa-environments-describe.md create mode 100644 docs/cmd/www/meroxa-environments-list.md create mode 100644 docs/cmd/www/meroxa-environments-remove.md create mode 100644 docs/cmd/www/meroxa-environments-update.md create mode 100644 docs/cmd/www/meroxa-environments.md create mode 100644 etc/man/man1/meroxa-environments-create.1 create mode 100644 etc/man/man1/meroxa-environments-describe.1 create mode 100644 etc/man/man1/meroxa-environments-list.1 create mode 100644 etc/man/man1/meroxa-environments-remove.1 create mode 100644 etc/man/man1/meroxa-environments-update.1 create mode 100644 etc/man/man1/meroxa-environments.1 diff --git a/cmd/meroxa/root/pipelines/create.go b/cmd/meroxa/root/pipelines/create.go index 0c50e8e5d..10f35dcdf 100644 --- a/cmd/meroxa/root/pipelines/create.go +++ b/cmd/meroxa/root/pipelines/create.go @@ -75,6 +75,7 @@ func (c *Create) Execute(ctx context.Context) error { p.Metadata = metadata } + // If the environment specified is not the common environment. if c.flags.Environment != "" && c.flags.Environment != string(meroxa.EnvironmentTypeCommon) { err := builder.CheckFeatureFlag(c, &environments.Environments{}) if err != nil { diff --git a/cmd/meroxa/root/pipelines/create_test.go b/cmd/meroxa/root/pipelines/create_test.go index 5222453e2..5e004e157 100644 --- a/cmd/meroxa/root/pipelines/create_test.go +++ b/cmd/meroxa/root/pipelines/create_test.go @@ -65,8 +65,8 @@ func TestCreatePipelineFlags(t *testing.T) { shorthand string hidden bool }{ - {name: "metadata", required: false, shorthand: "m", hidden: false}, - {name: "env", required: false, hidden: false}, + {name: "metadata", shorthand: "m"}, + {name: "env"}, } c := builder.BuildCobraCommand(&Create{}) diff --git a/cmd/meroxa/root/resources/create.go b/cmd/meroxa/root/resources/create.go index c633af04b..0791e54f5 100644 --- a/cmd/meroxa/root/resources/create.go +++ b/cmd/meroxa/root/resources/create.go @@ -123,6 +123,7 @@ func (c *Create) Execute(ctx context.Context) error { Metadata: nil, } + // If the environment specified is not the common environment. if c.flags.Environment != "" && c.flags.Environment != string(meroxa.EnvironmentTypeCommon) { err := builder.CheckFeatureFlag(c, &environments.Environments{}) if err != nil { diff --git a/docs/cmd/md/meroxa.md b/docs/cmd/md/meroxa.md index 9fbe131af..fc0140230 100644 --- a/docs/cmd/md/meroxa.md +++ b/docs/cmd/md/meroxa.md @@ -33,6 +33,7 @@ meroxa resources list --types * [meroxa connect](meroxa_connect.md) - Connect two resources together * [meroxa connectors](meroxa_connectors.md) - Manage connectors on Meroxa * [meroxa endpoints](meroxa_endpoints.md) - Manage endpoints on Meroxa +* [meroxa environments](meroxa_environments.md) - Manage environments on Meroxa * [meroxa login](meroxa_login.md) - Login or Sign up to the Meroxa Platform * [meroxa logout](meroxa_logout.md) - Clears local login credentials of the Meroxa Platform * [meroxa open](meroxa_open.md) - Open in a web browser diff --git a/docs/cmd/md/meroxa_environments.md b/docs/cmd/md/meroxa_environments.md new file mode 100644 index 000000000..214321822 --- /dev/null +++ b/docs/cmd/md/meroxa_environments.md @@ -0,0 +1,28 @@ +## meroxa environments + +Manage environments on Meroxa + +### Options + +``` + -h, --help help for environments +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa](meroxa.md) - The Meroxa CLI +* [meroxa environments create](meroxa_environments_create.md) - Create an environment +* [meroxa environments describe](meroxa_environments_describe.md) - Describe environment +* [meroxa environments list](meroxa_environments_list.md) - List environments +* [meroxa environments remove](meroxa_environments_remove.md) - Remove environment +* [meroxa environments update](meroxa_environments_update.md) - Update an environment + diff --git a/docs/cmd/md/meroxa_environments_create.md b/docs/cmd/md/meroxa_environments_create.md new file mode 100644 index 000000000..9bd7457f1 --- /dev/null +++ b/docs/cmd/md/meroxa_environments_create.md @@ -0,0 +1,40 @@ +## meroxa environments create + +Create an environment + +``` +meroxa environments create NAME [flags] +``` + +### Examples + +``` + +meroxa env create my-env --type self_hosted --provider aws --region us-east-1 --config aws_access_key_id=my_access_key --config aws_access_secret=my_access_secret + +``` + +### Options + +``` + -c, --config strings environment configuration based on type and provider (e.g.: --config aws_access_key_id=my_access_key --config aws_access_secret=my_access_secret) + -h, --help help for create + --provider string environment cloud provider to use + --region string environment region + --type string environment type, when not specified + -y, --yes skip confirmation prompt +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa environments](meroxa_environments.md) - Manage environments on Meroxa + diff --git a/docs/cmd/md/meroxa_environments_describe.md b/docs/cmd/md/meroxa_environments_describe.md new file mode 100644 index 000000000..338d552f2 --- /dev/null +++ b/docs/cmd/md/meroxa_environments_describe.md @@ -0,0 +1,27 @@ +## meroxa environments describe + +Describe environment + +``` +meroxa environments describe [NAMEorUUID] [flags] +``` + +### Options + +``` + -h, --help help for describe +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa environments](meroxa_environments.md) - Manage environments on Meroxa + diff --git a/docs/cmd/md/meroxa_environments_list.md b/docs/cmd/md/meroxa_environments_list.md new file mode 100644 index 000000000..f45fff8df --- /dev/null +++ b/docs/cmd/md/meroxa_environments_list.md @@ -0,0 +1,28 @@ +## meroxa environments list + +List environments + +``` +meroxa environments list [flags] +``` + +### Options + +``` + -h, --help help for list + --no-headers display output without headers +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa environments](meroxa_environments.md) - Manage environments on Meroxa + diff --git a/docs/cmd/md/meroxa_environments_remove.md b/docs/cmd/md/meroxa_environments_remove.md new file mode 100644 index 000000000..b61654ba9 --- /dev/null +++ b/docs/cmd/md/meroxa_environments_remove.md @@ -0,0 +1,28 @@ +## meroxa environments remove + +Remove environment + +``` +meroxa environments remove NAMEorUUID [flags] +``` + +### Options + +``` + -f, --force skip confirmation + -h, --help help for remove +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa environments](meroxa_environments.md) - Manage environments on Meroxa + diff --git a/docs/cmd/md/meroxa_environments_update.md b/docs/cmd/md/meroxa_environments_update.md new file mode 100644 index 000000000..084a225fe --- /dev/null +++ b/docs/cmd/md/meroxa_environments_update.md @@ -0,0 +1,38 @@ +## meroxa environments update + +Update an environment + +``` +meroxa environments update NAMEorUUID [flags] +``` + +### Examples + +``` + +meroxa env update my-env --name new-name --config aws_access_key_id=my_access_key --config aws_access_secret=my_access_secret" + +``` + +### Options + +``` + -c, --config strings updated environment configuration based on type and provider (e.g.: --config aws_access_key_id=my_access_key --config aws_access_secret=my_access_secret) + -h, --help help for update + --name string updated environment name, when specified + -y, --yes skip confirmation prompt +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa environments](meroxa_environments.md) - Manage environments on Meroxa + diff --git a/docs/cmd/md/meroxa_pipelines_create.md b/docs/cmd/md/meroxa_pipelines_create.md index ccf5e8766..c2b0e9a54 100644 --- a/docs/cmd/md/meroxa_pipelines_create.md +++ b/docs/cmd/md/meroxa_pipelines_create.md @@ -9,6 +9,7 @@ meroxa pipelines create NAME [flags] ### Options ``` + --env string environment (name or UUID) where pipeline will be created -h, --help help for create -m, --metadata string pipeline metadata ``` diff --git a/docs/cmd/md/meroxa_resources_create.md b/docs/cmd/md/meroxa_resources_create.md index 7945db2b8..06df1283e 100644 --- a/docs/cmd/md/meroxa_resources_create.md +++ b/docs/cmd/md/meroxa_resources_create.md @@ -27,6 +27,7 @@ meroxa resources create slack --type url -u $WEBHOOK_URL --ca-cert string trusted certificates for verifying resource --client-cert string client certificate for authenticating to the resource --client-key string client private key for authenticating to the resource + --env string environment (name or UUID) where resource will be created -h, --help help for create -m, --metadata string resource metadata --password string password diff --git a/docs/cmd/www/meroxa-environments-create.md b/docs/cmd/www/meroxa-environments-create.md new file mode 100644 index 000000000..619370966 --- /dev/null +++ b/docs/cmd/www/meroxa-environments-create.md @@ -0,0 +1,47 @@ +--- +createdAt: +updatedAt: +title: "meroxa environments create" +slug: meroxa-environments-create +url: /cli/cmd/meroxa-environments-create/ +--- +## meroxa environments create + +Create an environment + +``` +meroxa environments create NAME [flags] +``` + +### Examples + +``` + +meroxa env create my-env --type self_hosted --provider aws --region us-east-1 --config aws_access_key_id=my_access_key --config aws_access_secret=my_access_secret + +``` + +### Options + +``` + -c, --config strings environment configuration based on type and provider (e.g.: --config aws_access_key_id=my_access_key --config aws_access_secret=my_access_secret) + -h, --help help for create + --provider string environment cloud provider to use + --region string environment region + --type string environment type, when not specified + -y, --yes skip confirmation prompt +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa environments](/cli/cmd/meroxa-environments/) - Manage environments on Meroxa + diff --git a/docs/cmd/www/meroxa-environments-describe.md b/docs/cmd/www/meroxa-environments-describe.md new file mode 100644 index 000000000..637d18da7 --- /dev/null +++ b/docs/cmd/www/meroxa-environments-describe.md @@ -0,0 +1,34 @@ +--- +createdAt: +updatedAt: +title: "meroxa environments describe" +slug: meroxa-environments-describe +url: /cli/cmd/meroxa-environments-describe/ +--- +## meroxa environments describe + +Describe environment + +``` +meroxa environments describe [NAMEorUUID] [flags] +``` + +### Options + +``` + -h, --help help for describe +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa environments](/cli/cmd/meroxa-environments/) - Manage environments on Meroxa + diff --git a/docs/cmd/www/meroxa-environments-list.md b/docs/cmd/www/meroxa-environments-list.md new file mode 100644 index 000000000..1c42fd7e1 --- /dev/null +++ b/docs/cmd/www/meroxa-environments-list.md @@ -0,0 +1,35 @@ +--- +createdAt: +updatedAt: +title: "meroxa environments list" +slug: meroxa-environments-list +url: /cli/cmd/meroxa-environments-list/ +--- +## meroxa environments list + +List environments + +``` +meroxa environments list [flags] +``` + +### Options + +``` + -h, --help help for list + --no-headers display output without headers +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa environments](/cli/cmd/meroxa-environments/) - Manage environments on Meroxa + diff --git a/docs/cmd/www/meroxa-environments-remove.md b/docs/cmd/www/meroxa-environments-remove.md new file mode 100644 index 000000000..b07ae6fc3 --- /dev/null +++ b/docs/cmd/www/meroxa-environments-remove.md @@ -0,0 +1,35 @@ +--- +createdAt: +updatedAt: +title: "meroxa environments remove" +slug: meroxa-environments-remove +url: /cli/cmd/meroxa-environments-remove/ +--- +## meroxa environments remove + +Remove environment + +``` +meroxa environments remove NAMEorUUID [flags] +``` + +### Options + +``` + -f, --force skip confirmation + -h, --help help for remove +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa environments](/cli/cmd/meroxa-environments/) - Manage environments on Meroxa + diff --git a/docs/cmd/www/meroxa-environments-update.md b/docs/cmd/www/meroxa-environments-update.md new file mode 100644 index 000000000..47ca2bdda --- /dev/null +++ b/docs/cmd/www/meroxa-environments-update.md @@ -0,0 +1,45 @@ +--- +createdAt: +updatedAt: +title: "meroxa environments update" +slug: meroxa-environments-update +url: /cli/cmd/meroxa-environments-update/ +--- +## meroxa environments update + +Update an environment + +``` +meroxa environments update NAMEorUUID [flags] +``` + +### Examples + +``` + +meroxa env update my-env --name new-name --config aws_access_key_id=my_access_key --config aws_access_secret=my_access_secret" + +``` + +### Options + +``` + -c, --config strings updated environment configuration based on type and provider (e.g.: --config aws_access_key_id=my_access_key --config aws_access_secret=my_access_secret) + -h, --help help for update + --name string updated environment name, when specified + -y, --yes skip confirmation prompt +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa environments](/cli/cmd/meroxa-environments/) - Manage environments on Meroxa + diff --git a/docs/cmd/www/meroxa-environments.md b/docs/cmd/www/meroxa-environments.md new file mode 100644 index 000000000..7655709f4 --- /dev/null +++ b/docs/cmd/www/meroxa-environments.md @@ -0,0 +1,35 @@ +--- +createdAt: +updatedAt: +title: "meroxa environments" +slug: meroxa-environments +url: /cli/cmd/meroxa-environments/ +--- +## meroxa environments + +Manage environments on Meroxa + +### Options + +``` + -h, --help help for environments +``` + +### Options inherited from parent commands + +``` + --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) +``` + +### SEE ALSO + +* [meroxa](/cli/cmd/meroxa/) - The Meroxa CLI +* [meroxa environments create](/cli/cmd/meroxa-environments-create/) - Create an environment +* [meroxa environments describe](/cli/cmd/meroxa-environments-describe/) - Describe environment +* [meroxa environments list](/cli/cmd/meroxa-environments-list/) - List environments +* [meroxa environments remove](/cli/cmd/meroxa-environments-remove/) - Remove environment +* [meroxa environments update](/cli/cmd/meroxa-environments-update/) - Update an environment + diff --git a/docs/cmd/www/meroxa-pipelines-create.md b/docs/cmd/www/meroxa-pipelines-create.md index b4d146776..bdaf83f46 100644 --- a/docs/cmd/www/meroxa-pipelines-create.md +++ b/docs/cmd/www/meroxa-pipelines-create.md @@ -16,6 +16,7 @@ meroxa pipelines create NAME [flags] ### Options ``` + --env string environment (name or UUID) where pipeline will be created -h, --help help for create -m, --metadata string pipeline metadata ``` diff --git a/docs/cmd/www/meroxa-resources-create.md b/docs/cmd/www/meroxa-resources-create.md index 022996547..78e00bc69 100644 --- a/docs/cmd/www/meroxa-resources-create.md +++ b/docs/cmd/www/meroxa-resources-create.md @@ -34,6 +34,7 @@ meroxa resources create slack --type url -u $WEBHOOK_URL --ca-cert string trusted certificates for verifying resource --client-cert string client certificate for authenticating to the resource --client-key string client private key for authenticating to the resource + --env string environment (name or UUID) where resource will be created -h, --help help for create -m, --metadata string resource metadata --password string password diff --git a/docs/cmd/www/meroxa.md b/docs/cmd/www/meroxa.md index 085e97ff0..8e5b582b9 100644 --- a/docs/cmd/www/meroxa.md +++ b/docs/cmd/www/meroxa.md @@ -40,6 +40,7 @@ meroxa resources list --types * [meroxa connect](/cli/cmd/meroxa-connect/) - Connect two resources together * [meroxa connectors](/cli/cmd/meroxa-connectors/) - Manage connectors on Meroxa * [meroxa endpoints](/cli/cmd/meroxa-endpoints/) - Manage endpoints on Meroxa +* [meroxa environments](/cli/cmd/meroxa-environments/) - Manage environments on Meroxa * [meroxa login](/cli/cmd/meroxa-login/) - Login or Sign up to the Meroxa Platform * [meroxa logout](/cli/cmd/meroxa-logout/) - Clears local login credentials of the Meroxa Platform * [meroxa open](/cli/cmd/meroxa-open/) - Open in a web browser diff --git a/etc/completion/meroxa.completion.sh b/etc/completion/meroxa.completion.sh index f2fa8141d..9fae8f41e 100644 --- a/etc/completion/meroxa.completion.sh +++ b/etc/completion/meroxa.completion.sh @@ -1170,6 +1170,238 @@ _meroxa_endpoints() noun_aliases=() } +_meroxa_environments_create() +{ + last_command="meroxa_environments_create" + + command_aliases=() + + commands=() + + flags=() + two_word_flags=() + local_nonpersistent_flags=() + flags_with_completion=() + flags_completion=() + + flags+=("--config=") + two_word_flags+=("--config") + two_word_flags+=("-c") + flags+=("--help") + flags+=("-h") + flags+=("--provider=") + two_word_flags+=("--provider") + flags+=("--region=") + two_word_flags+=("--region") + flags+=("--type=") + two_word_flags+=("--type") + flags+=("--yes") + flags+=("-y") + flags+=("--cli-config-file=") + two_word_flags+=("--cli-config-file") + flags+=("--debug") + flags+=("--json") + flags+=("--timeout=") + two_word_flags+=("--timeout") + + must_have_one_flag=() + must_have_one_noun=() + noun_aliases=() +} + +_meroxa_environments_describe() +{ + last_command="meroxa_environments_describe" + + command_aliases=() + + commands=() + + flags=() + two_word_flags=() + local_nonpersistent_flags=() + flags_with_completion=() + flags_completion=() + + flags+=("--help") + flags+=("-h") + flags+=("--cli-config-file=") + two_word_flags+=("--cli-config-file") + flags+=("--debug") + flags+=("--json") + flags+=("--timeout=") + two_word_flags+=("--timeout") + + must_have_one_flag=() + must_have_one_noun=() + noun_aliases=() +} + +_meroxa_environments_help() +{ + last_command="meroxa_environments_help" + + command_aliases=() + + commands=() + + flags=() + two_word_flags=() + local_nonpersistent_flags=() + flags_with_completion=() + flags_completion=() + + flags+=("--cli-config-file=") + two_word_flags+=("--cli-config-file") + flags+=("--debug") + flags+=("--json") + flags+=("--timeout=") + two_word_flags+=("--timeout") + + must_have_one_flag=() + must_have_one_noun=() + has_completion_function=1 + noun_aliases=() +} + +_meroxa_environments_list() +{ + last_command="meroxa_environments_list" + + command_aliases=() + + commands=() + + flags=() + two_word_flags=() + local_nonpersistent_flags=() + flags_with_completion=() + flags_completion=() + + flags+=("--help") + flags+=("-h") + flags+=("--no-headers") + flags+=("--cli-config-file=") + two_word_flags+=("--cli-config-file") + flags+=("--debug") + flags+=("--json") + flags+=("--timeout=") + two_word_flags+=("--timeout") + + must_have_one_flag=() + must_have_one_noun=() + noun_aliases=() +} + +_meroxa_environments_remove() +{ + last_command="meroxa_environments_remove" + + command_aliases=() + + commands=() + + flags=() + two_word_flags=() + local_nonpersistent_flags=() + flags_with_completion=() + flags_completion=() + + flags+=("--force") + flags+=("-f") + flags+=("--help") + flags+=("-h") + flags+=("--cli-config-file=") + two_word_flags+=("--cli-config-file") + flags+=("--debug") + flags+=("--json") + flags+=("--timeout=") + two_word_flags+=("--timeout") + + must_have_one_flag=() + must_have_one_noun=() + noun_aliases=() +} + +_meroxa_environments_update() +{ + last_command="meroxa_environments_update" + + command_aliases=() + + commands=() + + flags=() + two_word_flags=() + local_nonpersistent_flags=() + 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+=("--yes") + flags+=("-y") + flags+=("--cli-config-file=") + two_word_flags+=("--cli-config-file") + flags+=("--debug") + flags+=("--json") + flags+=("--timeout=") + two_word_flags+=("--timeout") + + must_have_one_flag=() + must_have_one_noun=() + noun_aliases=() +} + +_meroxa_environments() +{ + last_command="meroxa_environments" + + command_aliases=() + + commands=() + commands+=("create") + commands+=("describe") + commands+=("help") + commands+=("list") + if [[ -z "${BASH_VERSION}" || "${BASH_VERSINFO[0]}" -gt 3 ]]; then + command_aliases+=("ls") + aliashash["ls"]="list" + fi + commands+=("remove") + if [[ -z "${BASH_VERSION}" || "${BASH_VERSINFO[0]}" -gt 3 ]]; then + command_aliases+=("delete") + aliashash["delete"]="remove" + command_aliases+=("rm") + aliashash["rm"]="remove" + fi + commands+=("update") + + flags=() + two_word_flags=() + local_nonpersistent_flags=() + flags_with_completion=() + flags_completion=() + + flags+=("--help") + flags+=("-h") + flags+=("--cli-config-file=") + two_word_flags+=("--cli-config-file") + flags+=("--debug") + flags+=("--json") + flags+=("--timeout=") + two_word_flags+=("--timeout") + + must_have_one_flag=() + must_have_one_noun=() + noun_aliases=() +} + _meroxa_help() { last_command="meroxa_help" @@ -1352,6 +1584,8 @@ _meroxa_pipelines_create() flags_with_completion=() flags_completion=() + flags+=("--env=") + two_word_flags+=("--env") flags+=("--help") flags+=("-h") flags+=("--metadata=") @@ -1582,6 +1816,8 @@ _meroxa_resources_create() two_word_flags+=("--client-cert") flags+=("--client-key=") two_word_flags+=("--client-key") + flags+=("--env=") + two_word_flags+=("--env") flags+=("--help") flags+=("-h") flags+=("--metadata=") @@ -2061,6 +2297,13 @@ _meroxa_root_command() command_aliases+=("endpoint") aliashash["endpoint"]="endpoints" fi + commands+=("environments") + if [[ -z "${BASH_VERSION}" || "${BASH_VERSINFO[0]}" -gt 3 ]]; then + command_aliases+=("env") + aliashash["env"]="environments" + command_aliases+=("environment") + aliashash["environment"]="environments" + fi commands+=("help") commands+=("login") commands+=("logout") diff --git a/etc/man/man1/meroxa-api.1 b/etc/man/man1/meroxa-api.1 index 9c0fceee6..2a0a37b45 100644 --- a/etc/man/man1/meroxa-api.1 +++ b/etc/man/man1/meroxa-api.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-auth-login.1 b/etc/man/man1/meroxa-auth-login.1 index 267459cdd..b1da2a109 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-auth-logout.1 b/etc/man/man1/meroxa-auth-logout.1 index d87cf5a91..5e6f2b796 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-auth-whoami.1 b/etc/man/man1/meroxa-auth-whoami.1 index 313e7f062..413ef652b 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-auth.1 b/etc/man/man1/meroxa-auth.1 index 2ebbc6754..57a06da03 100644 --- a/etc/man/man1/meroxa-auth.1 +++ b/etc/man/man1/meroxa-auth.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-billing.1 b/etc/man/man1/meroxa-billing.1 index ee72be076..30c41244c 100644 --- a/etc/man/man1/meroxa-billing.1 +++ b/etc/man/man1/meroxa-billing.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-completion.1 b/etc/man/man1/meroxa-completion.1 index 9f6fd0c75..91d2cad67 100644 --- a/etc/man/man1/meroxa-completion.1 +++ b/etc/man/man1/meroxa-completion.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-config-describe.1 b/etc/man/man1/meroxa-config-describe.1 index 28f0d09a0..c7ac495b6 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-config.1 b/etc/man/man1/meroxa-config.1 index 926a5284d..9539b0f2b 100644 --- a/etc/man/man1/meroxa-config.1 +++ b/etc/man/man1/meroxa-config.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-connect.1 b/etc/man/man1/meroxa-connect.1 index 4da290a39..7424efe2a 100644 --- a/etc/man/man1/meroxa-connect.1 +++ b/etc/man/man1/meroxa-connect.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-connectors-create.1 b/etc/man/man1/meroxa-connectors-create.1 index 1b79bbe0c..fedd95e58 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-connectors-describe.1 b/etc/man/man1/meroxa-connectors-describe.1 index ace89341a..d490c529c 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-connectors-list.1 b/etc/man/man1/meroxa-connectors-list.1 index 1b0ec0d30..75b7af555 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-connectors-logs.1 b/etc/man/man1/meroxa-connectors-logs.1 index 0e00f1f83..5883ccc80 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-connectors-remove.1 b/etc/man/man1/meroxa-connectors-remove.1 index e22c15b71..81ce2a86e 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-connectors-update.1 b/etc/man/man1/meroxa-connectors-update.1 index 3e82ffd7f..5839a6e37 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-connectors.1 b/etc/man/man1/meroxa-connectors.1 index 2d042635f..c1632ef56 100644 --- a/etc/man/man1/meroxa-connectors.1 +++ b/etc/man/man1/meroxa-connectors.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-endpoints-create.1 b/etc/man/man1/meroxa-endpoints-create.1 index 8be922214..04d4fcba9 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-endpoints-describe.1 b/etc/man/man1/meroxa-endpoints-describe.1 index d6e2b393e..4a7d90002 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-endpoints-list.1 b/etc/man/man1/meroxa-endpoints-list.1 index 90c60d083..ab34ebec3 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-endpoints-remove.1 b/etc/man/man1/meroxa-endpoints-remove.1 index 9a424416e..9192e20d2 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-endpoints.1 b/etc/man/man1/meroxa-endpoints.1 index 53d48301c..f5feeed15 100644 --- a/etc/man/man1/meroxa-endpoints.1 +++ b/etc/man/man1/meroxa-endpoints.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-environments-create.1 b/etc/man/man1/meroxa-environments-create.1 new file mode 100644 index 000000000..3addeda3b --- /dev/null +++ b/etc/man/man1/meroxa-environments-create.1 @@ -0,0 +1,78 @@ +.nh +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" + +.SH NAME +.PP +meroxa\-environments\-create \- Create an environment + + +.SH SYNOPSIS +.PP +\fBmeroxa environments create NAME [flags]\fP + + +.SH DESCRIPTION +.PP +Create an environment + + +.SH OPTIONS +.PP +\fB\-c\fP, \fB\-\-config\fP=[] + environment configuration based on type and provider (e.g.: \-\-config aws\_access\_key\_id=my\_access\_key \-\-config aws\_access\_secret=my\_access\_secret) + +.PP +\fB\-h\fP, \fB\-\-help\fP[=false] + help for create + +.PP +\fB\-\-provider\fP="" + environment cloud provider to use + +.PP +\fB\-\-region\fP="" + environment region + +.PP +\fB\-\-type\fP="" + environment type, when not specified + +.PP +\fB\-y\fP, \fB\-\-yes\fP[=false] + skip confirmation prompt + + +.SH OPTIONS INHERITED FROM PARENT COMMANDS +.PP +\fB\-\-cli\-config\-file\fP="" + meroxa configuration file + +.PP +\fB\-\-debug\fP[=false] + display any debugging information + +.PP +\fB\-\-json\fP[=false] + output json + +.PP +\fB\-\-timeout\fP=10s + set the duration of the client timeout in seconds + + +.SH EXAMPLE +.PP +.RS + +.nf + +meroxa env create my\-env \-\-type self\_hosted \-\-provider aws \-\-region us\-east\-1 \-\-config aws\_access\_key\_id=my\_access\_key \-\-config aws\_access\_secret=my\_access\_secret + + +.fi +.RE + + +.SH SEE ALSO +.PP +\fBmeroxa\-environments(1)\fP diff --git a/etc/man/man1/meroxa-environments-describe.1 b/etc/man/man1/meroxa-environments-describe.1 new file mode 100644 index 000000000..2d70d92e0 --- /dev/null +++ b/etc/man/man1/meroxa-environments-describe.1 @@ -0,0 +1,45 @@ +.nh +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" + +.SH NAME +.PP +meroxa\-environments\-describe \- Describe environment + + +.SH SYNOPSIS +.PP +\fBmeroxa environments describe [NAMEorUUID] [flags]\fP + + +.SH DESCRIPTION +.PP +Describe environment + + +.SH OPTIONS +.PP +\fB\-h\fP, \fB\-\-help\fP[=false] + help for describe + + +.SH OPTIONS INHERITED FROM PARENT COMMANDS +.PP +\fB\-\-cli\-config\-file\fP="" + meroxa configuration file + +.PP +\fB\-\-debug\fP[=false] + display any debugging information + +.PP +\fB\-\-json\fP[=false] + output json + +.PP +\fB\-\-timeout\fP=10s + set the duration of the client timeout in seconds + + +.SH SEE ALSO +.PP +\fBmeroxa\-environments(1)\fP diff --git a/etc/man/man1/meroxa-environments-list.1 b/etc/man/man1/meroxa-environments-list.1 new file mode 100644 index 000000000..0d3bd2a70 --- /dev/null +++ b/etc/man/man1/meroxa-environments-list.1 @@ -0,0 +1,49 @@ +.nh +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" + +.SH NAME +.PP +meroxa\-environments\-list \- List environments + + +.SH SYNOPSIS +.PP +\fBmeroxa environments list [flags]\fP + + +.SH DESCRIPTION +.PP +List environments + + +.SH OPTIONS +.PP +\fB\-h\fP, \fB\-\-help\fP[=false] + help for list + +.PP +\fB\-\-no\-headers\fP[=false] + display output without headers + + +.SH OPTIONS INHERITED FROM PARENT COMMANDS +.PP +\fB\-\-cli\-config\-file\fP="" + meroxa configuration file + +.PP +\fB\-\-debug\fP[=false] + display any debugging information + +.PP +\fB\-\-json\fP[=false] + output json + +.PP +\fB\-\-timeout\fP=10s + set the duration of the client timeout in seconds + + +.SH SEE ALSO +.PP +\fBmeroxa\-environments(1)\fP diff --git a/etc/man/man1/meroxa-environments-remove.1 b/etc/man/man1/meroxa-environments-remove.1 new file mode 100644 index 000000000..71deef63d --- /dev/null +++ b/etc/man/man1/meroxa-environments-remove.1 @@ -0,0 +1,49 @@ +.nh +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" + +.SH NAME +.PP +meroxa\-environments\-remove \- Remove environment + + +.SH SYNOPSIS +.PP +\fBmeroxa environments remove NAMEorUUID [flags]\fP + + +.SH DESCRIPTION +.PP +Remove environment + + +.SH OPTIONS +.PP +\fB\-f\fP, \fB\-\-force\fP[=false] + skip confirmation + +.PP +\fB\-h\fP, \fB\-\-help\fP[=false] + help for remove + + +.SH OPTIONS INHERITED FROM PARENT COMMANDS +.PP +\fB\-\-cli\-config\-file\fP="" + meroxa configuration file + +.PP +\fB\-\-debug\fP[=false] + display any debugging information + +.PP +\fB\-\-json\fP[=false] + output json + +.PP +\fB\-\-timeout\fP=10s + set the duration of the client timeout in seconds + + +.SH SEE ALSO +.PP +\fBmeroxa\-environments(1)\fP diff --git a/etc/man/man1/meroxa-environments-update.1 b/etc/man/man1/meroxa-environments-update.1 new file mode 100644 index 000000000..33d6da843 --- /dev/null +++ b/etc/man/man1/meroxa-environments-update.1 @@ -0,0 +1,70 @@ +.nh +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" + +.SH NAME +.PP +meroxa\-environments\-update \- Update an environment + + +.SH SYNOPSIS +.PP +\fBmeroxa environments update NAMEorUUID [flags]\fP + + +.SH DESCRIPTION +.PP +Update an environment + + +.SH OPTIONS +.PP +\fB\-c\fP, \fB\-\-config\fP=[] + updated environment configuration based on type and provider (e.g.: \-\-config aws\_access\_key\_id=my\_access\_key \-\-config aws\_access\_secret=my\_access\_secret) + +.PP +\fB\-h\fP, \fB\-\-help\fP[=false] + help for update + +.PP +\fB\-\-name\fP="" + updated environment name, when specified + +.PP +\fB\-y\fP, \fB\-\-yes\fP[=false] + skip confirmation prompt + + +.SH OPTIONS INHERITED FROM PARENT COMMANDS +.PP +\fB\-\-cli\-config\-file\fP="" + meroxa configuration file + +.PP +\fB\-\-debug\fP[=false] + display any debugging information + +.PP +\fB\-\-json\fP[=false] + output json + +.PP +\fB\-\-timeout\fP=10s + set the duration of the client timeout in seconds + + +.SH EXAMPLE +.PP +.RS + +.nf + +meroxa env update my\-env \-\-name new\-name \-\-config aws\_access\_key\_id=my\_access\_key \-\-config aws\_access\_secret=my\_access\_secret" + + +.fi +.RE + + +.SH SEE ALSO +.PP +\fBmeroxa\-environments(1)\fP diff --git a/etc/man/man1/meroxa-environments.1 b/etc/man/man1/meroxa-environments.1 new file mode 100644 index 000000000..0a998b92b --- /dev/null +++ b/etc/man/man1/meroxa-environments.1 @@ -0,0 +1,45 @@ +.nh +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" + +.SH NAME +.PP +meroxa\-environments \- Manage environments on Meroxa + + +.SH SYNOPSIS +.PP +\fBmeroxa environments [flags]\fP + + +.SH DESCRIPTION +.PP +Manage environments on Meroxa + + +.SH OPTIONS +.PP +\fB\-h\fP, \fB\-\-help\fP[=false] + help for environments + + +.SH OPTIONS INHERITED FROM PARENT COMMANDS +.PP +\fB\-\-cli\-config\-file\fP="" + meroxa configuration file + +.PP +\fB\-\-debug\fP[=false] + display any debugging information + +.PP +\fB\-\-json\fP[=false] + output json + +.PP +\fB\-\-timeout\fP=10s + set the duration of the client timeout in seconds + + +.SH SEE ALSO +.PP +\fBmeroxa(1)\fP, \fBmeroxa\-environments\-create(1)\fP, \fBmeroxa\-environments\-describe(1)\fP, \fBmeroxa\-environments\-list(1)\fP, \fBmeroxa\-environments\-remove(1)\fP, \fBmeroxa\-environments\-update(1)\fP diff --git a/etc/man/man1/meroxa-login.1 b/etc/man/man1/meroxa-login.1 index 3800c8cf8..7bc232243 100644 --- a/etc/man/man1/meroxa-login.1 +++ b/etc/man/man1/meroxa-login.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-logout.1 b/etc/man/man1/meroxa-logout.1 index ffa54cb10..d243df718 100644 --- a/etc/man/man1/meroxa-logout.1 +++ b/etc/man/man1/meroxa-logout.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-open-billing.1 b/etc/man/man1/meroxa-open-billing.1 index 111c983cf..7390e8101 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-open.1 b/etc/man/man1/meroxa-open.1 index c817c0865..a0780cb7c 100644 --- a/etc/man/man1/meroxa-open.1 +++ b/etc/man/man1/meroxa-open.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-pipelines-create.1 b/etc/man/man1/meroxa-pipelines-create.1 index ef7c780a4..c9154ef60 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -17,6 +17,10 @@ Create a pipeline .SH OPTIONS +.PP +\fB\-\-env\fP="" + environment (name or UUID) where pipeline will be created + .PP \fB\-h\fP, \fB\-\-help\fP[=false] help for create diff --git a/etc/man/man1/meroxa-pipelines-describe.1 b/etc/man/man1/meroxa-pipelines-describe.1 index bc5c588c1..8514f0cad 100644 --- a/etc/man/man1/meroxa-pipelines-describe.1 +++ b/etc/man/man1/meroxa-pipelines-describe.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-pipelines-list.1 b/etc/man/man1/meroxa-pipelines-list.1 index 2bf6bea9f..abed8ade2 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-pipelines-remove.1 b/etc/man/man1/meroxa-pipelines-remove.1 index bf4381371..042c8524f 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-pipelines-update.1 b/etc/man/man1/meroxa-pipelines-update.1 index 39ada8fdc..6063a035c 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-pipelines.1 b/etc/man/man1/meroxa-pipelines.1 index 723dcd866..fc12a7cf5 100644 --- a/etc/man/man1/meroxa-pipelines.1 +++ b/etc/man/man1/meroxa-pipelines.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-resources-create.1 b/etc/man/man1/meroxa-resources-create.1 index 8a7468009..6171774c8 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -29,6 +29,10 @@ Use the create command to add resources to your Meroxa resource catalog. \fB\-\-client\-key\fP="" client private key for authenticating to the resource +.PP +\fB\-\-env\fP="" + environment (name or UUID) where resource will be created + .PP \fB\-h\fP, \fB\-\-help\fP[=false] help for create diff --git a/etc/man/man1/meroxa-resources-describe.1 b/etc/man/man1/meroxa-resources-describe.1 index 66e559825..46efe97db 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-resources-list.1 b/etc/man/man1/meroxa-resources-list.1 index 0e122e389..672ca3222 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-resources-remove.1 b/etc/man/man1/meroxa-resources-remove.1 index cb8eeafa0..4244d2221 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-resources-rotate-tunnel-key.1 b/etc/man/man1/meroxa-resources-rotate-tunnel-key.1 index 2bae39dc9..78a17e0fe 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-resources-update.1 b/etc/man/man1/meroxa-resources-update.1 index ad55814c5..e08f3a185 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-resources-validate.1 b/etc/man/man1/meroxa-resources-validate.1 index 7526854a6..766dce0c3 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-resources.1 b/etc/man/man1/meroxa-resources.1 index 13cee72c8..a6ca8002c 100644 --- a/etc/man/man1/meroxa-resources.1 +++ b/etc/man/man1/meroxa-resources.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-transforms-list.1 b/etc/man/man1/meroxa-transforms-list.1 index da2f484a6..c468afcab 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" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-transforms.1 b/etc/man/man1/meroxa-transforms.1 index f55d995d7..ed7c744b4 100644 --- a/etc/man/man1/meroxa-transforms.1 +++ b/etc/man/man1/meroxa-transforms.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-version.1 b/etc/man/man1/meroxa-version.1 index 993ea2a76..f987f7d3a 100644 --- a/etc/man/man1/meroxa-version.1 +++ b/etc/man/man1/meroxa-version.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa-whoami.1 b/etc/man/man1/meroxa-whoami.1 index a27c0ca94..b3d64820f 100644 --- a/etc/man/man1/meroxa-whoami.1 +++ b/etc/man/man1/meroxa-whoami.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP diff --git a/etc/man/man1/meroxa.1 b/etc/man/man1/meroxa.1 index 8094ec974..6a6cdcb71 100644 --- a/etc/man/man1/meroxa.1 +++ b/etc/man/man1/meroxa.1 @@ -1,5 +1,5 @@ .nh -.TH "Meroxa" "1" "Dec 2021" "Meroxa CLI " "Meroxa Manual" +.TH "Meroxa" "1" "Jan 2022" "Meroxa CLI " "Meroxa Manual" .SH NAME .PP @@ -48,4 +48,4 @@ meroxa resources list \-\-types .SH SEE ALSO .PP -\fBmeroxa\-api(1)\fP, \fBmeroxa\-auth(1)\fP, \fBmeroxa\-billing(1)\fP, \fBmeroxa\-completion(1)\fP, \fBmeroxa\-config(1)\fP, \fBmeroxa\-connect(1)\fP, \fBmeroxa\-connectors(1)\fP, \fBmeroxa\-endpoints(1)\fP, \fBmeroxa\-login(1)\fP, \fBmeroxa\-logout(1)\fP, \fBmeroxa\-open(1)\fP, \fBmeroxa\-pipelines(1)\fP, \fBmeroxa\-resources(1)\fP, \fBmeroxa\-transforms(1)\fP, \fBmeroxa\-version(1)\fP, \fBmeroxa\-whoami(1)\fP +\fBmeroxa\-api(1)\fP, \fBmeroxa\-auth(1)\fP, \fBmeroxa\-billing(1)\fP, \fBmeroxa\-completion(1)\fP, \fBmeroxa\-config(1)\fP, \fBmeroxa\-connect(1)\fP, \fBmeroxa\-connectors(1)\fP, \fBmeroxa\-endpoints(1)\fP, \fBmeroxa\-environments(1)\fP, \fBmeroxa\-login(1)\fP, \fBmeroxa\-logout(1)\fP, \fBmeroxa\-open(1)\fP, \fBmeroxa\-pipelines(1)\fP, \fBmeroxa\-resources(1)\fP, \fBmeroxa\-transforms(1)\fP, \fBmeroxa\-version(1)\fP, \fBmeroxa\-whoami(1)\fP