Skip to content

Commit

Permalink
Feature logging debug (#207)
Browse files Browse the repository at this point in the history
* Add global verbosity flag (#178)

* Implement new print package and integrate in first commands (#182)

* Implement new print package

* Integrate in first commands

* Update all tests

* Fix linter

* Rename some consts and methods

* Add debug logs in activate-service-account login

* Add unit tests

* Add one additional test case

* Introduce p.Info and p.Output to log messages and command output (respectively) (#198)

* switch prints to p.Info and p.Output

* fix linting

* remove remaining prints

* update curl

* more mapping fixes

* address PR comments

* Logging: update table.Display to use the print package (#200)

* switch prints to p.Info and p.Output

* fix linting

* address PR comments

* change cmd.outstdout to p.outstdout

* Move confirmation prompt to Print package (#201)

* Move confirmation prompt to Print package

* Update confirmationPrompt signature, use p.Cmd

* remove p.OutOrStdout, use cmd instead

* Logging: change spinner to print package, update docs (#203)

* change spinner to print package

* generate docs

* remove duplicate statements

* Logging: move warnings to verbosity package (#209)

* move warnings to verbosity package

* Remove Warnf, change Warn and Error to Printf formatting

* remove new line at the end of Warn output, callers have to add it themselves (printf behavior)

---------

Co-authored-by: João Palet <[email protected]>
Co-authored-by: vicentepinto98 <[email protected]>
  • Loading branch information
3 people authored Apr 9, 2024
1 parent cb2d132 commit d2e8240
Show file tree
Hide file tree
Showing 603 changed files with 2,939 additions and 1,834 deletions.
14 changes: 14 additions & 0 deletions docs/stackit.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,41 @@ stackit [flags]
-h, --help Help for "stackit"
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
-v, --version Show "stackit" version
```

### SEE ALSO

* [stackit argus](./stackit_argus.md) - Provides functionality for Argus
* [stackit argus](./stackit_argus.md) - Provides functionality for Argus
* [stackit auth](./stackit_auth.md) - Provides authentication functionality
* [stackit config](./stackit_config.md) - Provides functionality for CLI configuration options
* [stackit curl](./stackit_curl.md) - Executes an authenticated HTTP request to an endpoint
* [stackit dns](./stackit_dns.md) - Provides functionality for DNS
* [stackit logme](./stackit_logme.md) - Provides functionality for LogMe
* [stackit logme](./stackit_logme.md) - Provides functionality for LogMe
* [stackit mariadb](./stackit_mariadb.md) - Provides functionality for MariaDB
* [stackit mariadb](./stackit_mariadb.md) - Provides functionality for MariaDB
* [stackit mongodbflex](./stackit_mongodbflex.md) - Provides functionality for MongoDB Flex
* [stackit mongodbflex](./stackit_mongodbflex.md) - Provides functionality for MongoDB Flex
* [stackit object-storage](./stackit_object-storage.md) - Provides functionality regarding Object Storage
* [stackit object-storage](./stackit_object-storage.md) - Provides functionality regarding Object Storage
* [stackit opensearch](./stackit_opensearch.md) - Provides functionality for OpenSearch
* [stackit opensearch](./stackit_opensearch.md) - Provides functionality for OpenSearch
* [stackit organization](./stackit_organization.md) - Provides functionality regarding organizations
* [stackit organization](./stackit_organization.md) - Provides functionality regarding organizations
* [stackit postgresflex](./stackit_postgresflex.md) - Provides functionality for PostgreSQL Flex
* [stackit postgresflex](./stackit_postgresflex.md) - Provides functionality for PostgreSQL Flex
* [stackit project](./stackit_project.md) - Provides functionality regarding projects
* [stackit rabbitmq](./stackit_rabbitmq.md) - Provides functionality for RabbitMQ
* [stackit rabbitmq](./stackit_rabbitmq.md) - Provides functionality for RabbitMQ
* [stackit redis](./stackit_redis.md) - Provides functionality for Redis
* [stackit redis](./stackit_redis.md) - Provides functionality for Redis
* [stackit secrets-manager](./stackit_secrets-manager.md) - Provides functionality for Secrets Manager
* [stackit secrets-manager](./stackit_secrets-manager.md) - Provides functionality for Secrets Manager
* [stackit service-account](./stackit_service-account.md) - Provides functionality for service accounts
* [stackit service-account](./stackit_service-account.md) - Provides functionality for service accounts
* [stackit ske](./stackit_ske.md) - Provides functionality for SKE
* [stackit ske](./stackit_ske.md) - Provides functionality for SKE

1 change: 1 addition & 0 deletions docs/stackit_argus.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit argus [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_argus_instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit argus instance [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_argus_instance_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ stackit argus instance create [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_argus_instance_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ stackit argus instance delete INSTANCE_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_argus_instance_describe.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ stackit argus instance describe INSTANCE_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_argus_instance_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ stackit argus instance list [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_argus_instance_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ stackit argus instance update INSTANCE_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_argus_plans.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ stackit argus plans [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit auth [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_auth_activate-service-account.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ stackit auth activate-service-account [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_auth_login.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ stackit auth login [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit config [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_config_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ stackit config list [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_config_set.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ stackit config set [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_config_unset.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ stackit config unset [flags]
--service-account-custom-endpoint SKE API base URL. If unset, uses the default base URL
--session-time-limit Maximum time before authentication is required again. If unset, defaults to 2h
--ske-custom-endpoint SKE API base URL. If unset, uses the default base URL
--verbosity Verbosity of the CLI
```

### Options inherited from parent commands
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_curl.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ stackit curl URL [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit dns [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_record-set.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit dns record-set [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_record-set_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ stackit dns record-set create [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_record-set_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ stackit dns record-set delete RECORD_SET_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_record-set_describe.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ stackit dns record-set describe RECORD_SET_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_record-set_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ stackit dns record-set list [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_record-set_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ stackit dns record-set update RECORD_SET_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_zone.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit dns zone [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_zone_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ stackit dns zone create [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_zone_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ stackit dns zone delete ZONE_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_zone_describe.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ stackit dns zone describe ZONE_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_zone_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ stackit dns zone list [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_dns_zone_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ stackit dns zone update ZONE_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit logme [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_credentials.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit logme credentials [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_credentials_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ stackit logme credentials create [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_credentials_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ stackit logme credentials delete CREDENTIALS_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_credentials_describe.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ stackit logme credentials describe CREDENTIALS_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_credentials_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ stackit logme credentials list [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit logme instance [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_instance_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ stackit logme instance create [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_instance_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ stackit logme instance delete INSTANCE_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_instance_describe.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ stackit logme instance describe INSTANCE_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_instance_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ stackit logme instance list [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_instance_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ stackit logme instance update INSTANCE_ID [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_logme_plans.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ stackit logme plans [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_mariadb.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit mariadb [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions docs/stackit_mariadb_credentials.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ stackit mariadb credentials [flags]
--async If set, runs the command asynchronously
-o, --output-format string Output format, one of ["json" "pretty"]
-p, --project-id string Project ID
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
```

### SEE ALSO
Expand Down
Loading

0 comments on commit d2e8240

Please sign in to comment.