@mittwald/cli 1.0.0-alpha.9 → 1.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +83 -2425
- package/bin/dev.cmd +1 -1
- package/bin/dev.js +5 -0
- package/bin/run.js +1 -1
- package/dist/commands/app/copy.d.ts +18 -0
- package/dist/commands/app/copy.js +40 -0
- package/dist/commands/app/create/node.d.ts +12 -0
- package/dist/commands/app/create/node.js +16 -0
- package/dist/commands/app/create/php.d.ts +12 -0
- package/dist/commands/app/create/php.js +13 -0
- package/dist/commands/app/create/python.d.ts +12 -0
- package/dist/commands/app/create/python.js +13 -0
- package/dist/commands/app/create/static.d.ts +12 -0
- package/dist/commands/app/create/static.js +13 -0
- package/dist/commands/app/dependency/list.d.ts +22 -0
- package/dist/commands/app/dependency/list.js +24 -0
- package/dist/commands/app/dependency/update.d.ts +20 -0
- package/dist/commands/app/dependency/update.js +104 -0
- package/dist/commands/app/dependency/versions.d.ts +24 -0
- package/dist/commands/app/dependency/versions.js +36 -0
- package/dist/commands/app/download.d.ts +20 -0
- package/dist/commands/app/download.js +60 -0
- package/dist/commands/app/get.d.ts +12 -0
- package/dist/commands/app/get.js +21 -0
- package/dist/commands/app/install/contao.d.ts +11 -0
- package/dist/commands/app/install/contao.js +23 -0
- package/dist/commands/app/install/drupal.d.ts +12 -0
- package/dist/commands/app/install/drupal.js +20 -0
- package/dist/commands/app/install/grav.d.ts +11 -0
- package/dist/commands/app/install/grav.js +21 -0
- package/dist/commands/app/install/humhub.d.ts +12 -0
- package/dist/commands/app/install/humhub.js +22 -0
- package/dist/commands/app/install/joomla.d.ts +11 -0
- package/dist/commands/app/install/joomla.js +22 -0
- package/dist/commands/app/install/magento2.d.ts +12 -0
- package/dist/commands/app/install/magento2.js +27 -0
- package/dist/commands/app/install/matomo.d.ts +11 -0
- package/dist/commands/app/install/matomo.js +20 -0
- package/dist/commands/app/install/moodle.d.ts +12 -0
- package/dist/commands/app/install/moodle.js +20 -0
- package/dist/commands/app/install/neos.d.ts +12 -0
- package/dist/commands/app/install/neos.js +20 -0
- package/dist/commands/app/install/nextcloud.d.ts +11 -0
- package/dist/commands/app/install/nextcloud.js +20 -0
- package/dist/commands/app/install/prestashop.d.ts +12 -0
- package/dist/commands/app/install/prestashop.js +22 -0
- package/dist/commands/app/install/shopware5.d.ts +11 -0
- package/dist/commands/app/install/shopware5.js +25 -0
- package/dist/commands/app/install/shopware6.d.ts +12 -0
- package/dist/commands/app/install/shopware6.js +25 -0
- package/dist/commands/app/install/typo3.d.ts +12 -0
- package/dist/commands/app/install/typo3.js +21 -0
- package/dist/commands/app/install/wordpress.d.ts +12 -0
- package/dist/commands/app/install/wordpress.js +20 -0
- package/dist/commands/app/list-upgrade-candidates.d.ts +24 -0
- package/dist/commands/app/list-upgrade-candidates.js +37 -0
- package/dist/commands/app/list.d.ts +31 -0
- package/dist/commands/app/list.js +79 -0
- package/dist/commands/app/ssh.d.ts +16 -0
- package/dist/commands/app/ssh.js +61 -0
- package/dist/commands/app/uninstall.d.ts +9 -0
- package/dist/commands/app/uninstall.js +17 -0
- package/dist/commands/app/update.d.ts +16 -0
- package/dist/commands/app/update.js +80 -0
- package/dist/commands/app/upgrade.d.ts +18 -0
- package/dist/commands/app/upgrade.js +172 -0
- package/dist/commands/app/upload.d.ts +20 -0
- package/dist/commands/app/upload.js +63 -0
- package/dist/commands/app/versions.d.ts +12 -0
- package/dist/commands/app/versions.js +44 -0
- package/dist/commands/backup/create.d.ts +21 -0
- package/dist/commands/backup/create.js +60 -0
- package/dist/commands/backup/delete.d.ts +15 -0
- package/dist/commands/backup/delete.js +18 -0
- package/dist/commands/backup/download.d.ts +29 -0
- package/dist/commands/backup/download.js +174 -0
- package/dist/commands/backup/get.d.ts +14 -0
- package/dist/commands/backup/get.js +26 -0
- package/dist/commands/backup/list.d.ts +25 -0
- package/dist/commands/backup/list.js +36 -0
- package/dist/commands/backup/schedule/create.d.ts +18 -0
- package/dist/commands/backup/schedule/create.js +57 -0
- package/dist/commands/backup/schedule/delete.d.ts +12 -0
- package/dist/commands/backup/schedule/delete.js +32 -0
- package/dist/commands/backup/schedule/list.d.ts +25 -0
- package/dist/commands/backup/schedule/list.js +28 -0
- package/dist/commands/backup/schedule/update.d.ts +18 -0
- package/dist/commands/backup/schedule/update.js +55 -0
- package/dist/commands/context/get.d.ts +10 -0
- package/dist/commands/context/get.js +74 -0
- package/dist/commands/context/reset.d.ts +6 -0
- package/dist/commands/context/reset.js +9 -0
- package/dist/commands/context/set.d.ts +12 -0
- package/dist/commands/context/set.js +42 -0
- package/dist/commands/conversation/categories.d.ts +21 -0
- package/dist/commands/conversation/categories.js +21 -0
- package/dist/commands/conversation/close.d.ts +8 -0
- package/dist/commands/conversation/close.js +20 -0
- package/dist/commands/conversation/create.d.ts +13 -0
- package/dist/commands/conversation/create.js +50 -0
- package/dist/commands/conversation/list.d.ts +21 -0
- package/dist/commands/conversation/list.js +33 -0
- package/dist/commands/conversation/reply.d.ts +13 -0
- package/dist/commands/conversation/reply.js +25 -0
- package/dist/commands/conversation/show.d.ts +9 -0
- package/dist/commands/conversation/show.js +97 -0
- package/dist/commands/conversation/show.test.js +100 -0
- package/dist/commands/cronjob/create.d.ts +24 -0
- package/dist/commands/cronjob/create.js +88 -0
- package/dist/commands/cronjob/delete.d.ts +13 -0
- package/dist/commands/cronjob/delete.js +21 -0
- package/dist/commands/cronjob/execute.d.ts +17 -0
- package/dist/commands/cronjob/execute.js +42 -0
- package/dist/commands/cronjob/execution/abort.d.ts +18 -0
- package/dist/commands/cronjob/execution/abort.js +41 -0
- package/dist/commands/cronjob/execution/get.d.ts +17 -0
- package/dist/commands/cronjob/execution/get.js +26 -0
- package/dist/commands/cronjob/execution/list.d.ts +24 -0
- package/dist/commands/cronjob/execution/list.js +39 -0
- package/dist/commands/cronjob/execution/logs.d.ts +17 -0
- package/dist/commands/cronjob/execution/logs.js +77 -0
- package/dist/commands/cronjob/get.d.ts +14 -0
- package/dist/commands/cronjob/get.js +30 -0
- package/dist/commands/cronjob/list.d.ts +25 -0
- package/dist/commands/cronjob/list.js +40 -0
- package/dist/commands/cronjob/update.d.ts +25 -0
- package/dist/commands/cronjob/update.js +84 -0
- package/dist/commands/database/mysql/charsets.d.ts +22 -0
- package/dist/commands/database/mysql/charsets.js +20 -0
- package/dist/commands/database/mysql/create.d.ts +25 -0
- package/dist/commands/database/mysql/create.js +108 -0
- package/dist/commands/database/mysql/create.test.js +117 -0
- package/dist/commands/database/mysql/delete.d.ts +13 -0
- package/dist/commands/database/mysql/delete.js +16 -0
- package/dist/commands/database/mysql/dump.d.ts +21 -0
- package/dist/commands/database/mysql/dump.js +72 -0
- package/dist/commands/database/mysql/get.d.ts +15 -0
- package/dist/commands/database/mysql/get.js +15 -0
- package/dist/commands/database/mysql/import.d.ts +21 -0
- package/dist/commands/database/mysql/import.js +72 -0
- package/dist/commands/database/mysql/list.d.ts +22 -0
- package/dist/commands/database/mysql/list.js +54 -0
- package/dist/commands/database/mysql/phpmyadmin.d.ts +8 -0
- package/dist/commands/database/mysql/phpmyadmin.js +25 -0
- package/dist/commands/database/mysql/port-forward.d.ts +17 -0
- package/dist/commands/database/mysql/port-forward.js +44 -0
- package/dist/commands/database/mysql/shell.d.ts +17 -0
- package/dist/commands/database/mysql/shell.js +38 -0
- package/dist/commands/database/mysql/user/create.d.ts +20 -0
- package/dist/commands/database/mysql/user/create.js +67 -0
- package/dist/commands/database/mysql/user/delete.d.ts +13 -0
- package/dist/commands/database/mysql/user/delete.js +30 -0
- package/dist/commands/database/mysql/user/get.d.ts +14 -0
- package/dist/commands/database/mysql/user/get.js +19 -0
- package/dist/commands/database/mysql/user/list.d.ts +22 -0
- package/dist/commands/database/mysql/user/list.js +44 -0
- package/dist/commands/database/mysql/user/update.d.ts +21 -0
- package/dist/commands/database/mysql/user/update.js +111 -0
- package/dist/commands/database/mysql/versions.d.ts +21 -0
- package/dist/commands/database/mysql/versions.js +18 -0
- package/dist/commands/database/redis/create.d.ts +20 -0
- package/dist/commands/database/redis/create.js +83 -0
- package/dist/commands/database/redis/get.d.ts +14 -0
- package/dist/commands/database/redis/get.js +19 -0
- package/dist/commands/database/redis/list.d.ts +22 -0
- package/dist/commands/database/redis/list.js +27 -0
- package/dist/commands/database/redis/shell.d.ts +16 -0
- package/dist/commands/database/redis/shell.js +37 -0
- package/dist/commands/database/redis/versions.d.ts +22 -0
- package/dist/commands/database/redis/versions.js +23 -0
- package/dist/commands/ddev/init.d.ts +34 -0
- package/dist/commands/ddev/init.js +179 -0
- package/dist/commands/ddev/render-config.d.ts +14 -0
- package/dist/commands/ddev/render-config.js +25 -0
- package/dist/commands/domain/dnszone/get.d.ts +17 -0
- package/dist/commands/domain/dnszone/get.js +32 -0
- package/dist/commands/domain/dnszone/list.d.ts +22 -0
- package/dist/commands/domain/dnszone/list.js +68 -0
- package/dist/commands/domain/dnszone/update.d.ts +28 -0
- package/dist/commands/domain/dnszone/update.js +176 -0
- package/dist/commands/domain/get.d.ts +17 -0
- package/dist/commands/domain/get.js +32 -0
- package/dist/commands/domain/list.d.ts +22 -0
- package/dist/commands/domain/list.js +40 -0
- package/dist/commands/domain/virtualhost/create.d.ts +25 -0
- package/dist/commands/domain/virtualhost/create.js +106 -0
- package/dist/commands/domain/virtualhost/delete.d.ts +13 -0
- package/dist/commands/domain/virtualhost/delete.js +21 -0
- package/dist/commands/domain/virtualhost/get.d.ts +14 -0
- package/dist/commands/domain/virtualhost/get.js +74 -0
- package/dist/commands/domain/virtualhost/list.d.ts +23 -0
- package/dist/commands/domain/virtualhost/list.js +65 -0
- package/dist/commands/login/reset.d.ts +12 -0
- package/dist/commands/login/reset.js +42 -0
- package/dist/commands/login/status.d.ts +5 -0
- package/dist/commands/login/status.js +23 -0
- package/dist/commands/login/token.d.ts +13 -0
- package/dist/commands/login/token.js +49 -0
- package/dist/commands/mail/address/create.d.ts +34 -0
- package/dist/commands/mail/address/create.js +158 -0
- package/dist/commands/mail/address/delete.d.ts +13 -0
- package/dist/commands/mail/address/delete.js +22 -0
- package/dist/commands/mail/address/get.d.ts +16 -0
- package/dist/commands/mail/address/get.js +22 -0
- package/dist/commands/mail/address/list.d.ts +22 -0
- package/dist/commands/mail/address/list.js +50 -0
- package/dist/commands/mail/address/update.d.ts +35 -0
- package/dist/commands/mail/address/update.js +167 -0
- package/dist/commands/mail/deliverybox/create.d.ts +28 -0
- package/dist/commands/mail/deliverybox/create.js +91 -0
- package/dist/commands/mail/deliverybox/delete.d.ts +13 -0
- package/dist/commands/mail/deliverybox/delete.js +22 -0
- package/dist/commands/mail/deliverybox/get.d.ts +16 -0
- package/dist/commands/mail/deliverybox/get.js +22 -0
- package/dist/commands/mail/deliverybox/list.d.ts +23 -0
- package/dist/commands/mail/deliverybox/list.js +27 -0
- package/dist/commands/mail/deliverybox/update.d.ts +28 -0
- package/dist/commands/mail/deliverybox/update.js +91 -0
- package/dist/commands/org/delete.d.ts +13 -0
- package/dist/commands/org/delete.js +16 -0
- package/dist/commands/org/get.d.ts +14 -0
- package/dist/commands/org/get.js +52 -0
- package/dist/commands/org/invite/list-own.d.ts +57 -0
- package/dist/commands/org/invite/list-own.js +39 -0
- package/dist/commands/org/invite/list.d.ts +22 -0
- package/dist/commands/org/invite/list.js +33 -0
- package/dist/commands/org/invite/revoke.d.ts +17 -0
- package/dist/commands/org/invite/revoke.js +39 -0
- package/dist/commands/org/invite.d.ts +21 -0
- package/dist/commands/org/invite.js +53 -0
- package/dist/commands/org/list.d.ts +23 -0
- package/dist/commands/org/list.js +41 -0
- package/dist/commands/org/membership/list-own.d.ts +57 -0
- package/dist/commands/org/membership/list-own.js +39 -0
- package/dist/commands/org/membership/list.d.ts +56 -0
- package/dist/commands/org/membership/list.js +44 -0
- package/dist/commands/org/membership/revoke.d.ts +17 -0
- package/dist/commands/org/membership/revoke.js +43 -0
- package/dist/commands/project/create.d.ts +21 -0
- package/dist/commands/project/create.js +66 -0
- package/dist/commands/project/delete.d.ts +13 -0
- package/dist/commands/project/delete.js +16 -0
- package/dist/commands/project/filesystem/usage.d.ts +14 -0
- package/dist/commands/project/filesystem/usage.js +58 -0
- package/dist/commands/project/get.d.ts +14 -0
- package/dist/commands/project/get.js +82 -0
- package/dist/commands/project/invite/get.d.ts +14 -0
- package/dist/commands/project/invite/get.js +19 -0
- package/dist/commands/project/invite/list-own.d.ts +21 -0
- package/dist/commands/project/invite/list-own.js +34 -0
- package/dist/commands/project/invite/list.d.ts +22 -0
- package/dist/commands/project/invite/list.js +35 -0
- package/dist/commands/project/list.d.ts +21 -0
- package/dist/commands/project/list.js +36 -0
- package/dist/commands/project/membership/get-own.d.ts +12 -0
- package/dist/commands/project/membership/get-own.js +16 -0
- package/dist/commands/project/membership/get.d.ts +14 -0
- package/dist/commands/project/membership/get.js +19 -0
- package/dist/commands/project/membership/list-own.d.ts +21 -0
- package/dist/commands/project/membership/list-own.js +31 -0
- package/dist/commands/project/membership/list.d.ts +39 -0
- package/dist/commands/project/membership/list.js +54 -0
- package/dist/commands/project/ssh.d.ts +13 -0
- package/dist/commands/project/ssh.js +23 -0
- package/dist/commands/project/update.d.ts +17 -0
- package/dist/commands/project/update.js +41 -0
- package/dist/commands/server/get.d.ts +14 -0
- package/dist/commands/server/get.js +15 -0
- package/dist/commands/server/list.d.ts +21 -0
- package/dist/commands/server/list.js +46 -0
- package/dist/commands/sftp-user/create.d.ts +21 -0
- package/dist/commands/sftp-user/create.js +79 -0
- package/dist/commands/sftp-user/delete.d.ts +13 -0
- package/dist/commands/sftp-user/delete.js +21 -0
- package/dist/commands/sftp-user/list.d.ts +24 -0
- package/dist/commands/sftp-user/list.js +30 -0
- package/dist/commands/sftp-user/update.d.ts +23 -0
- package/dist/commands/sftp-user/update.js +96 -0
- package/dist/commands/ssh-user/create.d.ts +19 -0
- package/dist/commands/ssh-user/create.js +66 -0
- package/dist/commands/ssh-user/delete.d.ts +13 -0
- package/dist/commands/ssh-user/delete.js +21 -0
- package/dist/commands/ssh-user/list.d.ts +24 -0
- package/dist/commands/ssh-user/list.js +28 -0
- package/dist/commands/ssh-user/update.d.ts +21 -0
- package/dist/commands/ssh-user/update.js +85 -0
- package/dist/commands/user/api-token/create.d.ts +16 -0
- package/dist/commands/user/api-token/create.js +53 -0
- package/dist/commands/user/api-token/get.d.ts +14 -0
- package/dist/commands/user/api-token/get.js +19 -0
- package/dist/commands/user/api-token/list.d.ts +21 -0
- package/dist/commands/user/api-token/list.js +27 -0
- package/dist/commands/user/api-token/revoke.d.ts +13 -0
- package/dist/commands/user/api-token/revoke.js +21 -0
- package/dist/commands/user/get.d.ts +15 -0
- package/dist/commands/user/get.js +20 -0
- package/dist/commands/user/session/get.d.ts +14 -0
- package/dist/commands/user/session/get.js +19 -0
- package/dist/commands/user/session/list.d.ts +21 -0
- package/dist/commands/user/session/list.js +32 -0
- package/dist/commands/user/ssh-key/create.d.ts +14 -0
- package/dist/commands/user/ssh-key/create.js +69 -0
- package/dist/commands/user/ssh-key/delete.d.ts +13 -0
- package/dist/commands/user/ssh-key/delete.js +22 -0
- package/dist/commands/user/ssh-key/get.d.ts +14 -0
- package/dist/commands/user/ssh-key/get.js +19 -0
- package/dist/commands/user/ssh-key/import.d.ts +11 -0
- package/dist/commands/user/ssh-key/import.js +56 -0
- package/dist/commands/user/ssh-key/list.d.ts +23 -0
- package/dist/commands/user/ssh-key/list.js +26 -0
- package/dist/lib/apiutil/SuccessfulResponse.d.ts +19 -0
- package/dist/lib/apiutil/SuccessfulResponse.js +1 -0
- package/dist/lib/apiutil/api_consistency.d.ts +2 -0
- package/dist/lib/apiutil/api_consistency.js +27 -0
- package/dist/lib/apiutil/api_logging.d.ts +8 -0
- package/dist/lib/apiutil/api_logging.js +20 -0
- package/dist/lib/apiutil/api_retry.d.ts +2 -0
- package/dist/lib/apiutil/api_retry.js +43 -0
- package/dist/lib/apiutil/assert_success.d.ts +3 -0
- package/dist/lib/apiutil/assert_success.js +7 -0
- package/dist/lib/auth/token.d.ts +13 -0
- package/dist/lib/auth/token.js +44 -0
- package/dist/lib/basecommands/BaseCommand.d.ts +7 -0
- package/dist/lib/basecommands/BaseCommand.js +25 -0
- package/dist/lib/basecommands/CommandFlags.d.ts +6 -0
- package/dist/lib/basecommands/CommandFlags.js +1 -0
- package/dist/lib/basecommands/DeleteBaseCommand.d.ts +12 -0
- package/dist/lib/basecommands/DeleteBaseCommand.js +43 -0
- package/dist/lib/basecommands/ExecRenderBaseCommand.d.ts +8 -0
- package/dist/lib/basecommands/ExecRenderBaseCommand.js +25 -0
- package/dist/lib/basecommands/ExtendedBaseCommand.d.ts +11 -0
- package/dist/lib/basecommands/ExtendedBaseCommand.js +28 -0
- package/dist/lib/basecommands/GetBaseCommand.d.ts +16 -0
- package/dist/lib/basecommands/GetBaseCommand.js +25 -0
- package/dist/lib/basecommands/ListBaseCommand.d.ts +30 -0
- package/dist/lib/basecommands/ListBaseCommand.js +73 -0
- package/dist/lib/basecommands/RenderBaseCommand.d.ts +22 -0
- package/dist/lib/basecommands/RenderBaseCommand.js +62 -0
- package/dist/lib/context/Context.d.ts +37 -0
- package/dist/lib/context/Context.js +65 -0
- package/dist/lib/context/ContextProvider.d.ts +6 -0
- package/dist/lib/context/ContextProvider.js +1 -0
- package/dist/lib/context/DDEVContextProvider.d.ts +21 -0
- package/dist/lib/context/DDEVContextProvider.js +81 -0
- package/dist/lib/context/FlagSet.d.ts +23 -0
- package/dist/lib/context/FlagSet.js +1 -0
- package/dist/lib/context/FlagSetBuilder.d.ts +65 -0
- package/dist/lib/context/FlagSetBuilder.js +148 -0
- package/dist/lib/context/TerraformContextProvider.d.ts +7 -0
- package/dist/lib/context/TerraformContextProvider.js +55 -0
- package/dist/lib/context/UserContextProvider.d.ts +13 -0
- package/dist/lib/context/UserContextProvider.js +54 -0
- package/dist/lib/context/WritableContextProvider.d.ts +14 -0
- package/dist/lib/context/WritableContextProvider.js +1 -0
- package/dist/lib/ddev/config.d.ts +41 -0
- package/dist/lib/ddev/config.js +28 -0
- package/dist/lib/ddev/config_builder.d.ts +18 -0
- package/dist/lib/ddev/config_builder.js +138 -0
- package/dist/lib/ddev/config_loader.d.ts +2 -0
- package/dist/lib/ddev/config_loader.js +13 -0
- package/dist/lib/ddev/config_render.d.ts +2 -0
- package/dist/lib/ddev/config_render.js +6 -0
- package/dist/lib/ddev/flags.d.ts +12 -0
- package/dist/lib/ddev/flags.js +29 -0
- package/dist/lib/ddev/init_assert.d.ts +3 -0
- package/dist/lib/ddev/init_assert.js +22 -0
- package/dist/lib/ddev/init_database.d.ts +19 -0
- package/dist/lib/ddev/init_database.js +59 -0
- package/dist/lib/ddev/init_projecttype.d.ts +32 -0
- package/dist/lib/ddev/init_projecttype.js +102 -0
- package/dist/lib/error/InteractiveInputRequiredError.d.ts +7 -0
- package/dist/lib/error/InteractiveInputRequiredError.js +11 -0
- package/dist/lib/error/UnexpectedShortIDPassedError.d.ts +5 -0
- package/dist/lib/error/UnexpectedShortIDPassedError.js +10 -0
- package/dist/lib/error/handleError.d.ts +11 -0
- package/dist/lib/error/handleError.js +21 -0
- package/dist/lib/flags/expireFlags.d.ts +7 -0
- package/dist/lib/flags/expireFlags.js +18 -0
- package/dist/lib/resources/app/Installer.d.ts +27 -0
- package/dist/lib/resources/app/Installer.js +56 -0
- package/dist/lib/resources/app/custom_installation.d.ts +7 -0
- package/dist/lib/resources/app/custom_installation.js +16 -0
- package/dist/lib/resources/app/flags.d.ts +34 -0
- package/dist/lib/resources/app/flags.js +236 -0
- package/dist/lib/resources/app/hooks.d.ts +12 -0
- package/dist/lib/resources/app/hooks.js +43 -0
- package/dist/lib/resources/app/install.d.ts +10 -0
- package/dist/lib/resources/app/install.js +42 -0
- package/dist/lib/resources/app/sync.d.ts +15 -0
- package/dist/lib/resources/app/sync.js +55 -0
- package/dist/lib/resources/app/upgrade.d.ts +1 -0
- package/dist/lib/resources/app/upgrade.js +1 -0
- package/dist/lib/resources/app/uuid.d.ts +49 -0
- package/dist/lib/resources/app/uuid.js +86 -0
- package/dist/lib/resources/app/versions.d.ts +11 -0
- package/dist/lib/resources/app/versions.js +85 -0
- package/dist/lib/resources/app/wait.d.ts +4 -0
- package/dist/lib/resources/app/wait.js +17 -0
- package/dist/lib/resources/backup/flags.d.ts +5 -0
- package/dist/lib/resources/backup/flags.js +4 -0
- package/dist/lib/resources/backup/schedule/flags.d.ts +14 -0
- package/dist/lib/resources/backup/schedule/flags.js +18 -0
- package/dist/lib/resources/conversation/flags.d.ts +6 -0
- package/dist/lib/resources/conversation/flags.js +12 -0
- package/dist/lib/resources/conversation/message_input.d.ts +10 -0
- package/dist/lib/resources/cronjob/destination.d.ts +4 -0
- package/dist/lib/resources/cronjob/destination.js +22 -0
- package/dist/lib/resources/cronjob/flags.d.ts +26 -0
- package/dist/lib/resources/cronjob/flags.js +28 -0
- package/dist/lib/resources/database/common.d.ts +9 -0
- package/dist/lib/resources/database/common.js +17 -0
- package/dist/lib/resources/database/mysql/connect.d.ts +31 -0
- package/dist/lib/resources/database/mysql/connect.js +68 -0
- package/dist/lib/resources/database/mysql/flags.d.ts +16 -0
- package/dist/lib/resources/database/mysql/flags.js +48 -0
- package/dist/lib/resources/database/mysql/temp_user.d.ts +13 -0
- package/dist/lib/resources/database/mysql/temp_user.js +52 -0
- package/dist/lib/resources/database/mysql/user/flags.d.ts +22 -0
- package/dist/lib/resources/database/mysql/user/flags.js +25 -0
- package/dist/lib/resources/database/redis/connect.d.ts +8 -0
- package/dist/lib/resources/database/redis/connect.js +21 -0
- package/dist/lib/resources/database/redis/flags.d.ts +10 -0
- package/dist/lib/resources/database/redis/flags.js +35 -0
- package/dist/lib/resources/domain/dnszone/flags.d.ts +5 -0
- package/dist/lib/resources/domain/dnszone/flags.js +19 -0
- package/dist/lib/resources/domain/dnszone/records.d.ts +18 -0
- package/dist/lib/resources/domain/dnszone/records.js +18 -0
- package/dist/lib/resources/domain/flags.d.ts +5 -0
- package/dist/lib/resources/domain/flags.js +20 -0
- package/dist/lib/resources/login/useOwnAccount.d.ts +11 -0
- package/dist/lib/resources/login/useOwnAccount.js +7 -0
- package/dist/lib/resources/mail/commons.d.ts +2 -0
- package/dist/lib/resources/mail/commons.js +9 -0
- package/dist/lib/resources/mail/flags.d.ts +10 -0
- package/dist/lib/resources/mail/flags.js +22 -0
- package/dist/lib/resources/org/flags.d.ts +6 -0
- package/dist/lib/resources/org/flags.js +10 -0
- package/dist/lib/resources/project/flags.d.ts +19 -0
- package/dist/lib/resources/project/flags.js +78 -0
- package/dist/lib/resources/project/hooks.d.ts +4 -0
- package/dist/lib/resources/project/hooks.js +11 -0
- package/dist/lib/resources/project/ingress.d.ts +2 -0
- package/dist/lib/resources/project/ingress.js +16 -0
- package/dist/lib/resources/project/shortId.d.ts +2 -0
- package/dist/lib/resources/project/shortId.js +11 -0
- package/dist/lib/resources/projectbackup/hooks.d.ts +6 -0
- package/dist/lib/resources/projectbackup/hooks.js +19 -0
- package/dist/lib/resources/server/flags.d.ts +6 -0
- package/dist/lib/resources/server/flags.js +10 -0
- package/dist/lib/resources/sftp/flags.d.ts +22 -0
- package/dist/lib/resources/sftp/flags.js +28 -0
- package/dist/lib/resources/ssh/appinstall.d.ts +3 -0
- package/dist/lib/resources/ssh/appinstall.js +28 -0
- package/dist/lib/resources/ssh/connection.d.ts +22 -0
- package/dist/lib/resources/ssh/connection.js +19 -0
- package/dist/lib/resources/ssh/doc.d.ts +10 -0
- package/dist/lib/resources/ssh/doc.js +14 -0
- package/dist/lib/resources/ssh/exec.d.ts +18 -0
- package/dist/lib/resources/ssh/exec.js +52 -0
- package/dist/lib/resources/ssh/flags.d.ts +22 -0
- package/dist/lib/resources/ssh/flags.js +43 -0
- package/dist/lib/resources/ssh/project.d.ts +3 -0
- package/dist/lib/resources/ssh/project.js +18 -0
- package/dist/lib/resources/ssh/types.d.ts +5 -0
- package/dist/lib/resources/ssh/types.js +1 -0
- package/dist/lib/units/ByteQuantity.d.ts +23 -0
- package/dist/lib/units/ByteQuantity.js +49 -0
- package/dist/lib/units/Duration.d.ts +23 -0
- package/dist/lib/units/Duration.js +57 -0
- package/dist/lib/util/fs/hasBinaryInPath.d.ts +9 -0
- package/dist/lib/util/fs/hasBinaryInPath.js +25 -0
- package/dist/lib/util/fs/isNotFound.d.ts +8 -0
- package/dist/lib/util/fs/isNotFound.js +10 -0
- package/dist/lib/util/fs/pathExists.d.ts +7 -0
- package/dist/lib/util/fs/pathExists.js +20 -0
- package/dist/lib/util/language/articleForWord.d.ts +10 -0
- package/dist/lib/util/language/articleForWord.js +12 -0
- package/dist/lib/util/maybe.d.ts +12 -0
- package/dist/lib/util/maybe.js +17 -0
- package/dist/lib/util/mergeObjects.d.ts +7 -0
- package/dist/lib/util/mergeObjects.js +12 -0
- package/dist/lib/util/password/generatePassword.d.ts +9 -0
- package/dist/lib/util/password/generatePassword.js +12 -0
- package/dist/lib/util/password/generatePasswordWithSpecialChars.d.ts +9 -0
- package/dist/lib/util/password/generatePasswordWithSpecialChars.js +24 -0
- package/dist/lib/wait.d.ts +8 -0
- package/dist/lib/wait.js +24 -0
- package/dist/rendering/Printer.d.ts +12 -0
- package/dist/rendering/Printer.js +24 -0
- package/dist/rendering/formatter/GetFormatter.d.ts +14 -0
- package/dist/rendering/formatter/GetFormatter.js +24 -0
- package/dist/rendering/formatter/ListDateColumnFormatter.d.ts +26 -0
- package/dist/rendering/formatter/ListDateColumnFormatter.js +28 -0
- package/dist/rendering/formatter/ListFormatter.d.ts +29 -0
- package/dist/rendering/formatter/ListFormatter.js +85 -0
- package/dist/rendering/formatter/Table.d.ts +48 -0
- package/dist/rendering/formatter/Table.js +44 -0
- package/dist/rendering/formatter/Table.test.d.ts +1 -0
- package/dist/rendering/formatter/Table.test.js +105 -0
- package/dist/rendering/formatter/TableCSVRenderer.d.ts +12 -0
- package/dist/rendering/formatter/TableCSVRenderer.js +41 -0
- package/dist/rendering/formatter/TableColumnRenderer.d.ts +38 -0
- package/dist/rendering/formatter/TableColumnRenderer.js +128 -0
- package/dist/rendering/formatter/TableRenderer.d.ts +15 -0
- package/dist/rendering/formatter/TableRenderer.js +1 -0
- package/dist/rendering/formatter/printHeader.d.ts +7 -0
- package/dist/rendering/formatter/printHeader.js +12 -0
- package/dist/rendering/formatter/printKeyValues.d.ts +7 -0
- package/dist/rendering/formatter/printKeyValues.js +14 -0
- package/dist/rendering/formatter/smartPad.d.ts +1 -0
- package/dist/rendering/formatter/smartPad.js +8 -0
- package/dist/rendering/formatter/smartPadOrTruncate.d.ts +1 -0
- package/dist/rendering/formatter/smartPadOrTruncate.js +5 -0
- package/dist/rendering/formatter/smartTruncate.d.ts +1 -0
- package/dist/rendering/formatter/smartTruncate.js +9 -0
- package/dist/rendering/formatter/smartTruncate.test.d.ts +1 -0
- package/dist/rendering/formatter/smartTruncate.test.js +13 -0
- package/dist/rendering/lib/getTerminalWidth.d.ts +7 -0
- package/dist/rendering/lib/getTerminalWidth.js +9 -0
- package/dist/rendering/process/components/InteractiveInputDisabled.d.ts +1 -0
- package/dist/rendering/process/components/InteractiveInputDisabled.js +3 -0
- package/dist/rendering/process/components/ProcessConfirmation.d.ts +6 -0
- package/dist/rendering/process/components/ProcessConfirmation.js +12 -0
- package/dist/rendering/process/components/ProcessConfirmationStateSummary.d.ts +5 -0
- package/dist/rendering/process/components/ProcessConfirmationStateSummary.js +18 -0
- package/dist/rendering/process/components/ProcessError.d.ts +4 -0
- package/dist/rendering/process/components/ProcessError.js +10 -0
- package/dist/rendering/process/components/ProcessInput.d.ts +6 -0
- package/dist/rendering/process/components/ProcessInput.js +15 -0
- package/dist/rendering/process/components/ProcessInputStateSummary.d.ts +5 -0
- package/dist/rendering/process/components/ProcessInputStateSummary.js +13 -0
- package/dist/rendering/process/components/ProcessSelect.d.ts +6 -0
- package/dist/rendering/process/components/ProcessSelect.js +63 -0
- package/dist/rendering/process/components/ProcessSelectStateSummary.d.ts +4 -0
- package/dist/rendering/process/components/ProcessSelectStateSummary.js +10 -0
- package/dist/rendering/process/components/ProcessState.d.ts +5 -0
- package/dist/rendering/process/components/ProcessState.js +8 -0
- package/dist/rendering/process/components/ProcessStateIcon.d.ts +5 -0
- package/dist/rendering/process/components/ProcessStateIcon.js +24 -0
- package/dist/rendering/process/components/ProcessStateSummary.d.ts +5 -0
- package/dist/rendering/process/components/ProcessStateSummary.js +34 -0
- package/dist/rendering/process/components/ProcessValidationErrors.d.ts +8 -0
- package/dist/rendering/process/components/ProcessValidationErrors.js +17 -0
- package/dist/rendering/process/process.d.ts +68 -0
- package/dist/rendering/process/process.js +49 -0
- package/dist/rendering/process/process_exec.d.ts +3 -0
- package/dist/rendering/process/process_exec.js +30 -0
- package/dist/rendering/process/process_fancy.d.ts +24 -0
- package/dist/rendering/process/process_fancy.js +166 -0
- package/dist/rendering/process/process_flags.d.ts +20 -0
- package/dist/rendering/process/process_flags.js +29 -0
- package/dist/rendering/process/process_quiet.d.ts +16 -0
- package/dist/rendering/process/process_quiet.js +43 -0
- package/dist/rendering/react/ComponentPrinter.d.ts +7 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationDetails.d.ts +9 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationDetails.js +51 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationStatus.d.ts +10 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationStatus.js +12 -0
- package/dist/rendering/react/components/AppInstallation/AppSystemSoftware.d.ts +7 -0
- package/dist/rendering/react/components/AppInstallation/AppSystemSoftware.js +18 -0
- package/dist/rendering/react/components/BooleanValue.d.ts +4 -0
- package/dist/rendering/react/components/BooleanValue.js +9 -0
- package/dist/rendering/react/components/ByteFormat.d.ts +12 -0
- package/dist/rendering/react/components/ByteFormat.js +11 -0
- package/dist/rendering/react/components/CreatedAt.js +10 -0
- package/dist/rendering/react/components/CronJob/CronJobDetails.d.ts +8 -0
- package/dist/rendering/react/components/CronJob/CronJobDetails.js +48 -0
- package/dist/rendering/react/components/DDEV/DDEVInitSuccess.d.ts +1 -0
- package/dist/rendering/react/components/DDEV/DDEVInitSuccess.js +9 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneDetails.d.ts +7 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneDetails.js +12 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecords.d.ts +7 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecords.js +17 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsA.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsA.js +14 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsAAAA.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsAAAA.js +14 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsMX.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsMX.js +13 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsSRV.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsSRV.js +9 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsTXT.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsTXT.js +9 -0
- package/dist/rendering/react/components/DnsZone/RecordComponent.d.ts +4 -0
- package/dist/rendering/react/components/DnsZone/RecordComponent.js +1 -0
- package/dist/rendering/react/components/DnsZone/RecordSetManagedByMittwald.d.ts +1 -0
- package/dist/rendering/react/components/DnsZone/RecordSetManagedByMittwald.js +3 -0
- package/dist/rendering/react/components/DnsZone/RecordSetValues.d.ts +4 -0
- package/dist/rendering/react/components/DnsZone/RecordSetValues.js +5 -0
- package/dist/rendering/react/components/Domain/DomainBaseDetails.d.ts +7 -0
- package/dist/rendering/react/components/Domain/DomainBaseDetails.js +13 -0
- package/dist/rendering/react/components/Domain/DomainDetails.d.ts +7 -0
- package/dist/rendering/react/components/Domain/DomainDetails.js +7 -0
- package/dist/rendering/react/components/Domain/DomainHandle.d.ts +8 -0
- package/dist/rendering/react/components/Domain/DomainHandle.js +24 -0
- package/dist/rendering/react/components/Error/APIError.d.ts +13 -0
- package/dist/rendering/react/components/Error/APIError.js +41 -0
- package/dist/rendering/react/components/Error/ErrorBox.d.ts +4 -0
- package/dist/rendering/react/components/Error/ErrorBox.js +14 -0
- package/dist/rendering/react/components/Error/ErrorStack.d.ts +4 -0
- package/dist/rendering/react/components/Error/ErrorStack.js +7 -0
- package/dist/rendering/react/components/Error/ErrorText.d.ts +3 -0
- package/dist/rendering/react/components/Error/ErrorText.js +6 -0
- package/dist/rendering/react/components/Error/GenericError.d.ts +12 -0
- package/dist/rendering/react/components/Error/GenericError.js +13 -0
- package/dist/rendering/react/components/Error/InvalidArgsError.d.ts +4 -0
- package/dist/rendering/react/components/Error/InvalidArgsError.js +8 -0
- package/dist/rendering/react/components/Error/InvalidFlagsError.d.ts +6 -0
- package/dist/rendering/react/components/Error/InvalidFlagsError.js +8 -0
- package/dist/rendering/react/components/Error/UnexpectedShortIDPassedErrorBox.d.ts +4 -0
- package/dist/rendering/react/components/Error/UnexpectedShortIDPassedErrorBox.js +7 -0
- package/dist/rendering/react/components/ErrorBoundary.d.ts +20 -0
- package/dist/rendering/react/components/ErrorBoundary.js +32 -0
- package/dist/rendering/react/components/ErrorBox.d.ts +10 -0
- package/dist/rendering/react/components/ErrorBox.js +38 -0
- package/dist/rendering/react/components/FormattedDate.d.ts +8 -0
- package/dist/rendering/react/components/FormattedDate.js +16 -0
- package/dist/rendering/react/components/Ingress/DnsValidationErrors.d.ts +8 -0
- package/dist/rendering/react/components/Ingress/DnsValidationErrors.js +17 -0
- package/dist/rendering/react/components/LocalFilename.d.ts +5 -0
- package/dist/rendering/react/components/LocalFilename.js +14 -0
- package/dist/rendering/react/components/Note.d.ts +10 -0
- package/dist/rendering/react/components/Note.js +8 -0
- package/dist/rendering/react/components/OptionalValue.d.ts +13 -0
- package/dist/rendering/react/components/OptionalValue.js +16 -0
- package/dist/rendering/react/components/Organization/CustomerIDAndNumber.d.ts +7 -0
- package/dist/rendering/react/components/Organization/CustomerIDAndNumber.js +6 -0
- package/dist/rendering/react/components/Organization/OrganizationOrderEligibility.d.ts +6 -0
- package/dist/rendering/react/components/Organization/OrganizationOrderEligibility.js +9 -0
- package/dist/rendering/react/components/Organization/OrganizationOwner.d.ts +7 -0
- package/dist/rendering/react/components/Organization/OrganizationOwner.js +14 -0
- package/dist/rendering/react/components/Project/ProjectSimpleStatus.d.ts +7 -0
- package/dist/rendering/react/components/Project/ProjectSimpleStatus.js +19 -0
- package/dist/rendering/react/components/Project/ProjectStatus.d.ts +18 -0
- package/dist/rendering/react/components/Project/ProjectStatus.js +8 -0
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupDetails.d.ts +7 -0
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupDetails.js +29 -0
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupStatus.d.ts +7 -0
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupStatus.js +8 -0
- package/dist/rendering/react/components/Success.d.ts +10 -0
- package/dist/rendering/react/components/Success.js +8 -0
- package/dist/rendering/react/components/Value.d.ts +6 -0
- package/dist/rendering/react/components/Value.js +8 -0
- package/dist/rendering/react/components/Warning.d.ts +4 -0
- package/dist/rendering/react/components/Warning.js +7 -0
- package/dist/rendering/react/context.d.ts +8 -0
- package/dist/rendering/react/error.d.ts +7 -0
- package/dist/rendering/react/error.js +12 -0
- package/dist/rendering/react/hooks/useIncreaseInkStdoutColumns.d.ts +1 -0
- package/dist/rendering/react/hooks/useIncreaseInkStdoutColumns.js +9 -0
- package/dist/rendering/react/json/context.d.ts +4 -0
- package/dist/rendering/react/lib/observable-value/types.js +1 -0
- package/dist/rendering/setup/FlagSupportedSetup.d.ts +12 -0
- package/dist/rendering/setup/FlagSupportedSetup.js +22 -0
- package/dist/rendering/textformat/formatDate.d.ts +6 -0
- package/dist/rendering/textformat/formatDate.js +40 -0
- package/dist/rendering/textformat/removeLineBreaks.d.ts +6 -0
- package/dist/rendering/textformat/removeLineBreaks.js +8 -0
- package/package.json +117 -54
- package/bin/dev +0 -17
- package/dist/esm/BaseCommand.d.ts +0 -11
- package/dist/esm/BaseCommand.js +0 -44
- package/dist/esm/DeleteBaseCommand.d.ts +0 -12
- package/dist/esm/DeleteBaseCommand.js +0 -43
- package/dist/esm/ExtendedBaseCommand.d.ts +0 -7
- package/dist/esm/ExtendedBaseCommand.js +0 -16
- package/dist/esm/Flags.d.ts +0 -1
- package/dist/esm/Flags.js +0 -1
- package/dist/esm/Formatter.d.ts +0 -18
- package/dist/esm/Formatter.js +0 -33
- package/dist/esm/GetBaseCommand.d.ts +0 -17
- package/dist/esm/GetBaseCommand.js +0 -27
- package/dist/esm/Helpers.d.ts +0 -6
- package/dist/esm/Helpers.js +0 -30
- package/dist/esm/ListBaseCommand.d.ts +0 -20
- package/dist/esm/ListBaseCommand.js +0 -60
- package/dist/esm/Printer.d.ts +0 -15
- package/dist/esm/Printer.js +0 -30
- package/dist/esm/Translator.d.ts +0 -6
- package/dist/esm/Translator.js +0 -64
- package/dist/esm/commands/app/delete.d.ts +0 -12
- package/dist/esm/commands/app/delete.js +0 -45
- package/dist/esm/commands/app/dependency/getSystemsoftware.d.ts +0 -3
- package/dist/esm/commands/app/dependency/getSystemsoftware.js +0 -6
- package/dist/esm/commands/app/dependency/getSystemsoftwareversion.d.ts +0 -3
- package/dist/esm/commands/app/dependency/getSystemsoftwareversion.js +0 -6
- package/dist/esm/commands/app/dependency/listSystemsoftwares.d.ts +0 -9
- package/dist/esm/commands/app/dependency/listSystemsoftwares.js +0 -6
- package/dist/esm/commands/app/dependency/listSystemsoftwareversions.d.ts +0 -9
- package/dist/esm/commands/app/dependency/listSystemsoftwareversions.js +0 -6
- package/dist/esm/commands/app/get.d.ts +0 -3
- package/dist/esm/commands/app/get.js +0 -6
- package/dist/esm/commands/app/install/wordpress.d.ts +0 -14
- package/dist/esm/commands/app/install/wordpress.js +0 -76
- package/dist/esm/commands/app/list.d.ts +0 -16
- package/dist/esm/commands/app/list.js +0 -64
- package/dist/esm/commands/app/versions.d.ts +0 -12
- package/dist/esm/commands/app/versions.js +0 -53
- package/dist/esm/commands/article/get.d.ts +0 -3
- package/dist/esm/commands/article/get.js +0 -6
- package/dist/esm/commands/article/list.d.ts +0 -9
- package/dist/esm/commands/article/list.js +0 -6
- package/dist/esm/commands/context/get.d.ts +0 -10
- package/dist/esm/commands/context/get.js +0 -39
- package/dist/esm/commands/context/set.d.ts +0 -11
- package/dist/esm/commands/context/set.js +0 -37
- package/dist/esm/commands/contract/getBaseItemOfContract.d.ts +0 -3
- package/dist/esm/commands/contract/getBaseItemOfContract.js +0 -6
- package/dist/esm/commands/contract/getDetailOfContract.d.ts +0 -3
- package/dist/esm/commands/contract/getDetailOfContract.js +0 -6
- package/dist/esm/commands/contract/getDetailOfContractByDomain.d.ts +0 -3
- package/dist/esm/commands/contract/getDetailOfContractByDomain.js +0 -6
- package/dist/esm/commands/contract/getDetailOfContractByProject.d.ts +0 -3
- package/dist/esm/commands/contract/getDetailOfContractByProject.js +0 -6
- package/dist/esm/commands/contract/getDetailOfContractByServer.d.ts +0 -3
- package/dist/esm/commands/contract/getDetailOfContractByServer.js +0 -6
- package/dist/esm/commands/contract/getDetailOfContractItem.d.ts +0 -3
- package/dist/esm/commands/contract/getDetailOfContractItem.js +0 -6
- package/dist/esm/commands/contract/getNextTerminationDateForItem.d.ts +0 -3
- package/dist/esm/commands/contract/getNextTerminationDateForItem.js +0 -6
- package/dist/esm/commands/contract/invoiceDetailOfInvoice.d.ts +0 -3
- package/dist/esm/commands/contract/invoiceDetailOfInvoice.js +0 -6
- package/dist/esm/commands/contract/invoiceGetDetailOfInvoiceSettings.d.ts +0 -3
- package/dist/esm/commands/contract/invoiceGetDetailOfInvoiceSettings.js +0 -6
- package/dist/esm/commands/contract/invoiceListCustomerInvoices.d.ts +0 -9
- package/dist/esm/commands/contract/invoiceListCustomerInvoices.js +0 -6
- package/dist/esm/commands/contract/listContracts.d.ts +0 -9
- package/dist/esm/commands/contract/listContracts.js +0 -6
- package/dist/esm/commands/contract/orderGetOrder.d.ts +0 -3
- package/dist/esm/commands/contract/orderGetOrder.js +0 -6
- package/dist/esm/commands/contract/orderListCustomerOrders.d.ts +0 -9
- package/dist/esm/commands/contract/orderListCustomerOrders.js +0 -6
- package/dist/esm/commands/contract/orderListProjectOrders.d.ts +0 -9
- package/dist/esm/commands/contract/orderListProjectOrders.js +0 -6
- package/dist/esm/commands/conversation/categories.d.ts +0 -11
- package/dist/esm/commands/conversation/categories.js +0 -16
- package/dist/esm/commands/conversation/close.d.ts +0 -8
- package/dist/esm/commands/conversation/close.js +0 -24
- package/dist/esm/commands/conversation/create.d.ts +0 -13
- package/dist/esm/commands/conversation/create.js +0 -50
- package/dist/esm/commands/conversation/list.d.ts +0 -11
- package/dist/esm/commands/conversation/list.js +0 -28
- package/dist/esm/commands/conversation/reply.d.ts +0 -13
- package/dist/esm/commands/conversation/reply.js +0 -30
- package/dist/esm/commands/conversation/show.d.ts +0 -8
- package/dist/esm/commands/conversation/show.js +0 -78
- package/dist/esm/commands/conversation/show2.d.ts +0 -11
- package/dist/esm/commands/conversation/show2.js +0 -40
- package/dist/esm/commands/database/mysql/charsets.d.ts +0 -9
- package/dist/esm/commands/database/mysql/charsets.js +0 -6
- package/dist/esm/commands/database/mysql/get.d.ts +0 -3
- package/dist/esm/commands/database/mysql/get.js +0 -6
- package/dist/esm/commands/database/mysql/list.d.ts +0 -11
- package/dist/esm/commands/database/mysql/list.js +0 -54
- package/dist/esm/commands/database/mysql/user/get.d.ts +0 -3
- package/dist/esm/commands/database/mysql/user/get.js +0 -6
- package/dist/esm/commands/database/mysql/user/getMysqlUserPhpMyAdminUrl.d.ts +0 -3
- package/dist/esm/commands/database/mysql/user/getMysqlUserPhpMyAdminUrl.js +0 -7
- package/dist/esm/commands/database/mysql/user/list.d.ts +0 -9
- package/dist/esm/commands/database/mysql/user/list.js +0 -6
- package/dist/esm/commands/database/mysql/versions.d.ts +0 -9
- package/dist/esm/commands/database/mysql/versions.js +0 -6
- package/dist/esm/commands/database/redis/get.d.ts +0 -3
- package/dist/esm/commands/database/redis/get.js +0 -6
- package/dist/esm/commands/database/redis/list.d.ts +0 -9
- package/dist/esm/commands/database/redis/list.js +0 -6
- package/dist/esm/commands/database/redis/versions.d.ts +0 -9
- package/dist/esm/commands/database/redis/versions.js +0 -6
- package/dist/esm/commands/domain/dnszone/get.d.ts +0 -3
- package/dist/esm/commands/domain/dnszone/get.js +0 -6
- package/dist/esm/commands/domain/dnszone/list.d.ts +0 -3
- package/dist/esm/commands/domain/dnszone/list.js +0 -6
- package/dist/esm/commands/domain/get-handle.d.ts +0 -3
- package/dist/esm/commands/domain/get-handle.js +0 -6
- package/dist/esm/commands/domain/get.d.ts +0 -3
- package/dist/esm/commands/domain/get.js +0 -6
- package/dist/esm/commands/domain/list.d.ts +0 -17
- package/dist/esm/commands/domain/list.js +0 -20
- package/dist/esm/commands/domain/ownership/get.d.ts +0 -3
- package/dist/esm/commands/domain/ownership/get.js +0 -6
- package/dist/esm/commands/domain/ownership/list.d.ts +0 -9
- package/dist/esm/commands/domain/ownership/list.js +0 -6
- package/dist/esm/commands/domain/tld/get.d.ts +0 -3
- package/dist/esm/commands/domain/tld/get.js +0 -6
- package/dist/esm/commands/domain/tld/list.d.ts +0 -9
- package/dist/esm/commands/domain/tld/list.js +0 -6
- package/dist/esm/commands/domain/virtualhost/get.d.ts +0 -3
- package/dist/esm/commands/domain/virtualhost/get.js +0 -6
- package/dist/esm/commands/domain/virtualhost/list.d.ts +0 -20
- package/dist/esm/commands/domain/virtualhost/list.js +0 -52
- package/dist/esm/commands/login/reset.d.ts +0 -12
- package/dist/esm/commands/login/reset.js +0 -39
- package/dist/esm/commands/login/status.d.ts +0 -5
- package/dist/esm/commands/login/status.js +0 -29
- package/dist/esm/commands/login/token.d.ts +0 -10
- package/dist/esm/commands/login/token.js +0 -40
- package/dist/esm/commands/mail/address/create.d.ts +0 -20
- package/dist/esm/commands/mail/address/create.js +0 -61
- package/dist/esm/commands/mail/address/delete.d.ts +0 -13
- package/dist/esm/commands/mail/address/delete.js +0 -22
- package/dist/esm/commands/mail/address/get.d.ts +0 -3
- package/dist/esm/commands/mail/address/get.js +0 -6
- package/dist/esm/commands/mail/address/list.d.ts +0 -20
- package/dist/esm/commands/mail/address/list.js +0 -63
- package/dist/esm/commands/mail/deliverybox/get.d.ts +0 -3
- package/dist/esm/commands/mail/deliverybox/get.js +0 -6
- package/dist/esm/commands/mail/deliverybox/list.d.ts +0 -12
- package/dist/esm/commands/mail/deliverybox/list.js +0 -25
- package/dist/esm/commands/org/can-order.d.ts +0 -3
- package/dist/esm/commands/org/can-order.js +0 -6
- package/dist/esm/commands/org/get.d.ts +0 -3
- package/dist/esm/commands/org/get.js +0 -6
- package/dist/esm/commands/org/invite/get.d.ts +0 -3
- package/dist/esm/commands/org/invite/get.js +0 -6
- package/dist/esm/commands/org/invite/list-own.d.ts +0 -9
- package/dist/esm/commands/org/invite/list-own.js +0 -6
- package/dist/esm/commands/org/invite/list.d.ts +0 -9
- package/dist/esm/commands/org/invite/list.js +0 -6
- package/dist/esm/commands/org/list.d.ts +0 -11
- package/dist/esm/commands/org/list.js +0 -28
- package/dist/esm/commands/org/membership/get.d.ts +0 -3
- package/dist/esm/commands/org/membership/get.js +0 -6
- package/dist/esm/commands/org/membership/list-own.d.ts +0 -9
- package/dist/esm/commands/org/membership/list-own.js +0 -6
- package/dist/esm/commands/org/membership/list.d.ts +0 -9
- package/dist/esm/commands/org/membership/list.js +0 -6
- package/dist/esm/commands/project/backup/get.d.ts +0 -3
- package/dist/esm/commands/project/backup/get.js +0 -6
- package/dist/esm/commands/project/backup/list.d.ts +0 -19
- package/dist/esm/commands/project/backup/list.js +0 -32
- package/dist/esm/commands/project/backupschedule/get.d.ts +0 -3
- package/dist/esm/commands/project/backupschedule/get.js +0 -6
- package/dist/esm/commands/project/backupschedule/list.d.ts +0 -13
- package/dist/esm/commands/project/backupschedule/list.js +0 -21
- package/dist/esm/commands/project/create.d.ts +0 -18
- package/dist/esm/commands/project/create.js +0 -65
- package/dist/esm/commands/project/cronjob/execution/get.d.ts +0 -16
- package/dist/esm/commands/project/cronjob/execution/get.js +0 -27
- package/dist/esm/commands/project/cronjob/execution/list.d.ts +0 -18
- package/dist/esm/commands/project/cronjob/execution/list.js +0 -42
- package/dist/esm/commands/project/cronjob/execution/logs.d.ts +0 -15
- package/dist/esm/commands/project/cronjob/execution/logs.js +0 -74
- package/dist/esm/commands/project/cronjob/get.d.ts +0 -3
- package/dist/esm/commands/project/cronjob/get.js +0 -6
- package/dist/esm/commands/project/cronjob/list.d.ts +0 -19
- package/dist/esm/commands/project/cronjob/list.js +0 -45
- package/dist/esm/commands/project/delete.d.ts +0 -14
- package/dist/esm/commands/project/delete.js +0 -20
- package/dist/esm/commands/project/filesystem/usage.d.ts +0 -14
- package/dist/esm/commands/project/filesystem/usage.js +0 -53
- package/dist/esm/commands/project/get.d.ts +0 -14
- package/dist/esm/commands/project/get.js +0 -78
- package/dist/esm/commands/project/invite/get.d.ts +0 -3
- package/dist/esm/commands/project/invite/get.js +0 -6
- package/dist/esm/commands/project/invite/list-own.d.ts +0 -11
- package/dist/esm/commands/project/invite/list-own.js +0 -29
- package/dist/esm/commands/project/invite/list.d.ts +0 -12
- package/dist/esm/commands/project/invite/list.js +0 -32
- package/dist/esm/commands/project/list-react.d.ts +0 -11
- package/dist/esm/commands/project/list-react.js +0 -42
- package/dist/esm/commands/project/list.d.ts +0 -12
- package/dist/esm/commands/project/list.js +0 -33
- package/dist/esm/commands/project/membership/get-own.d.ts +0 -4
- package/dist/esm/commands/project/membership/get-own.js +0 -11
- package/dist/esm/commands/project/membership/get.d.ts +0 -3
- package/dist/esm/commands/project/membership/get.js +0 -6
- package/dist/esm/commands/project/membership/list-own.d.ts +0 -11
- package/dist/esm/commands/project/membership/list-own.js +0 -28
- package/dist/esm/commands/project/membership/list.d.ts +0 -25
- package/dist/esm/commands/project/membership/list.js +0 -46
- package/dist/esm/commands/project/sftp-user/list.d.ts +0 -13
- package/dist/esm/commands/project/sftp-user/list.js +0 -24
- package/dist/esm/commands/project/ssh-user/list.d.ts +0 -13
- package/dist/esm/commands/project/ssh-user/list.js +0 -24
- package/dist/esm/commands/project/ssh.d.ts +0 -8
- package/dist/esm/commands/project/ssh.js +0 -26
- package/dist/esm/commands/project/update.d.ts +0 -8
- package/dist/esm/commands/project/update.js +0 -12
- package/dist/esm/commands/server/get.d.ts +0 -3
- package/dist/esm/commands/server/get.js +0 -6
- package/dist/esm/commands/server/list.d.ts +0 -11
- package/dist/esm/commands/server/list.js +0 -41
- package/dist/esm/commands/user/api-token/create.d.ts +0 -17
- package/dist/esm/commands/user/api-token/create.js +0 -64
- package/dist/esm/commands/user/api-token/get.d.ts +0 -3
- package/dist/esm/commands/user/api-token/get.js +0 -6
- package/dist/esm/commands/user/api-token/list.d.ts +0 -11
- package/dist/esm/commands/user/api-token/list.js +0 -23
- package/dist/esm/commands/user/api-token/revoke.d.ts +0 -13
- package/dist/esm/commands/user/api-token/revoke.js +0 -21
- package/dist/esm/commands/user/get.d.ts +0 -3
- package/dist/esm/commands/user/get.js +0 -6
- package/dist/esm/commands/user/session/get.d.ts +0 -3
- package/dist/esm/commands/user/session/get.js +0 -6
- package/dist/esm/commands/user/session/list.d.ts +0 -11
- package/dist/esm/commands/user/session/list.js +0 -26
- package/dist/esm/commands/user/ssh-key/create.d.ts +0 -13
- package/dist/esm/commands/user/ssh-key/create.js +0 -77
- package/dist/esm/commands/user/ssh-key/delete.d.ts +0 -13
- package/dist/esm/commands/user/ssh-key/delete.js +0 -22
- package/dist/esm/commands/user/ssh-key/get.d.ts +0 -3
- package/dist/esm/commands/user/ssh-key/get.js +0 -6
- package/dist/esm/commands/user/ssh-key/list.d.ts +0 -11
- package/dist/esm/commands/user/ssh-key/list.js +0 -21
- package/dist/esm/generated/app/getApp.d.ts +0 -16
- package/dist/esm/generated/app/getApp.js +0 -25
- package/dist/esm/generated/app/getAppinstallation.d.ts +0 -16
- package/dist/esm/generated/app/getAppinstallation.js +0 -25
- package/dist/esm/generated/app/getAppversion.d.ts +0 -16
- package/dist/esm/generated/app/getAppversion.js +0 -29
- package/dist/esm/generated/app/getSystemsoftware.d.ts +0 -16
- package/dist/esm/generated/app/getSystemsoftware.js +0 -25
- package/dist/esm/generated/app/getSystemsoftwareversion.d.ts +0 -16
- package/dist/esm/generated/app/getSystemsoftwareversion.js +0 -29
- package/dist/esm/generated/app/listAppinstallations.d.ts +0 -13
- package/dist/esm/generated/app/listAppinstallations.js +0 -24
- package/dist/esm/generated/app/listApps.d.ts +0 -13
- package/dist/esm/generated/app/listApps.js +0 -17
- package/dist/esm/generated/app/listAppversions.d.ts +0 -13
- package/dist/esm/generated/app/listAppversions.js +0 -24
- package/dist/esm/generated/app/listSystemsoftwares.d.ts +0 -13
- package/dist/esm/generated/app/listSystemsoftwares.js +0 -17
- package/dist/esm/generated/app/listSystemsoftwareversions.d.ts +0 -13
- package/dist/esm/generated/app/listSystemsoftwareversions.js +0 -24
- package/dist/esm/generated/app/retrieveStatus.d.ts +0 -14
- package/dist/esm/generated/app/retrieveStatus.js +0 -24
- package/dist/esm/generated/article/getArticle.d.ts +0 -16
- package/dist/esm/generated/article/getArticle.js +0 -25
- package/dist/esm/generated/article/listArticles.d.ts +0 -13
- package/dist/esm/generated/article/listArticles.js +0 -17
- package/dist/esm/generated/backup/getProjectBackup.d.ts +0 -16
- package/dist/esm/generated/backup/getProjectBackup.js +0 -25
- package/dist/esm/generated/backup/getProjectBackupSchedule.d.ts +0 -16
- package/dist/esm/generated/backup/getProjectBackupSchedule.js +0 -25
- package/dist/esm/generated/backup/listProjectBackupSchedules.d.ts +0 -13
- package/dist/esm/generated/backup/listProjectBackupSchedules.js +0 -24
- package/dist/esm/generated/backup/listProjectBackups.d.ts +0 -13
- package/dist/esm/generated/backup/listProjectBackups.js +0 -24
- package/dist/esm/generated/contract/getBaseItemOfContract.d.ts +0 -14
- package/dist/esm/generated/contract/getBaseItemOfContract.js +0 -24
- package/dist/esm/generated/contract/getDetailOfContract.d.ts +0 -16
- package/dist/esm/generated/contract/getDetailOfContract.js +0 -25
- package/dist/esm/generated/contract/getDetailOfContractByDomain.d.ts +0 -14
- package/dist/esm/generated/contract/getDetailOfContractByDomain.js +0 -24
- package/dist/esm/generated/contract/getDetailOfContractByProject.d.ts +0 -14
- package/dist/esm/generated/contract/getDetailOfContractByProject.js +0 -24
- package/dist/esm/generated/contract/getDetailOfContractByServer.d.ts +0 -14
- package/dist/esm/generated/contract/getDetailOfContractByServer.js +0 -24
- package/dist/esm/generated/contract/getDetailOfContractItem.d.ts +0 -16
- package/dist/esm/generated/contract/getDetailOfContractItem.js +0 -29
- package/dist/esm/generated/contract/getNextTerminationDateForItem.d.ts +0 -15
- package/dist/esm/generated/contract/getNextTerminationDateForItem.js +0 -28
- package/dist/esm/generated/contract/invoiceDetailOfInvoice.d.ts +0 -16
- package/dist/esm/generated/contract/invoiceDetailOfInvoice.js +0 -29
- package/dist/esm/generated/contract/invoiceGetDetailOfInvoiceSettings.d.ts +0 -14
- package/dist/esm/generated/contract/invoiceGetDetailOfInvoiceSettings.js +0 -24
- package/dist/esm/generated/contract/invoiceListCustomerInvoices.d.ts +0 -13
- package/dist/esm/generated/contract/invoiceListCustomerInvoices.js +0 -24
- package/dist/esm/generated/contract/listContracts.d.ts +0 -13
- package/dist/esm/generated/contract/listContracts.js +0 -24
- package/dist/esm/generated/contract/orderGetOrder.d.ts +0 -16
- package/dist/esm/generated/contract/orderGetOrder.js +0 -25
- package/dist/esm/generated/contract/orderListCustomerOrders.d.ts +0 -13
- package/dist/esm/generated/contract/orderListCustomerOrders.js +0 -24
- package/dist/esm/generated/contract/orderListProjectOrders.d.ts +0 -13
- package/dist/esm/generated/contract/orderListProjectOrders.js +0 -24
- package/dist/esm/generated/conversation/getCategory.d.ts +0 -16
- package/dist/esm/generated/conversation/getCategory.js +0 -25
- package/dist/esm/generated/conversation/getConversation.d.ts +0 -16
- package/dist/esm/generated/conversation/getConversation.js +0 -25
- package/dist/esm/generated/conversation/listCategories.d.ts +0 -13
- package/dist/esm/generated/conversation/listCategories.js +0 -17
- package/dist/esm/generated/conversation/listConversations.d.ts +0 -13
- package/dist/esm/generated/conversation/listConversations.js +0 -17
- package/dist/esm/generated/conversation/listMessagesByConversation.d.ts +0 -13
- package/dist/esm/generated/conversation/listMessagesByConversation.js +0 -24
- package/dist/esm/generated/cronjob/getCronjob.d.ts +0 -16
- package/dist/esm/generated/cronjob/getCronjob.js +0 -25
- package/dist/esm/generated/cronjob/getExecution.d.ts +0 -16
- package/dist/esm/generated/cronjob/getExecution.js +0 -29
- package/dist/esm/generated/customer/getCustomer.d.ts +0 -16
- package/dist/esm/generated/customer/getCustomer.js +0 -25
- package/dist/esm/generated/customer/getCustomerCategory.d.ts +0 -16
- package/dist/esm/generated/customer/getCustomerCategory.js +0 -25
- package/dist/esm/generated/customer/getCustomerInvite.d.ts +0 -16
- package/dist/esm/generated/customer/getCustomerInvite.js +0 -25
- package/dist/esm/generated/customer/getCustomerMembership.d.ts +0 -16
- package/dist/esm/generated/customer/getCustomerMembership.js +0 -25
- package/dist/esm/generated/customer/getCustomerTokenInvite.d.ts +0 -14
- package/dist/esm/generated/customer/getCustomerTokenInvite.js +0 -16
- package/dist/esm/generated/customer/isCustomerLegallyCompetent.d.ts +0 -14
- package/dist/esm/generated/customer/isCustomerLegallyCompetent.js +0 -24
- package/dist/esm/generated/customer/listCustomerInvites.d.ts +0 -13
- package/dist/esm/generated/customer/listCustomerInvites.js +0 -17
- package/dist/esm/generated/customer/listCustomerMemberships.d.ts +0 -13
- package/dist/esm/generated/customer/listCustomerMemberships.js +0 -17
- package/dist/esm/generated/customer/listCustomers.d.ts +0 -13
- package/dist/esm/generated/customer/listCustomers.js +0 -17
- package/dist/esm/generated/customer/listInvitesForCustomer.d.ts +0 -13
- package/dist/esm/generated/customer/listInvitesForCustomer.js +0 -24
- package/dist/esm/generated/customer/listMembershipsForCustomer.d.ts +0 -13
- package/dist/esm/generated/customer/listMembershipsForCustomer.js +0 -24
- package/dist/esm/generated/customer/listOfCustomerCategories.d.ts +0 -13
- package/dist/esm/generated/customer/listOfCustomerCategories.js +0 -17
- package/dist/esm/generated/database/getMysqlDatabase.d.ts +0 -16
- package/dist/esm/generated/database/getMysqlDatabase.js +0 -25
- package/dist/esm/generated/database/getMysqlUser.d.ts +0 -16
- package/dist/esm/generated/database/getMysqlUser.js +0 -25
- package/dist/esm/generated/database/getMysqlUserPhpMyAdminUrl.d.ts +0 -14
- package/dist/esm/generated/database/getMysqlUserPhpMyAdminUrl.js +0 -24
- package/dist/esm/generated/database/getRedisDatabase.d.ts +0 -16
- package/dist/esm/generated/database/getRedisDatabase.js +0 -25
- package/dist/esm/generated/database/listMysqlCharsets.d.ts +0 -13
- package/dist/esm/generated/database/listMysqlCharsets.js +0 -17
- package/dist/esm/generated/database/listMysqlDatabases.d.ts +0 -13
- package/dist/esm/generated/database/listMysqlDatabases.js +0 -24
- package/dist/esm/generated/database/listMysqlUsers.d.ts +0 -13
- package/dist/esm/generated/database/listMysqlUsers.js +0 -24
- package/dist/esm/generated/database/listMysqlVersions.d.ts +0 -13
- package/dist/esm/generated/database/listMysqlVersions.js +0 -17
- package/dist/esm/generated/database/listRedisDatabases.d.ts +0 -13
- package/dist/esm/generated/database/listRedisDatabases.js +0 -24
- package/dist/esm/generated/database/listRedisVersions.d.ts +0 -13
- package/dist/esm/generated/database/listRedisVersions.js +0 -17
- package/dist/esm/generated/domain/dnsZoneGetSpecific.d.ts +0 -16
- package/dist/esm/generated/domain/dnsZoneGetSpecific.js +0 -25
- package/dist/esm/generated/domain/dnsZonesForProject.d.ts +0 -14
- package/dist/esm/generated/domain/dnsZonesForProject.js +0 -24
- package/dist/esm/generated/domain/getDomain.d.ts +0 -16
- package/dist/esm/generated/domain/getDomain.js +0 -25
- package/dist/esm/generated/domain/getHandleFields.d.ts +0 -16
- package/dist/esm/generated/domain/getHandleFields.js +0 -25
- package/dist/esm/generated/domain/getSpecificDomainOwnership.d.ts +0 -16
- package/dist/esm/generated/domain/getSpecificDomainOwnership.js +0 -25
- package/dist/esm/generated/domain/getToplevelDomain.d.ts +0 -16
- package/dist/esm/generated/domain/getToplevelDomain.js +0 -25
- package/dist/esm/generated/domain/ingressGetSpecific.d.ts +0 -16
- package/dist/esm/generated/domain/ingressGetSpecific.js +0 -25
- package/dist/esm/generated/domain/listDomainOwnerships.d.ts +0 -13
- package/dist/esm/generated/domain/listDomainOwnerships.js +0 -24
- package/dist/esm/generated/domain/listToplevelDomains.d.ts +0 -13
- package/dist/esm/generated/domain/listToplevelDomains.js +0 -17
- package/dist/esm/generated/file/getFile.d.ts +0 -16
- package/dist/esm/generated/file/getFile.js +0 -25
- package/dist/esm/generated/file/getFileMeta.d.ts +0 -14
- package/dist/esm/generated/file/getFileMeta.js +0 -24
- package/dist/esm/generated/file/getFileTokenRules.d.ts +0 -16
- package/dist/esm/generated/file/getFileTokenRules.js +0 -25
- package/dist/esm/generated/file/getFileTypeRules.d.ts +0 -16
- package/dist/esm/generated/file/getFileTypeRules.js +0 -25
- package/dist/esm/generated/mail/deliveryboxGetSpecific.d.ts +0 -16
- package/dist/esm/generated/mail/deliveryboxGetSpecific.js +0 -25
- package/dist/esm/generated/mail/deliveryboxList.d.ts +0 -13
- package/dist/esm/generated/mail/deliveryboxList.js +0 -24
- package/dist/esm/generated/mail/mailaddressGetSpecific.d.ts +0 -16
- package/dist/esm/generated/mail/mailaddressGetSpecific.js +0 -25
- package/dist/esm/generated/mail/mailaddressList.d.ts +0 -13
- package/dist/esm/generated/mail/mailaddressList.js +0 -24
- package/dist/esm/generated/mail/projectsettingGetSpecific.d.ts +0 -14
- package/dist/esm/generated/mail/projectsettingGetSpecific.js +0 -24
- package/dist/esm/generated/notification/newsletterGetInfo.d.ts +0 -14
- package/dist/esm/generated/notification/newsletterGetInfo.js +0 -16
- package/dist/esm/generated/notification/scountUnreadNotifications.d.ts +0 -14
- package/dist/esm/generated/notification/scountUnreadNotifications.js +0 -16
- package/dist/esm/generated/notification/slistNotifications.d.ts +0 -13
- package/dist/esm/generated/notification/slistNotifications.js +0 -17
- package/dist/esm/generated/project/getProject.d.ts +0 -16
- package/dist/esm/generated/project/getProject.js +0 -25
- package/dist/esm/generated/project/getProjectInvite.d.ts +0 -16
- package/dist/esm/generated/project/getProjectInvite.js +0 -25
- package/dist/esm/generated/project/getProjectMembership.d.ts +0 -16
- package/dist/esm/generated/project/getProjectMembership.js +0 -25
- package/dist/esm/generated/project/getProjectTokenInvite.d.ts +0 -14
- package/dist/esm/generated/project/getProjectTokenInvite.js +0 -16
- package/dist/esm/generated/project/getSelfMembershipForProject.d.ts +0 -14
- package/dist/esm/generated/project/getSelfMembershipForProject.js +0 -24
- package/dist/esm/generated/project/getServer.d.ts +0 -16
- package/dist/esm/generated/project/getServer.js +0 -25
- package/dist/esm/generated/project/listInvitesForProject.d.ts +0 -13
- package/dist/esm/generated/project/listInvitesForProject.js +0 -24
- package/dist/esm/generated/project/listMembershipsForProject.d.ts +0 -13
- package/dist/esm/generated/project/listMembershipsForProject.js +0 -24
- package/dist/esm/generated/project/listProjectInvites.d.ts +0 -13
- package/dist/esm/generated/project/listProjectInvites.js +0 -17
- package/dist/esm/generated/project/listProjectMemberships.d.ts +0 -13
- package/dist/esm/generated/project/listProjectMemberships.js +0 -17
- package/dist/esm/generated/project/listProjects.d.ts +0 -13
- package/dist/esm/generated/project/listProjects.js +0 -17
- package/dist/esm/generated/project/listServers.d.ts +0 -13
- package/dist/esm/generated/project/listServers.js +0 -17
- package/dist/esm/generated/sshsftpUser/sftpUserGetSftpUser.d.ts +0 -16
- package/dist/esm/generated/sshsftpUser/sftpUserGetSftpUser.js +0 -25
- package/dist/esm/generated/sshsftpUser/sftpUserListSftpUsers.d.ts +0 -13
- package/dist/esm/generated/sshsftpUser/sftpUserListSftpUsers.js +0 -24
- package/dist/esm/generated/sshsftpUser/sshUserGetSshUser.d.ts +0 -16
- package/dist/esm/generated/sshsftpUser/sshUserGetSshUser.js +0 -25
- package/dist/esm/generated/sshsftpUser/sshUserListSshUsers.d.ts +0 -13
- package/dist/esm/generated/sshsftpUser/sshUserListSshUsers.js +0 -24
- package/dist/esm/generated/user/getApiToken.d.ts +0 -16
- package/dist/esm/generated/user/getApiToken.js +0 -25
- package/dist/esm/generated/user/getEmail.d.ts +0 -14
- package/dist/esm/generated/user/getEmail.js +0 -16
- package/dist/esm/generated/user/getMfaStatus.d.ts +0 -14
- package/dist/esm/generated/user/getMfaStatus.js +0 -16
- package/dist/esm/generated/user/getOwnProfile.d.ts +0 -14
- package/dist/esm/generated/user/getOwnProfile.js +0 -16
- package/dist/esm/generated/user/getPasswordUpdatedAt.d.ts +0 -14
- package/dist/esm/generated/user/getPasswordUpdatedAt.js +0 -16
- package/dist/esm/generated/user/getPersonalizedSettings.d.ts +0 -14
- package/dist/esm/generated/user/getPersonalizedSettings.js +0 -24
- package/dist/esm/generated/user/getSession.d.ts +0 -16
- package/dist/esm/generated/user/getSession.js +0 -25
- package/dist/esm/generated/user/getSshKey.d.ts +0 -16
- package/dist/esm/generated/user/getSshKey.js +0 -25
- package/dist/esm/generated/user/getUser.d.ts +0 -14
- package/dist/esm/generated/user/getUser.js +0 -16
- package/dist/esm/generated/user/listApiTokens.d.ts +0 -13
- package/dist/esm/generated/user/listApiTokens.js +0 -17
- package/dist/esm/generated/user/listFeedback.d.ts +0 -13
- package/dist/esm/generated/user/listFeedback.js +0 -24
- package/dist/esm/generated/user/listSessions.d.ts +0 -13
- package/dist/esm/generated/user/listSessions.js +0 -17
- package/dist/esm/generated/user/listSshKeys.d.ts +0 -13
- package/dist/esm/generated/user/listSshKeys.js +0 -17
- package/dist/esm/generated/user/supportCodeRequest.d.ts +0 -14
- package/dist/esm/generated/user/supportCodeRequest.js +0 -16
- package/dist/esm/lib/app/appHelpers.d.ts +0 -4
- package/dist/esm/lib/app/appHelpers.js +0 -43
- package/dist/esm/lib/app/appVersionHelpers.d.ts +0 -5
- package/dist/esm/lib/app/appVersionHelpers.js +0 -35
- package/dist/esm/lib/bytes.d.ts +0 -1
- package/dist/esm/lib/bytes.js +0 -16
- package/dist/esm/lib/context.d.ts +0 -16
- package/dist/esm/lib/context.js +0 -42
- package/dist/esm/lib/context_flags.d.ts +0 -18
- package/dist/esm/lib/context_flags.js +0 -42
- package/dist/esm/lib/conversation/message_input.d.ts +0 -10
- package/dist/esm/lib/handleError.d.ts +0 -4
- package/dist/esm/lib/handleError.js +0 -17
- package/dist/esm/lib/mergeObjects.d.ts +0 -1
- package/dist/esm/lib/mergeObjects.js +0 -6
- package/dist/esm/lib/notify.d.ts +0 -2
- package/dist/esm/lib/notify.js +0 -5
- package/dist/esm/lib/project/flags.d.ts +0 -5
- package/dist/esm/lib/project/flags.js +0 -3
- package/dist/esm/lib/server/flags.d.ts +0 -5
- package/dist/esm/lib/server/flags.js +0 -3
- package/dist/esm/lib/viewhelpers/date.d.ts +0 -5
- package/dist/esm/lib/viewhelpers/date.js +0 -23
- package/dist/esm/lib/viewhelpers/removeLineBreaks.d.ts +0 -1
- package/dist/esm/lib/viewhelpers/removeLineBreaks.js +0 -1
- package/dist/esm/lib/viewhelpers/size.d.ts +0 -1
- package/dist/esm/lib/viewhelpers/size.js +0 -4
- package/dist/esm/lib/viewhelpers/tui.d.ts +0 -2
- package/dist/esm/lib/viewhelpers/tui.js +0 -13
- package/dist/esm/rendering/lib/getTerminalWidth.d.ts +0 -1
- package/dist/esm/rendering/lib/getTerminalWidth.js +0 -2
- package/dist/esm/rendering/react/ComponentPrinter.d.ts +0 -7
- package/dist/esm/rendering/react/ExecRenderBaseCommand.d.ts +0 -8
- package/dist/esm/rendering/react/ExecRenderBaseCommand.js +0 -15
- package/dist/esm/rendering/react/RenderBaseCommand.d.ts +0 -19
- package/dist/esm/rendering/react/RenderBaseCommand.js +0 -45
- package/dist/esm/rendering/react/components/ByteFormat.d.ts +0 -4
- package/dist/esm/rendering/react/components/ByteFormat.js +0 -12
- package/dist/esm/rendering/react/components/Conversation/ConversationMessage.d.ts +0 -8
- package/dist/esm/rendering/react/components/Conversation/ConversationMessage.js +0 -12
- package/dist/esm/rendering/react/components/Conversation/ConversationMessages.d.ts +0 -8
- package/dist/esm/rendering/react/components/Conversation/ConversationMessages.js +0 -13
- package/dist/esm/rendering/react/components/Conversation/ConversationMeta.d.ts +0 -6
- package/dist/esm/rendering/react/components/Conversation/ConversationMeta.js +0 -25
- package/dist/esm/rendering/react/components/Conversation/ConversationStatusUpdate.d.ts +0 -8
- package/dist/esm/rendering/react/components/Conversation/ConversationStatusUpdate.js +0 -6
- package/dist/esm/rendering/react/components/CreatedAt.js +0 -10
- package/dist/esm/rendering/react/components/FormattedDate.d.ts +0 -7
- package/dist/esm/rendering/react/components/FormattedDate.js +0 -18
- package/dist/esm/rendering/react/components/Note.d.ts +0 -10
- package/dist/esm/rendering/react/components/Note.js +0 -8
- package/dist/esm/rendering/react/components/ProjectReadiness.d.ts +0 -7
- package/dist/esm/rendering/react/components/ProjectReadiness.js +0 -16
- package/dist/esm/rendering/react/components/ProjectStatus.d.ts +0 -7
- package/dist/esm/rendering/react/components/ProjectStatus.js +0 -8
- package/dist/esm/rendering/react/components/Success.d.ts +0 -9
- package/dist/esm/rendering/react/components/Success.js +0 -6
- package/dist/esm/rendering/react/components/Table/BodyCell.d.ts +0 -7
- package/dist/esm/rendering/react/components/Table/BodyCell.js +0 -7
- package/dist/esm/rendering/react/components/Table/BodyRow.d.ts +0 -7
- package/dist/esm/rendering/react/components/Table/BodyRow.js +0 -7
- package/dist/esm/rendering/react/components/Table/BodyRows.d.ts +0 -7
- package/dist/esm/rendering/react/components/Table/BodyRows.js +0 -6
- package/dist/esm/rendering/react/components/Table/CellData.d.ts +0 -6
- package/dist/esm/rendering/react/components/Table/CellData.js +0 -32
- package/dist/esm/rendering/react/components/Table/CellLayout.d.ts +0 -8
- package/dist/esm/rendering/react/components/Table/CellLayout.js +0 -17
- package/dist/esm/rendering/react/components/Table/HeaderCell.d.ts +0 -7
- package/dist/esm/rendering/react/components/Table/HeaderCell.js +0 -7
- package/dist/esm/rendering/react/components/Table/HeaderRow.d.ts +0 -8
- package/dist/esm/rendering/react/components/Table/HeaderRow.js +0 -7
- package/dist/esm/rendering/react/components/Table/RowLayout.d.ts +0 -5
- package/dist/esm/rendering/react/components/Table/RowLayout.js +0 -3
- package/dist/esm/rendering/react/components/Table/Table.d.ts +0 -10
- package/dist/esm/rendering/react/components/Table/Table.js +0 -21
- package/dist/esm/rendering/react/components/Table/context.d.ts +0 -9
- package/dist/esm/rendering/react/components/Table/context.js +0 -7
- package/dist/esm/rendering/react/components/Table/index.d.ts +0 -1
- package/dist/esm/rendering/react/components/Table/index.js +0 -1
- package/dist/esm/rendering/react/components/Table/model/Cell.d.ts +0 -19
- package/dist/esm/rendering/react/components/Table/model/Cell.js +0 -24
- package/dist/esm/rendering/react/components/Table/model/Column.d.ts +0 -16
- package/dist/esm/rendering/react/components/Table/model/Column.js +0 -35
- package/dist/esm/rendering/react/components/Table/model/ColumnName.d.ts +0 -7
- package/dist/esm/rendering/react/components/Table/model/ColumnName.js +0 -17
- package/dist/esm/rendering/react/components/Table/model/ColumnOptions.d.ts +0 -25
- package/dist/esm/rendering/react/components/Table/model/ColumnOptions.js +0 -41
- package/dist/esm/rendering/react/components/Table/model/Row.d.ts +0 -14
- package/dist/esm/rendering/react/components/Table/model/Row.js +0 -37
- package/dist/esm/rendering/react/components/Table/model/Table.d.ts +0 -19
- package/dist/esm/rendering/react/components/Table/model/Table.js +0 -48
- package/dist/esm/rendering/react/components/Table/model/index.d.ts +0 -5
- package/dist/esm/rendering/react/components/Table/model/index.js +0 -5
- package/dist/esm/rendering/react/components/Value.d.ts +0 -5
- package/dist/esm/rendering/react/components/Value.js +0 -8
- package/dist/esm/rendering/react/components/WithoutLineBreaks.d.ts +0 -2
- package/dist/esm/rendering/react/components/WithoutLineBreaks.js +0 -7
- package/dist/esm/rendering/react/context.d.ts +0 -9
- package/dist/esm/rendering/react/hooks/useMyUserProfile.d.ts +0 -2
- package/dist/esm/rendering/react/hooks/useMyUserProfile.js +0 -11
- package/dist/esm/rendering/react/json/context.d.ts +0 -5
- package/dist/esm/rendering/react/measure/MeasureChildren.d.ts +0 -8
- package/dist/esm/rendering/react/measure/MeasureChildren.js +0 -19
- package/dist/esm/rendering/react/measure/MeasureContextProvider.d.ts +0 -2
- package/dist/esm/rendering/react/measure/MeasureContextProvider.js +0 -10
- package/dist/esm/rendering/react/measure/MeasureRenderer.d.ts +0 -2
- package/dist/esm/rendering/react/measure/MeasureRenderer.js +0 -22
- package/dist/esm/rendering/react/measure/context.d.ts +0 -18
- package/dist/esm/rendering/react/measure/context.js +0 -48
- package/dist/esm/rendering/react/process.d.ts +0 -42
- package/dist/esm/rendering/react/process.js +0 -24
- package/dist/esm/rendering/react/process_fancy.d.ts +0 -28
- package/dist/esm/rendering/react/process_fancy.js +0 -213
- package/dist/esm/rendering/react/process_flags.d.ts +0 -9
- package/dist/esm/rendering/react/process_flags.js +0 -15
- package/dist/esm/rendering/react/process_quiet.d.ts +0 -12
- package/dist/esm/rendering/react/process_quiet.js +0 -29
- package/dist/esm/rendering/setup/FlagSupportedSetup.d.ts +0 -15
- package/dist/esm/rendering/setup/FlagSupportedSetup.js +0 -22
- package/dist/esm/rendering/setup/TableRenderSetup.d.ts +0 -11
- package/dist/esm/rendering/setup/TableRenderSetup.js +0 -24
- package/dist/esm/rendering/setup/usePromiseSetup.d.ts +0 -12
- package/dist/esm/rendering/setup/usePromiseSetup.js +0 -11
- package/dist/esm/types.d.ts +0 -8
- /package/bin/{mw.cmd → run.cmd} +0 -0
- /package/dist/{esm/rendering/react/lib/observable-value/types.js → commands/conversation/show.test.d.ts} +0 -0
- /package/dist/{esm/types.js → commands/database/mysql/create.test.d.ts} +0 -0
- /package/dist/{esm/lib → lib/resources}/conversation/message_input.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/ComponentPrinter.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/CreatedAt.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Filename.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Filename.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Header.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Header.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/IDAndShortID.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/IDAndShortID.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/JSONView.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/JSONView.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ListItem.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ListItem.js +0 -0
- /package/dist/{esm/rendering/react/components → rendering/react/components/Project}/ProjectEnabled.d.ts +0 -0
- /package/dist/{esm/rendering/react/components → rendering/react/components/Project}/ProjectEnabled.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Render.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Render.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/SingleResult.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/SingleResult.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/context.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/JsonCollectionProvider.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/JsonCollectionProvider.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/JsonRenderer.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/JsonRenderer.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/RenderJson.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/RenderJson.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/context.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/lib/unpackJsonData.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/json/lib/unpackJsonData.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/lib/observable-value/ObservableValue.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/lib/observable-value/ObservableValue.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/lib/observable-value/types.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/lib/observable-value/useWatchObservableValue.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/lib/observable-value/useWatchObservableValue.js +0 -0
package/README.md
CHANGED
|
@@ -1,2469 +1,127 @@
|
|
|
1
1
|
<center>
|
|
2
2
|
|
|
3
|
-
# `mw`
|
|
3
|
+
# `mw` — the mittwald command-line tool
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
</center>
|
|
8
8
|
|
|
9
|
-
> ⚠️ **EXPERIMENTAL -- STABILITY NOTICE**
|
|
10
|
-
>
|
|
11
|
-
> This project is **experimental**, and we do not offer any stability guarantees
|
|
12
|
-
> of any kind for the command structure, input flags and arguments and output
|
|
13
|
-
> formats. We welcome you to give this project a try and we're looking forward
|
|
14
|
-
> for any feedback on this project in this stage of development. However, please
|
|
15
|
-
> do not rely on any inputs or outputs of this project to remain stable.
|
|
16
|
-
|
|
17
9
|
## Synposis
|
|
18
10
|
|
|
19
11
|
`mw` is the command-line tool for interacting with the mittwald mStudio v2 API.
|
|
20
12
|
|
|
21
|
-
##
|
|
22
|
-
|
|
23
|
-
Have a look at the
|
|
24
|
-
[documentation](https://developer.mittwald.de/docs/v2/api/sdks/cli/) for
|
|
25
|
-
installation instructions.
|
|
26
|
-
|
|
27
|
-
## Usage
|
|
28
|
-
|
|
29
|
-
<!-- usage -->
|
|
30
|
-
|
|
31
|
-
```sh-session
|
|
32
|
-
$ npm install -g @mittwald/cli
|
|
33
|
-
$ mw COMMAND
|
|
34
|
-
running command...
|
|
35
|
-
$ mw (--version)
|
|
36
|
-
@mittwald/cli/1.0.0 darwin-arm64 node-v18.11.0
|
|
37
|
-
$ mw --help [COMMAND]
|
|
38
|
-
USAGE
|
|
39
|
-
$ mw COMMAND
|
|
40
|
-
...
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
<!-- usagestop -->
|
|
44
|
-
|
|
45
|
-
## Commands
|
|
46
|
-
|
|
47
|
-
<!-- commands -->
|
|
48
|
-
|
|
49
|
-
- [`mw app delete ID`](#mw-app-delete-id)
|
|
50
|
-
- [`mw app dependency getSystemsoftware SYSTEMSOFTWAREID`](#mw-app-dependency-getsystemsoftware-systemsoftwareid)
|
|
51
|
-
- [`mw app dependency getSystemsoftwareversion SYSTEMSOFTWAREVERSIONID`](#mw-app-dependency-getsystemsoftwareversion-systemsoftwareversionid)
|
|
52
|
-
- [`mw app dependency listSystemsoftwares`](#mw-app-dependency-listsystemsoftwares)
|
|
53
|
-
- [`mw app dependency listSystemsoftwareversions`](#mw-app-dependency-listsystemsoftwareversions)
|
|
54
|
-
- [`mw app get APPINSTALLATIONID`](#mw-app-get-appinstallationid)
|
|
55
|
-
- [`mw app install wordpress`](#mw-app-install-wordpress)
|
|
56
|
-
- [`mw app list`](#mw-app-list)
|
|
57
|
-
- [`mw app versions [APP]`](#mw-app-versions-app)
|
|
58
|
-
- [`mw article get ARTICLEID`](#mw-article-get-articleid)
|
|
59
|
-
- [`mw article list`](#mw-article-list)
|
|
60
|
-
- [`mw contract getBaseItemOfContract`](#mw-contract-getbaseitemofcontract)
|
|
61
|
-
- [`mw contract getDetailOfContract CONTRACTID`](#mw-contract-getdetailofcontract-contractid)
|
|
62
|
-
- [`mw contract getDetailOfContractByDomain`](#mw-contract-getdetailofcontractbydomain)
|
|
63
|
-
- [`mw contract getDetailOfContractByProject`](#mw-contract-getdetailofcontractbyproject)
|
|
64
|
-
- [`mw contract getDetailOfContractByServer`](#mw-contract-getdetailofcontractbyserver)
|
|
65
|
-
- [`mw contract getDetailOfContractItem CONTRACTITEMID`](#mw-contract-getdetailofcontractitem-contractitemid)
|
|
66
|
-
- [`mw contract getNextTerminationDateForItem`](#mw-contract-getnextterminationdateforitem)
|
|
67
|
-
- [`mw contract invoiceDetailOfInvoice INVOICEID`](#mw-contract-invoicedetailofinvoice-invoiceid)
|
|
68
|
-
- [`mw contract invoiceGetDetailOfInvoiceSettings`](#mw-contract-invoicegetdetailofinvoicesettings)
|
|
69
|
-
- [`mw contract invoiceListCustomerInvoices`](#mw-contract-invoicelistcustomerinvoices)
|
|
70
|
-
- [`mw contract listContracts`](#mw-contract-listcontracts)
|
|
71
|
-
- [`mw contract orderGetOrder ORDERID`](#mw-contract-ordergetorder-orderid)
|
|
72
|
-
- [`mw contract orderListCustomerOrders`](#mw-contract-orderlistcustomerorders)
|
|
73
|
-
- [`mw contract orderListProjectOrders`](#mw-contract-orderlistprojectorders)
|
|
74
|
-
- [`mw conversation categories`](#mw-conversation-categories)
|
|
75
|
-
- [`mw conversation close ID`](#mw-conversation-close-id)
|
|
76
|
-
- [`mw conversation create`](#mw-conversation-create)
|
|
77
|
-
- [`mw conversation list`](#mw-conversation-list)
|
|
78
|
-
- [`mw conversation reply ID`](#mw-conversation-reply-id)
|
|
79
|
-
- [`mw conversation show ID`](#mw-conversation-show-id)
|
|
80
|
-
- [`mw conversation show2 CONVERSATIONID`](#mw-conversation-show2-conversationid)
|
|
81
|
-
- [`mw database mysql charsets`](#mw-database-mysql-charsets)
|
|
82
|
-
- [`mw database mysql get ID`](#mw-database-mysql-get-id)
|
|
83
|
-
- [`mw database mysql list`](#mw-database-mysql-list)
|
|
84
|
-
- [`mw database mysql user get ID`](#mw-database-mysql-user-get-id)
|
|
85
|
-
- [`mw database mysql user getMysqlUserPhpMyAdminUrl`](#mw-database-mysql-user-getmysqluserphpmyadminurl)
|
|
86
|
-
- [`mw database mysql user list`](#mw-database-mysql-user-list)
|
|
87
|
-
- [`mw database mysql versions`](#mw-database-mysql-versions)
|
|
88
|
-
- [`mw database redis get ID`](#mw-database-redis-get-id)
|
|
89
|
-
- [`mw database redis list`](#mw-database-redis-list)
|
|
90
|
-
- [`mw database redis versions`](#mw-database-redis-versions)
|
|
91
|
-
- [`mw domain dnszone get ZONEID`](#mw-domain-dnszone-get-zoneid)
|
|
92
|
-
- [`mw domain dnszone list`](#mw-domain-dnszone-list)
|
|
93
|
-
- [`mw domain get DOMAINID`](#mw-domain-get-domainid)
|
|
94
|
-
- [`mw domain get-handle DOMAINNAME`](#mw-domain-get-handle-domainname)
|
|
95
|
-
- [`mw domain list`](#mw-domain-list)
|
|
96
|
-
- [`mw domain ownership get DOMAINOWNERSHIPID`](#mw-domain-ownership-get-domainownershipid)
|
|
97
|
-
- [`mw domain ownership list`](#mw-domain-ownership-list)
|
|
98
|
-
- [`mw domain tld get TLD`](#mw-domain-tld-get-tld)
|
|
99
|
-
- [`mw domain tld list`](#mw-domain-tld-list)
|
|
100
|
-
- [`mw domain virtualhost get INGRESSID`](#mw-domain-virtualhost-get-ingressid)
|
|
101
|
-
- [`mw domain virtualhost list`](#mw-domain-virtualhost-list)
|
|
102
|
-
- [`mw help [COMMANDS]`](#mw-help-commands)
|
|
103
|
-
- [`mw login status`](#mw-login-status)
|
|
104
|
-
- [`mw login token`](#mw-login-token)
|
|
105
|
-
- [`mw mail address create`](#mw-mail-address-create)
|
|
106
|
-
- [`mw mail address delete ID`](#mw-mail-address-delete-id)
|
|
107
|
-
- [`mw mail address get ID`](#mw-mail-address-get-id)
|
|
108
|
-
- [`mw mail address list`](#mw-mail-address-list)
|
|
109
|
-
- [`mw mail deliverybox get ID`](#mw-mail-deliverybox-get-id)
|
|
110
|
-
- [`mw mail deliverybox list`](#mw-mail-deliverybox-list)
|
|
111
|
-
- [`mw org can-order`](#mw-org-can-order)
|
|
112
|
-
- [`mw org get CUSTOMERID`](#mw-org-get-customerid)
|
|
113
|
-
- [`mw org invite get INVITEID`](#mw-org-invite-get-inviteid)
|
|
114
|
-
- [`mw org invite list`](#mw-org-invite-list)
|
|
115
|
-
- [`mw org invite list-own`](#mw-org-invite-list-own)
|
|
116
|
-
- [`mw org list`](#mw-org-list)
|
|
117
|
-
- [`mw org membership get MEMBERSHIPID`](#mw-org-membership-get-membershipid)
|
|
118
|
-
- [`mw org membership list`](#mw-org-membership-list)
|
|
119
|
-
- [`mw org membership list-own`](#mw-org-membership-list-own)
|
|
120
|
-
- [`mw project backup get PROJECTBACKUPID`](#mw-project-backup-get-projectbackupid)
|
|
121
|
-
- [`mw project backup list`](#mw-project-backup-list)
|
|
122
|
-
- [`mw project backupschedule get PROJECTBACKUPSCHEDULEID`](#mw-project-backupschedule-get-projectbackupscheduleid)
|
|
123
|
-
- [`mw project backupschedule list`](#mw-project-backupschedule-list)
|
|
124
|
-
- [`mw project create`](#mw-project-create)
|
|
125
|
-
- [`mw project cronjob execution get EXECUTIONID`](#mw-project-cronjob-execution-get-executionid)
|
|
126
|
-
- [`mw project cronjob execution list`](#mw-project-cronjob-execution-list)
|
|
127
|
-
- [`mw project cronjob get CRONJOBID`](#mw-project-cronjob-get-cronjobid)
|
|
128
|
-
- [`mw project cronjob list`](#mw-project-cronjob-list)
|
|
129
|
-
- [`mw project delete ID`](#mw-project-delete-id)
|
|
130
|
-
- [`mw project filesystem directories`](#mw-project-filesystem-directories)
|
|
131
|
-
- [`mw project filesystem file-content`](#mw-project-filesystem-file-content)
|
|
132
|
-
- [`mw project filesystem files PROJECTID`](#mw-project-filesystem-files-projectid)
|
|
133
|
-
- [`mw project filesystem usage`](#mw-project-filesystem-usage)
|
|
134
|
-
- [`mw project get ID`](#mw-project-get-id)
|
|
135
|
-
- [`mw project invite get INVITEID`](#mw-project-invite-get-inviteid)
|
|
136
|
-
- [`mw project invite list`](#mw-project-invite-list)
|
|
137
|
-
- [`mw project invite list-own`](#mw-project-invite-list-own)
|
|
138
|
-
- [`mw project list`](#mw-project-list)
|
|
139
|
-
- [`mw project list1`](#mw-project-list1)
|
|
140
|
-
- [`mw project list2`](#mw-project-list2)
|
|
141
|
-
- [`mw project membership get MEMBERSHIPID`](#mw-project-membership-get-membershipid)
|
|
142
|
-
- [`mw project membership get-own`](#mw-project-membership-get-own)
|
|
143
|
-
- [`mw project membership list`](#mw-project-membership-list)
|
|
144
|
-
- [`mw project membership list-own`](#mw-project-membership-list-own)
|
|
145
|
-
- [`mw project sftp-user list`](#mw-project-sftp-user-list)
|
|
146
|
-
- [`mw project ssh ID`](#mw-project-ssh-id)
|
|
147
|
-
- [`mw project ssh-user list`](#mw-project-ssh-user-list)
|
|
148
|
-
- [`mw project update ID`](#mw-project-update-id)
|
|
149
|
-
- [`mw server get SERVERID`](#mw-server-get-serverid)
|
|
150
|
-
- [`mw server list`](#mw-server-list)
|
|
151
|
-
- [`mw user api-token create`](#mw-user-api-token-create)
|
|
152
|
-
- [`mw user api-token get APITOKENID`](#mw-user-api-token-get-apitokenid)
|
|
153
|
-
- [`mw user api-token list`](#mw-user-api-token-list)
|
|
154
|
-
- [`mw user api-token revoke ID`](#mw-user-api-token-revoke-id)
|
|
155
|
-
- [`mw user get`](#mw-user-get)
|
|
156
|
-
- [`mw user session get TOKENID`](#mw-user-session-get-tokenid)
|
|
157
|
-
- [`mw user session list`](#mw-user-session-list)
|
|
158
|
-
- [`mw user ssh-key create`](#mw-user-ssh-key-create)
|
|
159
|
-
- [`mw user ssh-key delete ID`](#mw-user-ssh-key-delete-id)
|
|
160
|
-
- [`mw user ssh-key get SSHKEYID`](#mw-user-ssh-key-get-sshkeyid)
|
|
161
|
-
- [`mw user ssh-key list`](#mw-user-ssh-key-list)
|
|
162
|
-
|
|
163
|
-
## `mw app delete ID`
|
|
164
|
-
|
|
165
|
-
Delete an app
|
|
166
|
-
|
|
167
|
-
```
|
|
168
|
-
USAGE
|
|
169
|
-
$ mw app delete ID [-f]
|
|
170
|
-
|
|
171
|
-
ARGUMENTS
|
|
172
|
-
ID ID of the app to be deleted.
|
|
173
|
-
|
|
174
|
-
FLAGS
|
|
175
|
-
-f, --force delete without prompting for confirmation
|
|
176
|
-
|
|
177
|
-
DESCRIPTION
|
|
178
|
-
Delete an app
|
|
179
|
-
```
|
|
180
|
-
|
|
181
|
-
## `mw app dependency getSystemsoftware SYSTEMSOFTWAREID`
|
|
182
|
-
|
|
183
|
-
get a specific `SystemSoftware`
|
|
184
|
-
|
|
185
|
-
```
|
|
186
|
-
USAGE
|
|
187
|
-
$ mw app dependency getSystemsoftware SYSTEMSOFTWAREID [--output json|yaml | | ]
|
|
188
|
-
|
|
189
|
-
ARGUMENTS
|
|
190
|
-
SYSTEMSOFTWAREID undefined
|
|
191
|
-
|
|
192
|
-
FLAGS
|
|
193
|
-
--output=<option> output in a more machine friendly format
|
|
194
|
-
<options: json|yaml>
|
|
195
|
-
|
|
196
|
-
DESCRIPTION
|
|
197
|
-
get a specific `SystemSoftware`
|
|
198
|
-
```
|
|
199
|
-
|
|
200
|
-
## `mw app dependency getSystemsoftwareversion SYSTEMSOFTWAREVERSIONID`
|
|
201
|
-
|
|
202
|
-
get a specific `SystemSoftwareVersion`
|
|
203
|
-
|
|
204
|
-
```
|
|
205
|
-
USAGE
|
|
206
|
-
$ mw app dependency getSystemsoftwareversion SYSTEMSOFTWAREVERSIONID --system-software-id <value> [--output json|yaml
|
|
207
|
-
| | ]
|
|
208
|
-
|
|
209
|
-
ARGUMENTS
|
|
210
|
-
SYSTEMSOFTWAREVERSIONID undefined
|
|
211
|
-
|
|
212
|
-
FLAGS
|
|
213
|
-
--output=<option> output in a more machine friendly format
|
|
214
|
-
<options: json|yaml>
|
|
215
|
-
--system-software-id=<value> (required) undefined
|
|
216
|
-
|
|
217
|
-
DESCRIPTION
|
|
218
|
-
get a specific `SystemSoftwareVersion`
|
|
219
|
-
```
|
|
220
|
-
|
|
221
|
-
## `mw app dependency listSystemsoftwares`
|
|
222
|
-
|
|
223
|
-
get all available `SystemSoftware`
|
|
224
|
-
|
|
225
|
-
```
|
|
226
|
-
USAGE
|
|
227
|
-
$ mw app dependency listSystemsoftwares [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
228
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
229
|
-
|
|
230
|
-
FLAGS
|
|
231
|
-
-x, --extended show extra columns
|
|
232
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
233
|
-
--csv output is csv format [alias: --output=csv]
|
|
234
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
235
|
-
--no-header hide table header from output
|
|
236
|
-
--no-truncate do not truncate output to fit screen
|
|
237
|
-
--output=<option> output in a more machine friendly format
|
|
238
|
-
<options: csv|json|yaml>
|
|
239
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
240
|
-
|
|
241
|
-
DESCRIPTION
|
|
242
|
-
get all available `SystemSoftware`
|
|
243
|
-
```
|
|
244
|
-
|
|
245
|
-
## `mw app dependency listSystemsoftwareversions`
|
|
246
|
-
|
|
247
|
-
get all available `SystemSoftwareVersions` of a specific `SystemSoftware`
|
|
248
|
-
|
|
249
|
-
```
|
|
250
|
-
USAGE
|
|
251
|
-
$ mw app dependency listSystemsoftwareversions --system-software-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>]
|
|
252
|
-
[--output csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
253
|
-
|
|
254
|
-
FLAGS
|
|
255
|
-
-x, --extended show extra columns
|
|
256
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
257
|
-
--csv output is csv format [alias: --output=csv]
|
|
258
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
259
|
-
--no-header hide table header from output
|
|
260
|
-
--no-truncate do not truncate output to fit screen
|
|
261
|
-
--output=<option> output in a more machine friendly format
|
|
262
|
-
<options: csv|json|yaml>
|
|
263
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
264
|
-
--system-software-id=<value> (required) undefined
|
|
265
|
-
|
|
266
|
-
DESCRIPTION
|
|
267
|
-
get all available `SystemSoftwareVersions` of a specific `SystemSoftware`
|
|
268
|
-
```
|
|
269
|
-
|
|
270
|
-
## `mw app get APPINSTALLATIONID`
|
|
271
|
-
|
|
272
|
-
get a specific `AppInstallation`
|
|
273
|
-
|
|
274
|
-
```
|
|
275
|
-
USAGE
|
|
276
|
-
$ mw app get APPINSTALLATIONID [--output json|yaml | | ]
|
|
277
|
-
|
|
278
|
-
ARGUMENTS
|
|
279
|
-
APPINSTALLATIONID undefined
|
|
280
|
-
|
|
281
|
-
FLAGS
|
|
282
|
-
--output=<option> output in a more machine friendly format
|
|
283
|
-
<options: json|yaml>
|
|
284
|
-
|
|
285
|
-
DESCRIPTION
|
|
286
|
-
get a specific `AppInstallation`
|
|
287
|
-
```
|
|
288
|
-
|
|
289
|
-
## `mw app install wordpress`
|
|
290
|
-
|
|
291
|
-
Creates new WordPress Installation.
|
|
292
|
-
|
|
293
|
-
```
|
|
294
|
-
USAGE
|
|
295
|
-
$ mw app install wordpress -p <value> --host <value> --admin-user <value> --admin-email <value> --admin-pass <value>
|
|
296
|
-
--site-title <value> [--version <value>] [-w]
|
|
297
|
-
|
|
298
|
-
FLAGS
|
|
299
|
-
-p, --project-id=<value> (required) ID of the Project, in which the App will be created.
|
|
300
|
-
-w, --wait Wait for the App to be ready.
|
|
301
|
-
--admin-email=<value> (required) First Admin Users E-Mail.
|
|
302
|
-
--admin-pass=<value> (required) First Admin Users Password.
|
|
303
|
-
--admin-user=<value> (required) First Admin User for the app.
|
|
304
|
-
--host=<value> (required) Host under which the App will be available (Needs to be created separately).
|
|
305
|
-
--site-title=<value> (required) Site Title of the created appInstallation.
|
|
306
|
-
--version=<value> Version of the App to be created - Defaults to latest
|
|
307
|
-
|
|
308
|
-
DESCRIPTION
|
|
309
|
-
Creates new WordPress Installation.
|
|
310
|
-
```
|
|
311
|
-
|
|
312
|
-
## `mw app list`
|
|
313
|
-
|
|
314
|
-
List projects
|
|
315
|
-
|
|
316
|
-
```
|
|
317
|
-
USAGE
|
|
318
|
-
$ mw app list -p <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
319
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
320
|
-
|
|
321
|
-
FLAGS
|
|
322
|
-
-p, --project=<value> (required) project to run the command for
|
|
323
|
-
-x, --extended show extra columns
|
|
324
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
325
|
-
--csv output is csv format [alias: --output=csv]
|
|
326
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
327
|
-
--no-header hide table header from output
|
|
328
|
-
--no-truncate do not truncate output to fit screen
|
|
329
|
-
--output=<option> output in a more machine friendly format
|
|
330
|
-
<options: csv|json|yaml>
|
|
331
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
332
|
-
|
|
333
|
-
DESCRIPTION
|
|
334
|
-
List projects
|
|
335
|
-
```
|
|
336
|
-
|
|
337
|
-
## `mw app versions [APP]`
|
|
338
|
-
|
|
339
|
-
List supported Apps and Versions
|
|
340
|
-
|
|
341
|
-
```
|
|
342
|
-
USAGE
|
|
343
|
-
$ mw app versions [APP]
|
|
344
|
-
|
|
345
|
-
ARGUMENTS
|
|
346
|
-
APP name of specific app to get versions for
|
|
347
|
-
|
|
348
|
-
DESCRIPTION
|
|
349
|
-
List supported Apps and Versions
|
|
350
|
-
```
|
|
351
|
-
|
|
352
|
-
## `mw article get ARTICLEID`
|
|
353
|
-
|
|
354
|
-
Get an Article.
|
|
355
|
-
|
|
356
|
-
```
|
|
357
|
-
USAGE
|
|
358
|
-
$ mw article get ARTICLEID [--output json|yaml | | ]
|
|
359
|
-
|
|
360
|
-
ARGUMENTS
|
|
361
|
-
ARTICLEID undefined
|
|
362
|
-
|
|
363
|
-
FLAGS
|
|
364
|
-
--output=<option> output in a more machine friendly format
|
|
365
|
-
<options: json|yaml>
|
|
366
|
-
|
|
367
|
-
DESCRIPTION
|
|
368
|
-
Get an Article.
|
|
369
|
-
```
|
|
370
|
-
|
|
371
|
-
## `mw article list`
|
|
372
|
-
|
|
373
|
-
List Articles.
|
|
374
|
-
|
|
375
|
-
```
|
|
376
|
-
USAGE
|
|
377
|
-
$ mw article list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
378
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
379
|
-
|
|
380
|
-
FLAGS
|
|
381
|
-
-x, --extended show extra columns
|
|
382
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
383
|
-
--csv output is csv format [alias: --output=csv]
|
|
384
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
385
|
-
--no-header hide table header from output
|
|
386
|
-
--no-truncate do not truncate output to fit screen
|
|
387
|
-
--output=<option> output in a more machine friendly format
|
|
388
|
-
<options: csv|json|yaml>
|
|
389
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
390
|
-
|
|
391
|
-
DESCRIPTION
|
|
392
|
-
List Articles.
|
|
393
|
-
```
|
|
394
|
-
|
|
395
|
-
## `mw contract getBaseItemOfContract`
|
|
396
|
-
|
|
397
|
-
Return the BaseItem of the Contract with the given ID.
|
|
398
|
-
|
|
399
|
-
```
|
|
400
|
-
USAGE
|
|
401
|
-
$ mw contract getBaseItemOfContract --contract-id <value> [--output json|yaml | | ]
|
|
402
|
-
|
|
403
|
-
FLAGS
|
|
404
|
-
--contract-id=<value> (required) The uuid of the Contract from which the BaseItem is to be issued.
|
|
405
|
-
--output=<option> output in a more machine friendly format
|
|
406
|
-
<options: json|yaml>
|
|
407
|
-
|
|
408
|
-
DESCRIPTION
|
|
409
|
-
Return the BaseItem of the Contract with the given ID.
|
|
410
|
-
```
|
|
411
|
-
|
|
412
|
-
## `mw contract getDetailOfContract CONTRACTID`
|
|
413
|
-
|
|
414
|
-
Returns the Contract with the given ID.
|
|
415
|
-
|
|
416
|
-
```
|
|
417
|
-
USAGE
|
|
418
|
-
$ mw contract getDetailOfContract CONTRACTID [--output json|yaml | | ]
|
|
419
|
-
|
|
420
|
-
ARGUMENTS
|
|
421
|
-
CONTRACTID The uuid of the Contract to be returned.
|
|
422
|
-
|
|
423
|
-
FLAGS
|
|
424
|
-
--output=<option> output in a more machine friendly format
|
|
425
|
-
<options: json|yaml>
|
|
426
|
-
|
|
427
|
-
DESCRIPTION
|
|
428
|
-
Returns the Contract with the given ID.
|
|
429
|
-
```
|
|
430
|
-
|
|
431
|
-
## `mw contract getDetailOfContractByDomain`
|
|
432
|
-
|
|
433
|
-
Return the Contract for the given Domain.
|
|
434
|
-
|
|
435
|
-
```
|
|
436
|
-
USAGE
|
|
437
|
-
$ mw contract getDetailOfContractByDomain --domain-id <value> [--output json|yaml | | ]
|
|
438
|
-
|
|
439
|
-
FLAGS
|
|
440
|
-
--domain-id=<value> (required) undefined
|
|
441
|
-
--output=<option> output in a more machine friendly format
|
|
442
|
-
<options: json|yaml>
|
|
443
|
-
|
|
444
|
-
DESCRIPTION
|
|
445
|
-
Return the Contract for the given Domain.
|
|
446
|
-
```
|
|
447
|
-
|
|
448
|
-
## `mw contract getDetailOfContractByProject`
|
|
449
|
-
|
|
450
|
-
Return the Contract for the given Project.
|
|
451
|
-
|
|
452
|
-
```
|
|
453
|
-
USAGE
|
|
454
|
-
$ mw contract getDetailOfContractByProject --project-id <value> [--output json|yaml | | ]
|
|
455
|
-
|
|
456
|
-
FLAGS
|
|
457
|
-
--output=<option> output in a more machine friendly format
|
|
458
|
-
<options: json|yaml>
|
|
459
|
-
--project-id=<value> (required) undefined
|
|
460
|
-
|
|
461
|
-
DESCRIPTION
|
|
462
|
-
Return the Contract for the given Project.
|
|
463
|
-
```
|
|
464
|
-
|
|
465
|
-
## `mw contract getDetailOfContractByServer`
|
|
466
|
-
|
|
467
|
-
Return the Contract for the given Server.
|
|
468
|
-
|
|
469
|
-
```
|
|
470
|
-
USAGE
|
|
471
|
-
$ mw contract getDetailOfContractByServer --server-id <value> [--output json|yaml | | ]
|
|
472
|
-
|
|
473
|
-
FLAGS
|
|
474
|
-
--output=<option> output in a more machine friendly format
|
|
475
|
-
<options: json|yaml>
|
|
476
|
-
--server-id=<value> (required) undefined
|
|
477
|
-
|
|
478
|
-
DESCRIPTION
|
|
479
|
-
Return the Contract for the given Server.
|
|
480
|
-
```
|
|
481
|
-
|
|
482
|
-
## `mw contract getDetailOfContractItem CONTRACTITEMID`
|
|
483
|
-
|
|
484
|
-
Get the ContractItem with the given ID.
|
|
485
|
-
|
|
486
|
-
```
|
|
487
|
-
USAGE
|
|
488
|
-
$ mw contract getDetailOfContractItem CONTRACTITEMID --contract-id <value> [--output json|yaml | | ]
|
|
489
|
-
|
|
490
|
-
ARGUMENTS
|
|
491
|
-
CONTRACTITEMID The uuid of the ContractItem to be returned.
|
|
492
|
-
|
|
493
|
-
FLAGS
|
|
494
|
-
--contract-id=<value> (required) The uuid of the Contract where the desired ContractItem belongs to.
|
|
495
|
-
--output=<option> output in a more machine friendly format
|
|
496
|
-
<options: json|yaml>
|
|
497
|
-
|
|
498
|
-
DESCRIPTION
|
|
499
|
-
Get the ContractItem with the given ID.
|
|
500
|
-
```
|
|
501
|
-
|
|
502
|
-
## `mw contract getNextTerminationDateForItem`
|
|
503
|
-
|
|
504
|
-
Return the next TerminationDate for the ContractItem with the given ID.
|
|
505
|
-
|
|
506
|
-
```
|
|
507
|
-
USAGE
|
|
508
|
-
$ mw contract getNextTerminationDateForItem --contract-id <value> --contract-item-id <value> [--output json|yaml | |
|
|
509
|
-
]
|
|
510
|
-
|
|
511
|
-
FLAGS
|
|
512
|
-
--contract-id=<value> (required) The uuid of the Contract where the desired ContractItem belongs to.
|
|
513
|
-
--contract-item-id=<value> (required) The uuid of the ContractItem whose next TerminationDate is to be displayed.
|
|
514
|
-
--output=<option> output in a more machine friendly format
|
|
515
|
-
<options: json|yaml>
|
|
516
|
-
|
|
517
|
-
DESCRIPTION
|
|
518
|
-
Return the next TerminationDate for the ContractItem with the given ID.
|
|
519
|
-
```
|
|
520
|
-
|
|
521
|
-
## `mw contract invoiceDetailOfInvoice INVOICEID`
|
|
522
|
-
|
|
523
|
-
Get details of an Invoice.
|
|
524
|
-
|
|
525
|
-
```
|
|
526
|
-
USAGE
|
|
527
|
-
$ mw contract invoiceDetailOfInvoice INVOICEID --customer-id <value> [--output json|yaml | | ]
|
|
528
|
-
|
|
529
|
-
ARGUMENTS
|
|
530
|
-
INVOICEID undefined
|
|
531
|
-
|
|
532
|
-
FLAGS
|
|
533
|
-
--customer-id=<value> (required) undefined
|
|
534
|
-
--output=<option> output in a more machine friendly format
|
|
535
|
-
<options: json|yaml>
|
|
536
|
-
|
|
537
|
-
DESCRIPTION
|
|
538
|
-
Get details of an Invoice.
|
|
539
|
-
```
|
|
540
|
-
|
|
541
|
-
## `mw contract invoiceGetDetailOfInvoiceSettings`
|
|
542
|
-
|
|
543
|
-
Get InvoiceSettings of a Customer.
|
|
544
|
-
|
|
545
|
-
```
|
|
546
|
-
USAGE
|
|
547
|
-
$ mw contract invoiceGetDetailOfInvoiceSettings --customer-id <value> [--output json|yaml | | ]
|
|
548
|
-
|
|
549
|
-
FLAGS
|
|
550
|
-
--customer-id=<value> (required) undefined
|
|
551
|
-
--output=<option> output in a more machine friendly format
|
|
552
|
-
<options: json|yaml>
|
|
553
|
-
|
|
554
|
-
DESCRIPTION
|
|
555
|
-
Get InvoiceSettings of a Customer.
|
|
556
|
-
```
|
|
557
|
-
|
|
558
|
-
## `mw contract invoiceListCustomerInvoices`
|
|
559
|
-
|
|
560
|
-
List Invoices of a Customer.
|
|
13
|
+
## Getting started
|
|
561
14
|
|
|
562
|
-
|
|
563
|
-
USAGE
|
|
564
|
-
$ mw contract invoiceListCustomerInvoices --customer-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
565
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
566
|
-
|
|
567
|
-
FLAGS
|
|
568
|
-
-x, --extended show extra columns
|
|
569
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
570
|
-
--csv output is csv format [alias: --output=csv]
|
|
571
|
-
--customer-id=<value> (required) undefined
|
|
572
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
573
|
-
--no-header hide table header from output
|
|
574
|
-
--no-truncate do not truncate output to fit screen
|
|
575
|
-
--output=<option> output in a more machine friendly format
|
|
576
|
-
<options: csv|json|yaml>
|
|
577
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
578
|
-
|
|
579
|
-
DESCRIPTION
|
|
580
|
-
List Invoices of a Customer.
|
|
581
|
-
```
|
|
582
|
-
|
|
583
|
-
## `mw contract listContracts`
|
|
584
|
-
|
|
585
|
-
Return a list of Contracts for the given Customer.
|
|
586
|
-
|
|
587
|
-
```
|
|
588
|
-
USAGE
|
|
589
|
-
$ mw contract listContracts --customer-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
590
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
591
|
-
|
|
592
|
-
FLAGS
|
|
593
|
-
-x, --extended show extra columns
|
|
594
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
595
|
-
--csv output is csv format [alias: --output=csv]
|
|
596
|
-
--customer-id=<value> (required) The uuid of the Customer from whom all Contracts are to be returned.
|
|
597
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
598
|
-
--no-header hide table header from output
|
|
599
|
-
--no-truncate do not truncate output to fit screen
|
|
600
|
-
--output=<option> output in a more machine friendly format
|
|
601
|
-
<options: csv|json|yaml>
|
|
602
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
603
|
-
|
|
604
|
-
DESCRIPTION
|
|
605
|
-
Return a list of Contracts for the given Customer.
|
|
606
|
-
```
|
|
607
|
-
|
|
608
|
-
## `mw contract orderGetOrder ORDERID`
|
|
609
|
-
|
|
610
|
-
Get Order for Customer.
|
|
611
|
-
|
|
612
|
-
```
|
|
613
|
-
USAGE
|
|
614
|
-
$ mw contract orderGetOrder ORDERID [--output json|yaml | | ]
|
|
615
|
-
|
|
616
|
-
ARGUMENTS
|
|
617
|
-
ORDERID undefined
|
|
618
|
-
|
|
619
|
-
FLAGS
|
|
620
|
-
--output=<option> output in a more machine friendly format
|
|
621
|
-
<options: json|yaml>
|
|
622
|
-
|
|
623
|
-
DESCRIPTION
|
|
624
|
-
Get Order for Customer.
|
|
625
|
-
```
|
|
626
|
-
|
|
627
|
-
## `mw contract orderListCustomerOrders`
|
|
628
|
-
|
|
629
|
-
Get list of Orders of a Customer.
|
|
630
|
-
|
|
631
|
-
```
|
|
632
|
-
USAGE
|
|
633
|
-
$ mw contract orderListCustomerOrders --customer-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
634
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
635
|
-
|
|
636
|
-
FLAGS
|
|
637
|
-
-x, --extended show extra columns
|
|
638
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
639
|
-
--csv output is csv format [alias: --output=csv]
|
|
640
|
-
--customer-id=<value> (required) undefined
|
|
641
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
642
|
-
--no-header hide table header from output
|
|
643
|
-
--no-truncate do not truncate output to fit screen
|
|
644
|
-
--output=<option> output in a more machine friendly format
|
|
645
|
-
<options: csv|json|yaml>
|
|
646
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
647
|
-
|
|
648
|
-
DESCRIPTION
|
|
649
|
-
Get list of Orders of a Customer.
|
|
650
|
-
```
|
|
651
|
-
|
|
652
|
-
## `mw contract orderListProjectOrders`
|
|
653
|
-
|
|
654
|
-
Get list of Orders of a Project.
|
|
15
|
+
### Installation
|
|
655
16
|
|
|
656
|
-
|
|
657
|
-
USAGE
|
|
658
|
-
$ mw contract orderListProjectOrders --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
659
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
17
|
+
#### macOS, using Homebrew
|
|
660
18
|
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
664
|
-
--csv output is csv format [alias: --output=csv]
|
|
665
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
666
|
-
--no-header hide table header from output
|
|
667
|
-
--no-truncate do not truncate output to fit screen
|
|
668
|
-
--output=<option> output in a more machine friendly format
|
|
669
|
-
<options: csv|json|yaml>
|
|
670
|
-
--project-id=<value> (required) undefined
|
|
671
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
19
|
+
Installation using [Homebrew](https://brew.sh/) is the recommended way of
|
|
20
|
+
installation on macOS.
|
|
672
21
|
|
|
673
|
-
|
|
674
|
-
|
|
22
|
+
```shell
|
|
23
|
+
$ brew tap mittwald/cli
|
|
24
|
+
$ brew install mw
|
|
675
25
|
```
|
|
676
26
|
|
|
677
|
-
|
|
27
|
+
#### Windows, using the Installer
|
|
678
28
|
|
|
679
|
-
|
|
29
|
+
Find the appropriate Windows installer from the
|
|
30
|
+
[releases page](https://github.com/mittwald/cli/releases) and run the installer.
|
|
31
|
+
After running the installer, you should be able to use the `mw` command on
|
|
32
|
+
either the CMD prompt or PowerShell.
|
|
680
33
|
|
|
681
|
-
|
|
682
|
-
USAGE
|
|
683
|
-
$ mw conversation categories [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
684
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
34
|
+
#### Any OS, using Node.js+NPM
|
|
685
35
|
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
691
|
-
--no-header hide table header from output
|
|
692
|
-
--no-truncate do not truncate output to fit screen
|
|
693
|
-
--output=<option> output in a more machine friendly format
|
|
694
|
-
<options: csv|json|yaml>
|
|
695
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
36
|
+
Installing the CLI via NPM will work on any OS; however we cannot guarantee
|
|
37
|
+
stability, because functionality of the CLI may depend on the Node.js runtime
|
|
38
|
+
already installed on your system. Also, the automatic upgrade will not work when
|
|
39
|
+
using NPM; remember to run `npm upgrade -g @mittwald/cli` occasionally.
|
|
696
40
|
|
|
697
|
-
|
|
698
|
-
|
|
41
|
+
```shell
|
|
42
|
+
$ npm install -g @mittwald/cli
|
|
699
43
|
```
|
|
700
44
|
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
Close a conversation
|
|
704
|
-
|
|
705
|
-
```
|
|
706
|
-
USAGE
|
|
707
|
-
$ mw conversation close ID
|
|
45
|
+
#### Any OS, using Docker
|
|
708
46
|
|
|
709
|
-
|
|
710
|
-
|
|
47
|
+
There is also the
|
|
48
|
+
[`mittwald/cli` Docker image](https://hub.docker.com/r/mittwald/cli) that you
|
|
49
|
+
can use instead of installing the CLI on your system. In case of the Docker
|
|
50
|
+
container, authentication works a bit differently than described below: Make
|
|
51
|
+
sure that there is an environment variable `MITTWALD_API_TOKEN` present on your
|
|
52
|
+
system; you can then pass that environment variable into your container:
|
|
711
53
|
|
|
712
|
-
|
|
713
|
-
|
|
54
|
+
```shell
|
|
55
|
+
$ export MITTWALD_API_TOKEN=<enter token here>
|
|
56
|
+
$ docker run --rm -it -e MITTWALD_API_TOKEN mittwald/cli help
|
|
714
57
|
```
|
|
715
58
|
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
Create a new conversation
|
|
719
|
-
|
|
720
|
-
```
|
|
721
|
-
USAGE
|
|
722
|
-
$ mw conversation create --title <value> [--message <value> | --message-from <value>] [--editor <value>] [--category
|
|
723
|
-
<value>]
|
|
59
|
+
### Authentication
|
|
724
60
|
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
--editor=<value> [default: vim] The editor to use when opening the message for editing; will respect your
|
|
729
|
-
EDITOR environment variable, and fall back on 'vim' if that is not set.
|
|
730
|
-
--message=<value> The body of the message to send; if neither this nor --message-from is given, an editor will
|
|
731
|
-
be opened to enter the message.
|
|
732
|
-
--message-from=<value> A file from which to read the message to send; may be '-' to read from stdin. If neither this
|
|
733
|
-
nor --message is given, an editor will be opened to enter the message.
|
|
734
|
-
--title=<value> (required) Title of the conversation
|
|
61
|
+
To use the CLI, you will need an
|
|
62
|
+
[mStudio API token](https://studio.mittwald.de/app/profile/api-tokens). With
|
|
63
|
+
your token in your clipboard, run the `mw login token` command:
|
|
735
64
|
|
|
736
|
-
|
|
737
|
-
|
|
65
|
+
```shell
|
|
66
|
+
$ mw login token
|
|
67
|
+
Enter your mStudio API token: ****************
|
|
68
|
+
token saved to '/Users/mhelmich/.config/mw/token'
|
|
738
69
|
```
|
|
739
70
|
|
|
740
|
-
|
|
71
|
+
### Setting up shell autocompletion
|
|
741
72
|
|
|
742
|
-
|
|
73
|
+
The `mw` CLI offers a lot of commands and flags, and it can be hard to remember
|
|
74
|
+
all of them. To make your life easier, the CLI offers autocompletion for the
|
|
75
|
+
Bash and ZSH shells. To enable autocompletion, run the following command:
|
|
743
76
|
|
|
77
|
+
```shell
|
|
78
|
+
$ mw autocomplete
|
|
744
79
|
```
|
|
745
|
-
USAGE
|
|
746
|
-
$ mw conversation list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
747
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
748
80
|
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
752
|
-
--csv output is csv format [alias: --output=csv]
|
|
753
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
754
|
-
--no-header hide table header from output
|
|
755
|
-
--no-truncate do not truncate output to fit screen
|
|
756
|
-
--output=<option> output in a more machine friendly format
|
|
757
|
-
<options: csv|json|yaml>
|
|
758
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
81
|
+
After that, follow the instructions printed by that command (those are specific
|
|
82
|
+
to your shell -- Bash, ZSH and Powershell are supported).
|
|
759
83
|
|
|
760
|
-
|
|
761
|
-
Get all conversation the authenticated user has created or has access to.
|
|
762
|
-
```
|
|
84
|
+
## Contributing
|
|
763
85
|
|
|
764
|
-
|
|
86
|
+
If you are a developer (either at @mittwald or an external contributor) and want
|
|
87
|
+
to contribute to the CLI, please refer to the [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
88
|
+
document.
|
|
765
89
|
|
|
766
|
-
|
|
90
|
+
## Usage
|
|
767
91
|
|
|
768
|
-
```
|
|
92
|
+
```sh-session
|
|
93
|
+
$ npm install -g @mittwald/cli
|
|
94
|
+
$ mw COMMAND
|
|
95
|
+
running command...
|
|
96
|
+
$ mw (--version)
|
|
97
|
+
@mittwald/cli/1.0.0 darwin-arm64 node-v18.11.0
|
|
98
|
+
$ mw --help [COMMAND]
|
|
769
99
|
USAGE
|
|
770
|
-
$ mw
|
|
771
|
-
|
|
772
|
-
ARGUMENTS
|
|
773
|
-
ID ID of the conversation to show
|
|
774
|
-
|
|
775
|
-
FLAGS
|
|
776
|
-
--editor=<value> [default: vim] The editor to use when opening the message for editing; will respect your
|
|
777
|
-
EDITOR environment variable, and fall back on 'vim' if that is not set.
|
|
778
|
-
--message=<value> The body of the message to send; if neither this nor --message-from is given, an editor will
|
|
779
|
-
be opened to enter the message.
|
|
780
|
-
--message-from=<value> A file from which to read the message to send; may be '-' to read from stdin. If neither this
|
|
781
|
-
nor --message is given, an editor will be opened to enter the message.
|
|
782
|
-
|
|
783
|
-
DESCRIPTION
|
|
784
|
-
Reply to a conversation
|
|
100
|
+
$ mw COMMAND
|
|
101
|
+
...
|
|
785
102
|
```
|
|
786
103
|
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
--wait
|
|
810
|
-
```
|
|
811
|
-
|
|
812
|
-
## `mw database mysql charsets`
|
|
813
|
-
|
|
814
|
-
List available MySQL character sets and collations, optionally filtered by a
|
|
815
|
-
MySQLVersion.
|
|
816
|
-
|
|
817
|
-
```
|
|
818
|
-
USAGE
|
|
819
|
-
$ mw database mysql charsets [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
820
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
821
|
-
|
|
822
|
-
FLAGS
|
|
823
|
-
-x, --extended show extra columns
|
|
824
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
825
|
-
--csv output is csv format [alias: --output=csv]
|
|
826
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
827
|
-
--no-header hide table header from output
|
|
828
|
-
--no-truncate do not truncate output to fit screen
|
|
829
|
-
--output=<option> output in a more machine friendly format
|
|
830
|
-
<options: csv|json|yaml>
|
|
831
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
832
|
-
|
|
833
|
-
DESCRIPTION
|
|
834
|
-
List available MySQL character sets and collations, optionally filtered by a MySQLVersion.
|
|
835
|
-
```
|
|
836
|
-
|
|
837
|
-
## `mw database mysql get ID`
|
|
838
|
-
|
|
839
|
-
Get a MySQLDatabase.
|
|
840
|
-
|
|
841
|
-
```
|
|
842
|
-
USAGE
|
|
843
|
-
$ mw database mysql get ID [--output json|yaml | | ]
|
|
844
|
-
|
|
845
|
-
ARGUMENTS
|
|
846
|
-
ID ID of the MySQLDatabase to be retrieved.
|
|
847
|
-
|
|
848
|
-
FLAGS
|
|
849
|
-
--output=<option> output in a more machine friendly format
|
|
850
|
-
<options: json|yaml>
|
|
851
|
-
|
|
852
|
-
DESCRIPTION
|
|
853
|
-
Get a MySQLDatabase.
|
|
854
|
-
```
|
|
855
|
-
|
|
856
|
-
## `mw database mysql list`
|
|
857
|
-
|
|
858
|
-
List MySQLDatabases belonging to a Project.
|
|
859
|
-
|
|
860
|
-
```
|
|
861
|
-
USAGE
|
|
862
|
-
$ mw database mysql list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
863
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
864
|
-
|
|
865
|
-
FLAGS
|
|
866
|
-
-x, --extended show extra columns
|
|
867
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
868
|
-
--csv output is csv format [alias: --output=csv]
|
|
869
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
870
|
-
--no-header hide table header from output
|
|
871
|
-
--no-truncate do not truncate output to fit screen
|
|
872
|
-
--output=<option> output in a more machine friendly format
|
|
873
|
-
<options: csv|json|yaml>
|
|
874
|
-
--project-id=<value> (required) ID of the Project to list MySQLDatabases for.
|
|
875
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
876
|
-
|
|
877
|
-
DESCRIPTION
|
|
878
|
-
List MySQLDatabases belonging to a Project.
|
|
879
|
-
```
|
|
880
|
-
|
|
881
|
-
## `mw database mysql user get ID`
|
|
882
|
-
|
|
883
|
-
Get a MySQLUser.
|
|
884
|
-
|
|
885
|
-
```
|
|
886
|
-
USAGE
|
|
887
|
-
$ mw database mysql user get ID [--output json|yaml | | ]
|
|
888
|
-
|
|
889
|
-
ARGUMENTS
|
|
890
|
-
ID ID of the MySQLUser to be retrieved.
|
|
891
|
-
|
|
892
|
-
FLAGS
|
|
893
|
-
--output=<option> output in a more machine friendly format
|
|
894
|
-
<options: json|yaml>
|
|
895
|
-
|
|
896
|
-
DESCRIPTION
|
|
897
|
-
Get a MySQLUser.
|
|
898
|
-
```
|
|
899
|
-
|
|
900
|
-
## `mw database mysql user getMysqlUserPhpMyAdminUrl`
|
|
901
|
-
|
|
902
|
-
Get a MySQLUser's PhpMyAdmin-URL.
|
|
903
|
-
|
|
904
|
-
```
|
|
905
|
-
USAGE
|
|
906
|
-
$ mw database mysql user getMysqlUserPhpMyAdminUrl --id <value> [--output json|yaml | | ]
|
|
907
|
-
|
|
908
|
-
FLAGS
|
|
909
|
-
--id=<value> (required) ID of the MySQLUser for which to get the URL for.
|
|
910
|
-
--output=<option> output in a more machine friendly format
|
|
911
|
-
<options: json|yaml>
|
|
912
|
-
|
|
913
|
-
DESCRIPTION
|
|
914
|
-
Get a MySQLUser's PhpMyAdmin-URL.
|
|
915
|
-
```
|
|
916
|
-
|
|
917
|
-
## `mw database mysql user list`
|
|
918
|
-
|
|
919
|
-
List MySQLUsers belonging to a database.
|
|
920
|
-
|
|
921
|
-
```
|
|
922
|
-
USAGE
|
|
923
|
-
$ mw database mysql user list --database-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
924
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
925
|
-
|
|
926
|
-
FLAGS
|
|
927
|
-
-x, --extended show extra columns
|
|
928
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
929
|
-
--csv output is csv format [alias: --output=csv]
|
|
930
|
-
--database-id=<value> (required) ID of the MySQLDatabase to list Users for.
|
|
931
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
932
|
-
--no-header hide table header from output
|
|
933
|
-
--no-truncate do not truncate output to fit screen
|
|
934
|
-
--output=<option> output in a more machine friendly format
|
|
935
|
-
<options: csv|json|yaml>
|
|
936
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
937
|
-
|
|
938
|
-
DESCRIPTION
|
|
939
|
-
List MySQLUsers belonging to a database.
|
|
940
|
-
```
|
|
941
|
-
|
|
942
|
-
## `mw database mysql versions`
|
|
943
|
-
|
|
944
|
-
List available MySQLVersions.
|
|
945
|
-
|
|
946
|
-
```
|
|
947
|
-
USAGE
|
|
948
|
-
$ mw database mysql versions [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
949
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
950
|
-
|
|
951
|
-
FLAGS
|
|
952
|
-
-x, --extended show extra columns
|
|
953
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
954
|
-
--csv output is csv format [alias: --output=csv]
|
|
955
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
956
|
-
--no-header hide table header from output
|
|
957
|
-
--no-truncate do not truncate output to fit screen
|
|
958
|
-
--output=<option> output in a more machine friendly format
|
|
959
|
-
<options: csv|json|yaml>
|
|
960
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
961
|
-
|
|
962
|
-
DESCRIPTION
|
|
963
|
-
List available MySQLVersions.
|
|
964
|
-
```
|
|
965
|
-
|
|
966
|
-
## `mw database redis get ID`
|
|
967
|
-
|
|
968
|
-
Get a RedisDatabase.
|
|
969
|
-
|
|
970
|
-
```
|
|
971
|
-
USAGE
|
|
972
|
-
$ mw database redis get ID [--output json|yaml | | ]
|
|
973
|
-
|
|
974
|
-
ARGUMENTS
|
|
975
|
-
ID ID of the RedisDatabase to retrieve.
|
|
976
|
-
|
|
977
|
-
FLAGS
|
|
978
|
-
--output=<option> output in a more machine friendly format
|
|
979
|
-
<options: json|yaml>
|
|
980
|
-
|
|
981
|
-
DESCRIPTION
|
|
982
|
-
Get a RedisDatabase.
|
|
983
|
-
```
|
|
984
|
-
|
|
985
|
-
## `mw database redis list`
|
|
986
|
-
|
|
987
|
-
List RedisDatabases belonging to a project.
|
|
988
|
-
|
|
989
|
-
```
|
|
990
|
-
USAGE
|
|
991
|
-
$ mw database redis list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
992
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
993
|
-
|
|
994
|
-
FLAGS
|
|
995
|
-
-x, --extended show extra columns
|
|
996
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
997
|
-
--csv output is csv format [alias: --output=csv]
|
|
998
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
999
|
-
--no-header hide table header from output
|
|
1000
|
-
--no-truncate do not truncate output to fit screen
|
|
1001
|
-
--output=<option> output in a more machine friendly format
|
|
1002
|
-
<options: csv|json|yaml>
|
|
1003
|
-
--project-id=<value> (required) ID of the Project to list RedisDatabases for.
|
|
1004
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1005
|
-
|
|
1006
|
-
DESCRIPTION
|
|
1007
|
-
List RedisDatabases belonging to a project.
|
|
1008
|
-
```
|
|
1009
|
-
|
|
1010
|
-
## `mw database redis versions`
|
|
1011
|
-
|
|
1012
|
-
List available Redis versions.
|
|
1013
|
-
|
|
1014
|
-
```
|
|
1015
|
-
USAGE
|
|
1016
|
-
$ mw database redis versions [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
1017
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
1018
|
-
|
|
1019
|
-
FLAGS
|
|
1020
|
-
-x, --extended show extra columns
|
|
1021
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1022
|
-
--csv output is csv format [alias: --output=csv]
|
|
1023
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1024
|
-
--no-header hide table header from output
|
|
1025
|
-
--no-truncate do not truncate output to fit screen
|
|
1026
|
-
--output=<option> output in a more machine friendly format
|
|
1027
|
-
<options: csv|json|yaml>
|
|
1028
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1029
|
-
|
|
1030
|
-
DESCRIPTION
|
|
1031
|
-
List available Redis versions.
|
|
1032
|
-
```
|
|
1033
|
-
|
|
1034
|
-
## `mw domain dnszone get ZONEID`
|
|
1035
|
-
|
|
1036
|
-
gets a specific zone
|
|
1037
|
-
|
|
1038
|
-
```
|
|
1039
|
-
USAGE
|
|
1040
|
-
$ mw domain dnszone get ZONEID [--output json|yaml | | ]
|
|
1041
|
-
|
|
1042
|
-
ARGUMENTS
|
|
1043
|
-
ZONEID id of the zone you want to get
|
|
1044
|
-
|
|
1045
|
-
FLAGS
|
|
1046
|
-
--output=<option> output in a more machine friendly format
|
|
1047
|
-
<options: json|yaml>
|
|
1048
|
-
|
|
1049
|
-
DESCRIPTION
|
|
1050
|
-
gets a specific zone
|
|
1051
|
-
```
|
|
1052
|
-
|
|
1053
|
-
## `mw domain dnszone list`
|
|
1054
|
-
|
|
1055
|
-
gets all dns zones by project id
|
|
1056
|
-
|
|
1057
|
-
```
|
|
1058
|
-
USAGE
|
|
1059
|
-
$ mw domain dnszone list --project-id <value> [--output json|yaml | | ]
|
|
1060
|
-
|
|
1061
|
-
FLAGS
|
|
1062
|
-
--output=<option> output in a more machine friendly format
|
|
1063
|
-
<options: json|yaml>
|
|
1064
|
-
--project-id=<value> (required) project you want to get the zones for
|
|
1065
|
-
|
|
1066
|
-
DESCRIPTION
|
|
1067
|
-
gets all dns zones by project id
|
|
1068
|
-
```
|
|
1069
|
-
|
|
1070
|
-
## `mw domain get DOMAINID`
|
|
1071
|
-
|
|
1072
|
-
Get a Domain.
|
|
1073
|
-
|
|
1074
|
-
```
|
|
1075
|
-
USAGE
|
|
1076
|
-
$ mw domain get DOMAINID [--output json|yaml | | ]
|
|
1077
|
-
|
|
1078
|
-
ARGUMENTS
|
|
1079
|
-
DOMAINID undefined
|
|
1080
|
-
|
|
1081
|
-
FLAGS
|
|
1082
|
-
--output=<option> output in a more machine friendly format
|
|
1083
|
-
<options: json|yaml>
|
|
1084
|
-
|
|
1085
|
-
DESCRIPTION
|
|
1086
|
-
Get a Domain.
|
|
1087
|
-
```
|
|
1088
|
-
|
|
1089
|
-
## `mw domain get-handle DOMAINNAME`
|
|
1090
|
-
|
|
1091
|
-
Get a HandleSchema.
|
|
1092
|
-
|
|
1093
|
-
```
|
|
1094
|
-
USAGE
|
|
1095
|
-
$ mw domain get-handle DOMAINNAME [--output json|yaml | | ]
|
|
1096
|
-
|
|
1097
|
-
ARGUMENTS
|
|
1098
|
-
DOMAINNAME The whole domain name
|
|
1099
|
-
|
|
1100
|
-
FLAGS
|
|
1101
|
-
--output=<option> output in a more machine friendly format
|
|
1102
|
-
<options: json|yaml>
|
|
1103
|
-
|
|
1104
|
-
DESCRIPTION
|
|
1105
|
-
Get a HandleSchema.
|
|
1106
|
-
```
|
|
1107
|
-
|
|
1108
|
-
## `mw domain list`
|
|
1109
|
-
|
|
1110
|
-
List Domains belonging to a Project.
|
|
1111
|
-
|
|
1112
|
-
```
|
|
1113
|
-
USAGE
|
|
1114
|
-
$ mw domain list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
1115
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
1116
|
-
|
|
1117
|
-
FLAGS
|
|
1118
|
-
-x, --extended show extra columns
|
|
1119
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1120
|
-
--csv output is csv format [alias: --output=csv]
|
|
1121
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1122
|
-
--no-header hide table header from output
|
|
1123
|
-
--no-truncate do not truncate output to fit screen
|
|
1124
|
-
--output=<option> output in a more machine friendly format
|
|
1125
|
-
<options: csv|json|yaml>
|
|
1126
|
-
--project-id=<value> (required) undefined
|
|
1127
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1128
|
-
|
|
1129
|
-
DESCRIPTION
|
|
1130
|
-
List Domains belonging to a Project.
|
|
1131
|
-
```
|
|
1132
|
-
|
|
1133
|
-
## `mw domain ownership get DOMAINOWNERSHIPID`
|
|
1134
|
-
|
|
1135
|
-
Get a domain ownership.
|
|
1136
|
-
|
|
1137
|
-
```
|
|
1138
|
-
USAGE
|
|
1139
|
-
$ mw domain ownership get DOMAINOWNERSHIPID [--output json|yaml | | ]
|
|
1140
|
-
|
|
1141
|
-
ARGUMENTS
|
|
1142
|
-
DOMAINOWNERSHIPID undefined
|
|
1143
|
-
|
|
1144
|
-
FLAGS
|
|
1145
|
-
--output=<option> output in a more machine friendly format
|
|
1146
|
-
<options: json|yaml>
|
|
1147
|
-
|
|
1148
|
-
DESCRIPTION
|
|
1149
|
-
Get a domain ownership.
|
|
1150
|
-
```
|
|
1151
|
-
|
|
1152
|
-
## `mw domain ownership list`
|
|
1153
|
-
|
|
1154
|
-
List all domain ownerships of a project.
|
|
1155
|
-
|
|
1156
|
-
```
|
|
1157
|
-
USAGE
|
|
1158
|
-
$ mw domain ownership list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
1159
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
1160
|
-
|
|
1161
|
-
FLAGS
|
|
1162
|
-
-x, --extended show extra columns
|
|
1163
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1164
|
-
--csv output is csv format [alias: --output=csv]
|
|
1165
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1166
|
-
--no-header hide table header from output
|
|
1167
|
-
--no-truncate do not truncate output to fit screen
|
|
1168
|
-
--output=<option> output in a more machine friendly format
|
|
1169
|
-
<options: csv|json|yaml>
|
|
1170
|
-
--project-id=<value> (required) undefined
|
|
1171
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1172
|
-
|
|
1173
|
-
DESCRIPTION
|
|
1174
|
-
List all domain ownerships of a project.
|
|
1175
|
-
```
|
|
1176
|
-
|
|
1177
|
-
## `mw domain tld get TLD`
|
|
1178
|
-
|
|
1179
|
-
Get a toplevel domain.
|
|
1180
|
-
|
|
1181
|
-
```
|
|
1182
|
-
USAGE
|
|
1183
|
-
$ mw domain tld get TLD [--output json|yaml | | ]
|
|
1184
|
-
|
|
1185
|
-
ARGUMENTS
|
|
1186
|
-
TLD undefined
|
|
1187
|
-
|
|
1188
|
-
FLAGS
|
|
1189
|
-
--output=<option> output in a more machine friendly format
|
|
1190
|
-
<options: json|yaml>
|
|
1191
|
-
|
|
1192
|
-
DESCRIPTION
|
|
1193
|
-
Get a toplevel domain.
|
|
1194
|
-
```
|
|
1195
|
-
|
|
1196
|
-
## `mw domain tld list`
|
|
1197
|
-
|
|
1198
|
-
List all supported toplevel domains.
|
|
1199
|
-
|
|
1200
|
-
```
|
|
1201
|
-
USAGE
|
|
1202
|
-
$ mw domain tld list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
1203
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
1204
|
-
|
|
1205
|
-
FLAGS
|
|
1206
|
-
-x, --extended show extra columns
|
|
1207
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1208
|
-
--csv output is csv format [alias: --output=csv]
|
|
1209
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1210
|
-
--no-header hide table header from output
|
|
1211
|
-
--no-truncate do not truncate output to fit screen
|
|
1212
|
-
--output=<option> output in a more machine friendly format
|
|
1213
|
-
<options: csv|json|yaml>
|
|
1214
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1215
|
-
|
|
1216
|
-
DESCRIPTION
|
|
1217
|
-
List all supported toplevel domains.
|
|
1218
|
-
```
|
|
1219
|
-
|
|
1220
|
-
## `mw domain virtualhost get INGRESSID`
|
|
1221
|
-
|
|
1222
|
-
Get an Ingress.
|
|
1223
|
-
|
|
1224
|
-
```
|
|
1225
|
-
USAGE
|
|
1226
|
-
$ mw domain virtualhost get INGRESSID [--output json|yaml | | ]
|
|
1227
|
-
|
|
1228
|
-
ARGUMENTS
|
|
1229
|
-
INGRESSID ID of the Ingress to be retrieved.
|
|
1230
|
-
|
|
1231
|
-
FLAGS
|
|
1232
|
-
--output=<option> output in a more machine friendly format
|
|
1233
|
-
<options: json|yaml>
|
|
1234
|
-
|
|
1235
|
-
DESCRIPTION
|
|
1236
|
-
Get an Ingress.
|
|
1237
|
-
```
|
|
1238
|
-
|
|
1239
|
-
## `mw domain virtualhost list`
|
|
1240
|
-
|
|
1241
|
-
List Ingresses the user has access to.
|
|
1242
|
-
|
|
1243
|
-
```
|
|
1244
|
-
USAGE
|
|
1245
|
-
$ mw domain virtualhost list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
1246
|
-
[--csv | --no-truncate]] [--no-header | ] [--project-id <value>]
|
|
1247
|
-
|
|
1248
|
-
FLAGS
|
|
1249
|
-
-x, --extended show extra columns
|
|
1250
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1251
|
-
--csv output is csv format [alias: --output=csv]
|
|
1252
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1253
|
-
--no-header hide table header from output
|
|
1254
|
-
--no-truncate do not truncate output to fit screen
|
|
1255
|
-
--output=<option> output in a more machine friendly format
|
|
1256
|
-
<options: csv|json|yaml>
|
|
1257
|
-
--project-id=<value> Project ID to filter by; if omitted this will list virtual hosts in all projects you have access
|
|
1258
|
-
to.
|
|
1259
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1260
|
-
|
|
1261
|
-
DESCRIPTION
|
|
1262
|
-
List Ingresses the user has access to.
|
|
1263
|
-
```
|
|
1264
|
-
|
|
1265
|
-
## `mw help [COMMANDS]`
|
|
1266
|
-
|
|
1267
|
-
Display help for mw.
|
|
1268
|
-
|
|
1269
|
-
```
|
|
1270
|
-
USAGE
|
|
1271
|
-
$ mw help [COMMANDS] [-n]
|
|
1272
|
-
|
|
1273
|
-
ARGUMENTS
|
|
1274
|
-
COMMANDS Command to show help for.
|
|
1275
|
-
|
|
1276
|
-
FLAGS
|
|
1277
|
-
-n, --nested-commands Include all nested commands in the output.
|
|
1278
|
-
|
|
1279
|
-
DESCRIPTION
|
|
1280
|
-
Display help for mw.
|
|
1281
|
-
```
|
|
1282
|
-
|
|
1283
|
-
_See code:
|
|
1284
|
-
[@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.11/src/commands/help.ts)_
|
|
1285
|
-
|
|
1286
|
-
## `mw login status`
|
|
1287
|
-
|
|
1288
|
-
Checks your current authentication status
|
|
1289
|
-
|
|
1290
|
-
```
|
|
1291
|
-
USAGE
|
|
1292
|
-
$ mw login status
|
|
1293
|
-
|
|
1294
|
-
DESCRIPTION
|
|
1295
|
-
Checks your current authentication status
|
|
1296
|
-
```
|
|
1297
|
-
|
|
1298
|
-
## `mw login token`
|
|
1299
|
-
|
|
1300
|
-
Authenticate using an API token
|
|
1301
|
-
|
|
1302
|
-
```
|
|
1303
|
-
USAGE
|
|
1304
|
-
$ mw login token [-o]
|
|
1305
|
-
|
|
1306
|
-
FLAGS
|
|
1307
|
-
-o, --overwrite overwrite existing token file
|
|
1308
|
-
|
|
1309
|
-
DESCRIPTION
|
|
1310
|
-
Authenticate using an API token
|
|
1311
|
-
```
|
|
1312
|
-
|
|
1313
|
-
## `mw mail address create`
|
|
1314
|
-
|
|
1315
|
-
Create a new mail address
|
|
1316
|
-
|
|
1317
|
-
```
|
|
1318
|
-
USAGE
|
|
1319
|
-
$ mw mail address create -p <value> -a <value> [--catch-all] [--enable-spam-protection] [--quota <value>]
|
|
1320
|
-
|
|
1321
|
-
FLAGS
|
|
1322
|
-
-a, --address=<value> (required) Mail address
|
|
1323
|
-
-p, --projectId=<value> (required) Project ID or short ID
|
|
1324
|
-
--catch-all Make this a catch-all mail address
|
|
1325
|
-
--[no-]enable-spam-protection Enable spam protection for this mailbox
|
|
1326
|
-
--quota=<value> [default: 1024] Mailbox quota in mebibytes
|
|
1327
|
-
|
|
1328
|
-
DESCRIPTION
|
|
1329
|
-
Create a new mail address
|
|
1330
|
-
```
|
|
1331
|
-
|
|
1332
|
-
## `mw mail address delete ID`
|
|
1333
|
-
|
|
1334
|
-
Delete a mail address
|
|
1335
|
-
|
|
1336
|
-
```
|
|
1337
|
-
USAGE
|
|
1338
|
-
$ mw mail address delete ID [--force]
|
|
1339
|
-
|
|
1340
|
-
ARGUMENTS
|
|
1341
|
-
ID Mail address ID
|
|
1342
|
-
|
|
1343
|
-
FLAGS
|
|
1344
|
-
--force Do not ask for confirmation
|
|
1345
|
-
|
|
1346
|
-
DESCRIPTION
|
|
1347
|
-
Delete a mail address
|
|
1348
|
-
```
|
|
1349
|
-
|
|
1350
|
-
## `mw mail address get ID`
|
|
1351
|
-
|
|
1352
|
-
Get a specific mail address
|
|
1353
|
-
|
|
1354
|
-
```
|
|
1355
|
-
USAGE
|
|
1356
|
-
$ mw mail address get ID [--output json|yaml | | ]
|
|
1357
|
-
|
|
1358
|
-
ARGUMENTS
|
|
1359
|
-
ID id of the address you want to get
|
|
1360
|
-
|
|
1361
|
-
FLAGS
|
|
1362
|
-
--output=<option> output in a more machine friendly format
|
|
1363
|
-
<options: json|yaml>
|
|
1364
|
-
|
|
1365
|
-
DESCRIPTION
|
|
1366
|
-
Get a specific mail address
|
|
1367
|
-
```
|
|
1368
|
-
|
|
1369
|
-
## `mw mail address list`
|
|
1370
|
-
|
|
1371
|
-
Get all mail addresses for a project ID
|
|
1372
|
-
|
|
1373
|
-
```
|
|
1374
|
-
USAGE
|
|
1375
|
-
$ mw mail address list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
1376
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
1377
|
-
|
|
1378
|
-
FLAGS
|
|
1379
|
-
-x, --extended show extra columns
|
|
1380
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1381
|
-
--csv output is csv format [alias: --output=csv]
|
|
1382
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1383
|
-
--no-header hide table header from output
|
|
1384
|
-
--no-truncate do not truncate output to fit screen
|
|
1385
|
-
--output=<option> output in a more machine friendly format
|
|
1386
|
-
<options: csv|json|yaml>
|
|
1387
|
-
--project-id=<value> (required) Project ID the mailAddresses are related to
|
|
1388
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1389
|
-
|
|
1390
|
-
DESCRIPTION
|
|
1391
|
-
Get all mail addresses for a project ID
|
|
1392
|
-
```
|
|
1393
|
-
|
|
1394
|
-
## `mw mail deliverybox get ID`
|
|
1395
|
-
|
|
1396
|
-
Get a specific deliverybox
|
|
1397
|
-
|
|
1398
|
-
```
|
|
1399
|
-
USAGE
|
|
1400
|
-
$ mw mail deliverybox get ID [--output json|yaml | | ]
|
|
1401
|
-
|
|
1402
|
-
ARGUMENTS
|
|
1403
|
-
ID ID of the deliverybox you want to retrieve
|
|
1404
|
-
|
|
1405
|
-
FLAGS
|
|
1406
|
-
--output=<option> output in a more machine friendly format
|
|
1407
|
-
<options: json|yaml>
|
|
1408
|
-
|
|
1409
|
-
DESCRIPTION
|
|
1410
|
-
Get a specific deliverybox
|
|
1411
|
-
```
|
|
1412
|
-
|
|
1413
|
-
## `mw mail deliverybox list`
|
|
1414
|
-
|
|
1415
|
-
Get all deliveryboxes by project ID
|
|
1416
|
-
|
|
1417
|
-
```
|
|
1418
|
-
USAGE
|
|
1419
|
-
$ mw mail deliverybox list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
1420
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
1421
|
-
|
|
1422
|
-
FLAGS
|
|
1423
|
-
-x, --extended show extra columns
|
|
1424
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1425
|
-
--csv output is csv format [alias: --output=csv]
|
|
1426
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1427
|
-
--no-header hide table header from output
|
|
1428
|
-
--no-truncate do not truncate output to fit screen
|
|
1429
|
-
--output=<option> output in a more machine friendly format
|
|
1430
|
-
<options: csv|json|yaml>
|
|
1431
|
-
--project-id=<value> (required) Project ID the deliveryboxes are related to
|
|
1432
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1433
|
-
|
|
1434
|
-
DESCRIPTION
|
|
1435
|
-
Get all deliveryboxes by project ID
|
|
1436
|
-
```
|
|
1437
|
-
|
|
1438
|
-
## `mw org can-order`
|
|
1439
|
-
|
|
1440
|
-
Check if the customer profile has a valid contract partner configured.
|
|
1441
|
-
|
|
1442
|
-
```
|
|
1443
|
-
USAGE
|
|
1444
|
-
$ mw org can-order --customer-id <value> [--output json|yaml | | ]
|
|
1445
|
-
|
|
1446
|
-
FLAGS
|
|
1447
|
-
--customer-id=<value> (required) undefined
|
|
1448
|
-
--output=<option> output in a more machine friendly format
|
|
1449
|
-
<options: json|yaml>
|
|
1450
|
-
|
|
1451
|
-
DESCRIPTION
|
|
1452
|
-
Check if the customer profile has a valid contract partner configured.
|
|
1453
|
-
```
|
|
1454
|
-
|
|
1455
|
-
## `mw org get CUSTOMERID`
|
|
1456
|
-
|
|
1457
|
-
Get a customer profile.
|
|
1458
|
-
|
|
1459
|
-
```
|
|
1460
|
-
USAGE
|
|
1461
|
-
$ mw org get CUSTOMERID [--output json|yaml | | ]
|
|
1462
|
-
|
|
1463
|
-
ARGUMENTS
|
|
1464
|
-
CUSTOMERID undefined
|
|
1465
|
-
|
|
1466
|
-
FLAGS
|
|
1467
|
-
--output=<option> output in a more machine friendly format
|
|
1468
|
-
<options: json|yaml>
|
|
1469
|
-
|
|
1470
|
-
DESCRIPTION
|
|
1471
|
-
Get a customer profile.
|
|
1472
|
-
```
|
|
1473
|
-
|
|
1474
|
-
## `mw org invite get INVITEID`
|
|
1475
|
-
|
|
1476
|
-
Get a CustomerInvite.
|
|
1477
|
-
|
|
1478
|
-
```
|
|
1479
|
-
USAGE
|
|
1480
|
-
$ mw org invite get INVITEID [--output json|yaml | | ]
|
|
1481
|
-
|
|
1482
|
-
ARGUMENTS
|
|
1483
|
-
INVITEID ID of the CustomerInvite to be retrieved.
|
|
1484
|
-
|
|
1485
|
-
FLAGS
|
|
1486
|
-
--output=<option> output in a more machine friendly format
|
|
1487
|
-
<options: json|yaml>
|
|
1488
|
-
|
|
1489
|
-
DESCRIPTION
|
|
1490
|
-
Get a CustomerInvite.
|
|
1491
|
-
```
|
|
1492
|
-
|
|
1493
|
-
## `mw org invite list`
|
|
1494
|
-
|
|
1495
|
-
List all invites for a Customer.
|
|
1496
|
-
|
|
1497
|
-
```
|
|
1498
|
-
USAGE
|
|
1499
|
-
$ mw org invite list --customer-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
1500
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
1501
|
-
|
|
1502
|
-
FLAGS
|
|
1503
|
-
-x, --extended show extra columns
|
|
1504
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1505
|
-
--csv output is csv format [alias: --output=csv]
|
|
1506
|
-
--customer-id=<value> (required) ID of the Customer to list invites for.
|
|
1507
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1508
|
-
--no-header hide table header from output
|
|
1509
|
-
--no-truncate do not truncate output to fit screen
|
|
1510
|
-
--output=<option> output in a more machine friendly format
|
|
1511
|
-
<options: csv|json|yaml>
|
|
1512
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1513
|
-
|
|
1514
|
-
DESCRIPTION
|
|
1515
|
-
List all invites for a Customer.
|
|
1516
|
-
```
|
|
1517
|
-
|
|
1518
|
-
## `mw org invite list-own`
|
|
1519
|
-
|
|
1520
|
-
List all CustomerInvites for the executing user.
|
|
1521
|
-
|
|
1522
|
-
```
|
|
1523
|
-
USAGE
|
|
1524
|
-
$ mw org invite list-own [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
1525
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
1526
|
-
|
|
1527
|
-
FLAGS
|
|
1528
|
-
-x, --extended show extra columns
|
|
1529
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1530
|
-
--csv output is csv format [alias: --output=csv]
|
|
1531
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1532
|
-
--no-header hide table header from output
|
|
1533
|
-
--no-truncate do not truncate output to fit screen
|
|
1534
|
-
--output=<option> output in a more machine friendly format
|
|
1535
|
-
<options: csv|json|yaml>
|
|
1536
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1537
|
-
|
|
1538
|
-
DESCRIPTION
|
|
1539
|
-
List all CustomerInvites for the executing user.
|
|
1540
|
-
```
|
|
1541
|
-
|
|
1542
|
-
## `mw org list`
|
|
1543
|
-
|
|
1544
|
-
Get all customer profiles the authenticated user has access to.
|
|
1545
|
-
|
|
1546
|
-
```
|
|
1547
|
-
USAGE
|
|
1548
|
-
$ mw org list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
1549
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
1550
|
-
|
|
1551
|
-
FLAGS
|
|
1552
|
-
-x, --extended show extra columns
|
|
1553
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1554
|
-
--csv output is csv format [alias: --output=csv]
|
|
1555
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1556
|
-
--no-header hide table header from output
|
|
1557
|
-
--no-truncate do not truncate output to fit screen
|
|
1558
|
-
--output=<option> output in a more machine friendly format
|
|
1559
|
-
<options: csv|json|yaml>
|
|
1560
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1561
|
-
|
|
1562
|
-
DESCRIPTION
|
|
1563
|
-
Get all customer profiles the authenticated user has access to.
|
|
1564
|
-
```
|
|
1565
|
-
|
|
1566
|
-
## `mw org membership get MEMBERSHIPID`
|
|
1567
|
-
|
|
1568
|
-
Get a CustomerMembership.
|
|
1569
|
-
|
|
1570
|
-
```
|
|
1571
|
-
USAGE
|
|
1572
|
-
$ mw org membership get MEMBERSHIPID [--output json|yaml | | ]
|
|
1573
|
-
|
|
1574
|
-
ARGUMENTS
|
|
1575
|
-
MEMBERSHIPID ID of the CustomerMembership to retrieve.
|
|
1576
|
-
|
|
1577
|
-
FLAGS
|
|
1578
|
-
--output=<option> output in a more machine friendly format
|
|
1579
|
-
<options: json|yaml>
|
|
1580
|
-
|
|
1581
|
-
DESCRIPTION
|
|
1582
|
-
Get a CustomerMembership.
|
|
1583
|
-
```
|
|
1584
|
-
|
|
1585
|
-
## `mw org membership list`
|
|
1586
|
-
|
|
1587
|
-
List all memberships belonging to a Customer.
|
|
1588
|
-
|
|
1589
|
-
```
|
|
1590
|
-
USAGE
|
|
1591
|
-
$ mw org membership list --customer-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
1592
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
1593
|
-
|
|
1594
|
-
FLAGS
|
|
1595
|
-
-x, --extended show extra columns
|
|
1596
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1597
|
-
--csv output is csv format [alias: --output=csv]
|
|
1598
|
-
--customer-id=<value> (required) Customer to list memberships for.
|
|
1599
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1600
|
-
--no-header hide table header from output
|
|
1601
|
-
--no-truncate do not truncate output to fit screen
|
|
1602
|
-
--output=<option> output in a more machine friendly format
|
|
1603
|
-
<options: csv|json|yaml>
|
|
1604
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1605
|
-
|
|
1606
|
-
DESCRIPTION
|
|
1607
|
-
List all memberships belonging to a Customer.
|
|
1608
|
-
```
|
|
1609
|
-
|
|
1610
|
-
## `mw org membership list-own`
|
|
1611
|
-
|
|
1612
|
-
List all CustomerMemberships for the executing user.
|
|
1613
|
-
|
|
1614
|
-
```
|
|
1615
|
-
USAGE
|
|
1616
|
-
$ mw org membership list-own [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
1617
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
1618
|
-
|
|
1619
|
-
FLAGS
|
|
1620
|
-
-x, --extended show extra columns
|
|
1621
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1622
|
-
--csv output is csv format [alias: --output=csv]
|
|
1623
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1624
|
-
--no-header hide table header from output
|
|
1625
|
-
--no-truncate do not truncate output to fit screen
|
|
1626
|
-
--output=<option> output in a more machine friendly format
|
|
1627
|
-
<options: csv|json|yaml>
|
|
1628
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1629
|
-
|
|
1630
|
-
DESCRIPTION
|
|
1631
|
-
List all CustomerMemberships for the executing user.
|
|
1632
|
-
```
|
|
1633
|
-
|
|
1634
|
-
## `mw project backup get PROJECTBACKUPID`
|
|
1635
|
-
|
|
1636
|
-
Get a ProjectBackup.
|
|
1637
|
-
|
|
1638
|
-
```
|
|
1639
|
-
USAGE
|
|
1640
|
-
$ mw project backup get PROJECTBACKUPID [--output json|yaml | | ]
|
|
1641
|
-
|
|
1642
|
-
ARGUMENTS
|
|
1643
|
-
PROJECTBACKUPID ID of the ProjectBackup to retrieve.
|
|
1644
|
-
|
|
1645
|
-
FLAGS
|
|
1646
|
-
--output=<option> output in a more machine friendly format
|
|
1647
|
-
<options: json|yaml>
|
|
1648
|
-
|
|
1649
|
-
DESCRIPTION
|
|
1650
|
-
Get a ProjectBackup.
|
|
1651
|
-
```
|
|
1652
|
-
|
|
1653
|
-
## `mw project backup list`
|
|
1654
|
-
|
|
1655
|
-
List Backups for a given Project.
|
|
1656
|
-
|
|
1657
|
-
```
|
|
1658
|
-
USAGE
|
|
1659
|
-
$ mw project backup list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
1660
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
1661
|
-
|
|
1662
|
-
FLAGS
|
|
1663
|
-
-x, --extended show extra columns
|
|
1664
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1665
|
-
--csv output is csv format [alias: --output=csv]
|
|
1666
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1667
|
-
--no-header hide table header from output
|
|
1668
|
-
--no-truncate do not truncate output to fit screen
|
|
1669
|
-
--output=<option> output in a more machine friendly format
|
|
1670
|
-
<options: csv|json|yaml>
|
|
1671
|
-
--project-id=<value> (required) ID of the Project to get Backups for.
|
|
1672
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1673
|
-
|
|
1674
|
-
DESCRIPTION
|
|
1675
|
-
List Backups for a given Project.
|
|
1676
|
-
```
|
|
1677
|
-
|
|
1678
|
-
## `mw project backupschedule get PROJECTBACKUPSCHEDULEID`
|
|
1679
|
-
|
|
1680
|
-
Get a ProjectBackupSchedule.
|
|
1681
|
-
|
|
1682
|
-
```
|
|
1683
|
-
USAGE
|
|
1684
|
-
$ mw project backupschedule get PROJECTBACKUPSCHEDULEID [--output json|yaml | | ]
|
|
1685
|
-
|
|
1686
|
-
ARGUMENTS
|
|
1687
|
-
PROJECTBACKUPSCHEDULEID ID of the ProjectBackupSchedule to retrieve.
|
|
1688
|
-
|
|
1689
|
-
FLAGS
|
|
1690
|
-
--output=<option> output in a more machine friendly format
|
|
1691
|
-
<options: json|yaml>
|
|
1692
|
-
|
|
1693
|
-
DESCRIPTION
|
|
1694
|
-
Get a ProjectBackupSchedule.
|
|
1695
|
-
```
|
|
1696
|
-
|
|
1697
|
-
## `mw project backupschedule list`
|
|
1698
|
-
|
|
1699
|
-
List BackupSchedules belonging to a given Project.
|
|
1700
|
-
|
|
1701
|
-
```
|
|
1702
|
-
USAGE
|
|
1703
|
-
$ mw project backupschedule list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
1704
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
1705
|
-
|
|
1706
|
-
FLAGS
|
|
1707
|
-
-x, --extended show extra columns
|
|
1708
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1709
|
-
--csv output is csv format [alias: --output=csv]
|
|
1710
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1711
|
-
--no-header hide table header from output
|
|
1712
|
-
--no-truncate do not truncate output to fit screen
|
|
1713
|
-
--output=<option> output in a more machine friendly format
|
|
1714
|
-
<options: csv|json|yaml>
|
|
1715
|
-
--project-id=<value> (required) ID of the Project to list BackupSchedules for.
|
|
1716
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1717
|
-
|
|
1718
|
-
DESCRIPTION
|
|
1719
|
-
List BackupSchedules belonging to a given Project.
|
|
1720
|
-
```
|
|
1721
|
-
|
|
1722
|
-
## `mw project create`
|
|
1723
|
-
|
|
1724
|
-
Get the details of a project
|
|
1725
|
-
|
|
1726
|
-
```
|
|
1727
|
-
USAGE
|
|
1728
|
-
$ mw project create -s <value> -d <value> [-w]
|
|
1729
|
-
|
|
1730
|
-
FLAGS
|
|
1731
|
-
-d, --description=<value> (required) A description for the project.
|
|
1732
|
-
-s, --server-id=<value> (required) ID of the Server, in which the project is to be created.
|
|
1733
|
-
-w, --wait Wait for the project to be ready.
|
|
1734
|
-
|
|
1735
|
-
DESCRIPTION
|
|
1736
|
-
Get the details of a project
|
|
1737
|
-
```
|
|
1738
|
-
|
|
1739
|
-
## `mw project cronjob execution get EXECUTIONID`
|
|
1740
|
-
|
|
1741
|
-
Get a CronjobExecution.
|
|
1742
|
-
|
|
1743
|
-
```
|
|
1744
|
-
USAGE
|
|
1745
|
-
$ mw project cronjob execution get EXECUTIONID --cronjob-id <value> [--output json|yaml | | ]
|
|
1746
|
-
|
|
1747
|
-
ARGUMENTS
|
|
1748
|
-
EXECUTIONID ID of the CronjobExecution to be retrieved.
|
|
1749
|
-
|
|
1750
|
-
FLAGS
|
|
1751
|
-
--cronjob-id=<value> (required) undefined
|
|
1752
|
-
--output=<option> output in a more machine friendly format
|
|
1753
|
-
<options: json|yaml>
|
|
1754
|
-
|
|
1755
|
-
DESCRIPTION
|
|
1756
|
-
Get a CronjobExecution.
|
|
1757
|
-
```
|
|
1758
|
-
|
|
1759
|
-
## `mw project cronjob execution list`
|
|
1760
|
-
|
|
1761
|
-
List CronjobExecutions belonging to a Cronjob.
|
|
1762
|
-
|
|
1763
|
-
```
|
|
1764
|
-
USAGE
|
|
1765
|
-
$ mw project cronjob execution list --cronjob-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
1766
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
1767
|
-
|
|
1768
|
-
FLAGS
|
|
1769
|
-
-x, --extended show extra columns
|
|
1770
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1771
|
-
--cronjob-id=<value> (required) ID of the Cronjob for which to list CronjobExecutions for.
|
|
1772
|
-
--csv output is csv format [alias: --output=csv]
|
|
1773
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1774
|
-
--no-header hide table header from output
|
|
1775
|
-
--no-truncate do not truncate output to fit screen
|
|
1776
|
-
--output=<option> output in a more machine friendly format
|
|
1777
|
-
<options: csv|json|yaml>
|
|
1778
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1779
|
-
|
|
1780
|
-
DESCRIPTION
|
|
1781
|
-
List CronjobExecutions belonging to a Cronjob.
|
|
1782
|
-
```
|
|
1783
|
-
|
|
1784
|
-
## `mw project cronjob get CRONJOBID`
|
|
1785
|
-
|
|
1786
|
-
Get a Cronjob.
|
|
1787
|
-
|
|
1788
|
-
```
|
|
1789
|
-
USAGE
|
|
1790
|
-
$ mw project cronjob get CRONJOBID [--output json|yaml | | ]
|
|
1791
|
-
|
|
1792
|
-
ARGUMENTS
|
|
1793
|
-
CRONJOBID ID of the Cronjob to be retrieved.
|
|
1794
|
-
|
|
1795
|
-
FLAGS
|
|
1796
|
-
--output=<option> output in a more machine friendly format
|
|
1797
|
-
<options: json|yaml>
|
|
1798
|
-
|
|
1799
|
-
DESCRIPTION
|
|
1800
|
-
Get a Cronjob.
|
|
1801
|
-
```
|
|
1802
|
-
|
|
1803
|
-
## `mw project cronjob list`
|
|
1804
|
-
|
|
1805
|
-
List Cronjobs belonging to a Project.
|
|
1806
|
-
|
|
1807
|
-
```
|
|
1808
|
-
USAGE
|
|
1809
|
-
$ mw project cronjob list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
1810
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
1811
|
-
|
|
1812
|
-
FLAGS
|
|
1813
|
-
-x, --extended show extra columns
|
|
1814
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1815
|
-
--csv output is csv format [alias: --output=csv]
|
|
1816
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1817
|
-
--no-header hide table header from output
|
|
1818
|
-
--no-truncate do not truncate output to fit screen
|
|
1819
|
-
--output=<option> output in a more machine friendly format
|
|
1820
|
-
<options: csv|json|yaml>
|
|
1821
|
-
--project-id=<value> (required) ID of the Project for which to list Cronjobs for.
|
|
1822
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1823
|
-
|
|
1824
|
-
DESCRIPTION
|
|
1825
|
-
List Cronjobs belonging to a Project.
|
|
1826
|
-
```
|
|
1827
|
-
|
|
1828
|
-
## `mw project delete ID`
|
|
1829
|
-
|
|
1830
|
-
Delete a project
|
|
1831
|
-
|
|
1832
|
-
```
|
|
1833
|
-
USAGE
|
|
1834
|
-
$ mw project delete ID [--force]
|
|
1835
|
-
|
|
1836
|
-
ARGUMENTS
|
|
1837
|
-
ID ID of the Project to be deleted.
|
|
1838
|
-
|
|
1839
|
-
FLAGS
|
|
1840
|
-
--force Do not ask for confirmation
|
|
1841
|
-
|
|
1842
|
-
DESCRIPTION
|
|
1843
|
-
Delete a project
|
|
1844
|
-
```
|
|
1845
|
-
|
|
1846
|
-
## `mw project filesystem directories`
|
|
1847
|
-
|
|
1848
|
-
List the directories of a Project.
|
|
1849
|
-
|
|
1850
|
-
```
|
|
1851
|
-
USAGE
|
|
1852
|
-
$ mw project filesystem directories --project-id <value> [--output json|yaml | | ]
|
|
1853
|
-
|
|
1854
|
-
FLAGS
|
|
1855
|
-
--output=<option> output in a more machine friendly format
|
|
1856
|
-
<options: json|yaml>
|
|
1857
|
-
--project-id=<value> (required) ID of the Project to list the directories for.
|
|
1858
|
-
|
|
1859
|
-
DESCRIPTION
|
|
1860
|
-
List the directories of a Project.
|
|
1861
|
-
```
|
|
1862
|
-
|
|
1863
|
-
## `mw project filesystem file-content`
|
|
1864
|
-
|
|
1865
|
-
Get a Project file's content.
|
|
1866
|
-
|
|
1867
|
-
```
|
|
1868
|
-
USAGE
|
|
1869
|
-
$ mw project filesystem file-content --project-id <value> [--output json|yaml | | ]
|
|
1870
|
-
|
|
1871
|
-
FLAGS
|
|
1872
|
-
--output=<option> output in a more machine friendly format
|
|
1873
|
-
<options: json|yaml>
|
|
1874
|
-
--project-id=<value> (required) ID of the Project.
|
|
1875
|
-
|
|
1876
|
-
DESCRIPTION
|
|
1877
|
-
Get a Project file's content.
|
|
1878
|
-
```
|
|
1879
|
-
|
|
1880
|
-
## `mw project filesystem files PROJECTID`
|
|
1881
|
-
|
|
1882
|
-
Get a foooooooo.
|
|
1883
|
-
|
|
1884
|
-
```
|
|
1885
|
-
USAGE
|
|
1886
|
-
$ mw project filesystem files PROJECTID [--output json|yaml | | ]
|
|
1887
|
-
|
|
1888
|
-
ARGUMENTS
|
|
1889
|
-
PROJECTID ID of the Project.
|
|
1890
|
-
|
|
1891
|
-
FLAGS
|
|
1892
|
-
--output=<option> output in a more machine friendly format
|
|
1893
|
-
<options: json|yaml>
|
|
1894
|
-
|
|
1895
|
-
DESCRIPTION
|
|
1896
|
-
Get a foooooooo.
|
|
1897
|
-
```
|
|
1898
|
-
|
|
1899
|
-
## `mw project filesystem usage`
|
|
1900
|
-
|
|
1901
|
-
Get a Project directory filesystem usage.
|
|
1902
|
-
|
|
1903
|
-
```
|
|
1904
|
-
USAGE
|
|
1905
|
-
$ mw project filesystem usage --project-id <value> [--output json|yaml | | ]
|
|
1906
|
-
|
|
1907
|
-
FLAGS
|
|
1908
|
-
--output=<option> output in a more machine friendly format
|
|
1909
|
-
<options: json|yaml>
|
|
1910
|
-
--project-id=<value> (required) ID of the Project.
|
|
1911
|
-
|
|
1912
|
-
DESCRIPTION
|
|
1913
|
-
Get a Project directory filesystem usage.
|
|
1914
|
-
```
|
|
1915
|
-
|
|
1916
|
-
## `mw project get ID`
|
|
1917
|
-
|
|
1918
|
-
Get a Project.
|
|
1919
|
-
|
|
1920
|
-
```
|
|
1921
|
-
USAGE
|
|
1922
|
-
$ mw project get ID [--output json|yaml | | ]
|
|
1923
|
-
|
|
1924
|
-
ARGUMENTS
|
|
1925
|
-
ID ID of the Project to be retrieved.
|
|
1926
|
-
|
|
1927
|
-
FLAGS
|
|
1928
|
-
--output=<option> output in a more machine friendly format
|
|
1929
|
-
<options: json|yaml>
|
|
1930
|
-
|
|
1931
|
-
DESCRIPTION
|
|
1932
|
-
Get a Project.
|
|
1933
|
-
```
|
|
1934
|
-
|
|
1935
|
-
## `mw project invite get INVITEID`
|
|
1936
|
-
|
|
1937
|
-
Get a ProjectInvite.
|
|
1938
|
-
|
|
1939
|
-
```
|
|
1940
|
-
USAGE
|
|
1941
|
-
$ mw project invite get INVITEID [--output json|yaml | | ]
|
|
1942
|
-
|
|
1943
|
-
ARGUMENTS
|
|
1944
|
-
INVITEID ID of the ProjectInvite to be retrieved.
|
|
1945
|
-
|
|
1946
|
-
FLAGS
|
|
1947
|
-
--output=<option> output in a more machine friendly format
|
|
1948
|
-
<options: json|yaml>
|
|
1949
|
-
|
|
1950
|
-
DESCRIPTION
|
|
1951
|
-
Get a ProjectInvite.
|
|
1952
|
-
```
|
|
1953
|
-
|
|
1954
|
-
## `mw project invite list`
|
|
1955
|
-
|
|
1956
|
-
List all invites belonging to a Project.
|
|
1957
|
-
|
|
1958
|
-
```
|
|
1959
|
-
USAGE
|
|
1960
|
-
$ mw project invite list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
1961
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
1962
|
-
|
|
1963
|
-
FLAGS
|
|
1964
|
-
-x, --extended show extra columns
|
|
1965
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1966
|
-
--csv output is csv format [alias: --output=csv]
|
|
1967
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1968
|
-
--no-header hide table header from output
|
|
1969
|
-
--no-truncate do not truncate output to fit screen
|
|
1970
|
-
--output=<option> output in a more machine friendly format
|
|
1971
|
-
<options: csv|json|yaml>
|
|
1972
|
-
--project-id=<value> (required) ID of the Project to list invites for.
|
|
1973
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1974
|
-
|
|
1975
|
-
DESCRIPTION
|
|
1976
|
-
List all invites belonging to a Project.
|
|
1977
|
-
```
|
|
1978
|
-
|
|
1979
|
-
## `mw project invite list-own`
|
|
1980
|
-
|
|
1981
|
-
List all ProjectInvites for the executing user.
|
|
1982
|
-
|
|
1983
|
-
```
|
|
1984
|
-
USAGE
|
|
1985
|
-
$ mw project invite list-own [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
1986
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
1987
|
-
|
|
1988
|
-
FLAGS
|
|
1989
|
-
-x, --extended show extra columns
|
|
1990
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
1991
|
-
--csv output is csv format [alias: --output=csv]
|
|
1992
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
1993
|
-
--no-header hide table header from output
|
|
1994
|
-
--no-truncate do not truncate output to fit screen
|
|
1995
|
-
--output=<option> output in a more machine friendly format
|
|
1996
|
-
<options: csv|json|yaml>
|
|
1997
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
1998
|
-
|
|
1999
|
-
DESCRIPTION
|
|
2000
|
-
List all ProjectInvites for the executing user.
|
|
2001
|
-
```
|
|
2002
|
-
|
|
2003
|
-
## `mw project list`
|
|
2004
|
-
|
|
2005
|
-
List Project's for an Organization or Server.
|
|
2006
|
-
|
|
2007
|
-
```
|
|
2008
|
-
USAGE
|
|
2009
|
-
$ mw project list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
2010
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
2011
|
-
|
|
2012
|
-
FLAGS
|
|
2013
|
-
-x, --extended show extra columns
|
|
2014
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
2015
|
-
--csv output is csv format [alias: --output=csv]
|
|
2016
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
2017
|
-
--no-header hide table header from output
|
|
2018
|
-
--no-truncate do not truncate output to fit screen
|
|
2019
|
-
--output=<option> output in a more machine friendly format
|
|
2020
|
-
<options: csv|json|yaml>
|
|
2021
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
2022
|
-
|
|
2023
|
-
DESCRIPTION
|
|
2024
|
-
List Project's for an Organization or Server.
|
|
2025
|
-
```
|
|
2026
|
-
|
|
2027
|
-
## `mw project list1`
|
|
2028
|
-
|
|
2029
|
-
```
|
|
2030
|
-
USAGE
|
|
2031
|
-
$ mw project list1 [--columns <value>]
|
|
2032
|
-
|
|
2033
|
-
FLAGS
|
|
2034
|
-
--columns=<value>...
|
|
2035
|
-
```
|
|
2036
|
-
|
|
2037
|
-
## `mw project list2`
|
|
2038
|
-
|
|
2039
|
-
```
|
|
2040
|
-
USAGE
|
|
2041
|
-
$ mw project list2 [--wait] [--columns <value>]
|
|
2042
|
-
|
|
2043
|
-
FLAGS
|
|
2044
|
-
--columns=<value>...
|
|
2045
|
-
--wait
|
|
2046
|
-
```
|
|
2047
|
-
|
|
2048
|
-
## `mw project membership get MEMBERSHIPID`
|
|
2049
|
-
|
|
2050
|
-
Get a ProjectMembership
|
|
2051
|
-
|
|
2052
|
-
```
|
|
2053
|
-
USAGE
|
|
2054
|
-
$ mw project membership get MEMBERSHIPID [--output json|yaml | | ]
|
|
2055
|
-
|
|
2056
|
-
ARGUMENTS
|
|
2057
|
-
MEMBERSHIPID ID of the ProjectMembership to be retrieved.
|
|
2058
|
-
|
|
2059
|
-
FLAGS
|
|
2060
|
-
--output=<option> output in a more machine friendly format
|
|
2061
|
-
<options: json|yaml>
|
|
2062
|
-
|
|
2063
|
-
DESCRIPTION
|
|
2064
|
-
Get a ProjectMembership
|
|
2065
|
-
```
|
|
2066
|
-
|
|
2067
|
-
## `mw project membership get-own`
|
|
2068
|
-
|
|
2069
|
-
Get the executing user's membership in a Project.
|
|
2070
|
-
|
|
2071
|
-
```
|
|
2072
|
-
USAGE
|
|
2073
|
-
$ mw project membership get-own --project-id <value> [--output json|yaml | | ]
|
|
2074
|
-
|
|
2075
|
-
FLAGS
|
|
2076
|
-
--output=<option> output in a more machine friendly format
|
|
2077
|
-
<options: json|yaml>
|
|
2078
|
-
--project-id=<value> (required) ID of the Project to get the membership for.
|
|
2079
|
-
|
|
2080
|
-
DESCRIPTION
|
|
2081
|
-
Get the executing user's membership in a Project.
|
|
2082
|
-
```
|
|
2083
|
-
|
|
2084
|
-
## `mw project membership list`
|
|
2085
|
-
|
|
2086
|
-
List all memberships for a Project.
|
|
2087
|
-
|
|
2088
|
-
```
|
|
2089
|
-
USAGE
|
|
2090
|
-
$ mw project membership list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
2091
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
2092
|
-
|
|
2093
|
-
FLAGS
|
|
2094
|
-
-x, --extended show extra columns
|
|
2095
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
2096
|
-
--csv output is csv format [alias: --output=csv]
|
|
2097
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
2098
|
-
--no-header hide table header from output
|
|
2099
|
-
--no-truncate do not truncate output to fit screen
|
|
2100
|
-
--output=<option> output in a more machine friendly format
|
|
2101
|
-
<options: csv|json|yaml>
|
|
2102
|
-
--project-id=<value> (required) ID of the Project to list memberships for.
|
|
2103
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
2104
|
-
|
|
2105
|
-
DESCRIPTION
|
|
2106
|
-
List all memberships for a Project.
|
|
2107
|
-
```
|
|
2108
|
-
|
|
2109
|
-
## `mw project membership list-own`
|
|
2110
|
-
|
|
2111
|
-
List ProjectMemberships belonging to the executing user.
|
|
2112
|
-
|
|
2113
|
-
```
|
|
2114
|
-
USAGE
|
|
2115
|
-
$ mw project membership list-own [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
2116
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
2117
|
-
|
|
2118
|
-
FLAGS
|
|
2119
|
-
-x, --extended show extra columns
|
|
2120
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
2121
|
-
--csv output is csv format [alias: --output=csv]
|
|
2122
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
2123
|
-
--no-header hide table header from output
|
|
2124
|
-
--no-truncate do not truncate output to fit screen
|
|
2125
|
-
--output=<option> output in a more machine friendly format
|
|
2126
|
-
<options: csv|json|yaml>
|
|
2127
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
2128
|
-
|
|
2129
|
-
DESCRIPTION
|
|
2130
|
-
List ProjectMemberships belonging to the executing user.
|
|
2131
|
-
```
|
|
2132
|
-
|
|
2133
|
-
## `mw project sftp-user list`
|
|
2134
|
-
|
|
2135
|
-
Get all SFTPUsers for a Project.
|
|
2136
|
-
|
|
2137
|
-
```
|
|
2138
|
-
USAGE
|
|
2139
|
-
$ mw project sftp-user list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
2140
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
2141
|
-
|
|
2142
|
-
FLAGS
|
|
2143
|
-
-x, --extended show extra columns
|
|
2144
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
2145
|
-
--csv output is csv format [alias: --output=csv]
|
|
2146
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
2147
|
-
--no-header hide table header from output
|
|
2148
|
-
--no-truncate do not truncate output to fit screen
|
|
2149
|
-
--output=<option> output in a more machine friendly format
|
|
2150
|
-
<options: csv|json|yaml>
|
|
2151
|
-
--project-id=<value> (required) ID of the Project to request SFTPUsers for.
|
|
2152
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
2153
|
-
|
|
2154
|
-
DESCRIPTION
|
|
2155
|
-
Get all SFTPUsers for a Project.
|
|
2156
|
-
```
|
|
2157
|
-
|
|
2158
|
-
## `mw project ssh ID`
|
|
2159
|
-
|
|
2160
|
-
Connect to a project via SSH
|
|
2161
|
-
|
|
2162
|
-
```
|
|
2163
|
-
USAGE
|
|
2164
|
-
$ mw project ssh ID
|
|
2165
|
-
|
|
2166
|
-
ARGUMENTS
|
|
2167
|
-
ID ID of the Project to be retrieved.
|
|
2168
|
-
|
|
2169
|
-
DESCRIPTION
|
|
2170
|
-
Connect to a project via SSH
|
|
2171
|
-
```
|
|
2172
|
-
|
|
2173
|
-
## `mw project ssh-user list`
|
|
2174
|
-
|
|
2175
|
-
Get all SSHUsers for a Project.
|
|
2176
|
-
|
|
2177
|
-
```
|
|
2178
|
-
USAGE
|
|
2179
|
-
$ mw project ssh-user list --project-id <value> [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output
|
|
2180
|
-
csv|json|yaml | | [--csv | --no-truncate]] [--no-header | ]
|
|
2181
|
-
|
|
2182
|
-
FLAGS
|
|
2183
|
-
-x, --extended show extra columns
|
|
2184
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
2185
|
-
--csv output is csv format [alias: --output=csv]
|
|
2186
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
2187
|
-
--no-header hide table header from output
|
|
2188
|
-
--no-truncate do not truncate output to fit screen
|
|
2189
|
-
--output=<option> output in a more machine friendly format
|
|
2190
|
-
<options: csv|json|yaml>
|
|
2191
|
-
--project-id=<value> (required) ID of the Project to retrieve SSHUsers for.
|
|
2192
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
2193
|
-
|
|
2194
|
-
DESCRIPTION
|
|
2195
|
-
Get all SSHUsers for a Project.
|
|
2196
|
-
```
|
|
2197
|
-
|
|
2198
|
-
## `mw project update ID`
|
|
2199
|
-
|
|
2200
|
-
Updates a project
|
|
2201
|
-
|
|
2202
|
-
```
|
|
2203
|
-
USAGE
|
|
2204
|
-
$ mw project update ID
|
|
2205
|
-
|
|
2206
|
-
ARGUMENTS
|
|
2207
|
-
ID ID of the Project to be retrieved.
|
|
2208
|
-
|
|
2209
|
-
DESCRIPTION
|
|
2210
|
-
Updates a project
|
|
2211
|
-
```
|
|
2212
|
-
|
|
2213
|
-
## `mw server get SERVERID`
|
|
2214
|
-
|
|
2215
|
-
Get a Server.
|
|
2216
|
-
|
|
2217
|
-
```
|
|
2218
|
-
USAGE
|
|
2219
|
-
$ mw server get SERVERID [--output json|yaml | | ]
|
|
2220
|
-
|
|
2221
|
-
ARGUMENTS
|
|
2222
|
-
SERVERID ID of the Server to be retrieved.
|
|
2223
|
-
|
|
2224
|
-
FLAGS
|
|
2225
|
-
--output=<option> output in a more machine friendly format
|
|
2226
|
-
<options: json|yaml>
|
|
2227
|
-
|
|
2228
|
-
DESCRIPTION
|
|
2229
|
-
Get a Server.
|
|
2230
|
-
```
|
|
2231
|
-
|
|
2232
|
-
## `mw server list`
|
|
2233
|
-
|
|
2234
|
-
List Servers for an Organization or User.
|
|
2235
|
-
|
|
2236
|
-
```
|
|
2237
|
-
USAGE
|
|
2238
|
-
$ mw server list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
2239
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
2240
|
-
|
|
2241
|
-
FLAGS
|
|
2242
|
-
-x, --extended show extra columns
|
|
2243
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
2244
|
-
--csv output is csv format [alias: --output=csv]
|
|
2245
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
2246
|
-
--no-header hide table header from output
|
|
2247
|
-
--no-truncate do not truncate output to fit screen
|
|
2248
|
-
--output=<option> output in a more machine friendly format
|
|
2249
|
-
<options: csv|json|yaml>
|
|
2250
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
2251
|
-
|
|
2252
|
-
DESCRIPTION
|
|
2253
|
-
List Servers for an Organization or User.
|
|
2254
|
-
```
|
|
2255
|
-
|
|
2256
|
-
## `mw user api-token create`
|
|
2257
|
-
|
|
2258
|
-
Create a new API token
|
|
2259
|
-
|
|
2260
|
-
```
|
|
2261
|
-
USAGE
|
|
2262
|
-
$ mw user api-token create --description <value> --roles api_read|api_write [--expires-in <value>]
|
|
2263
|
-
|
|
2264
|
-
FLAGS
|
|
2265
|
-
--description=<value> (required) Description of the API token
|
|
2266
|
-
--expires-in=<value> Expiration interval of the API token (example: 30d)
|
|
2267
|
-
--roles=<option>... (required) Roles of the API token
|
|
2268
|
-
<options: api_read|api_write>
|
|
2269
|
-
|
|
2270
|
-
DESCRIPTION
|
|
2271
|
-
Create a new API token
|
|
2272
|
-
```
|
|
2273
|
-
|
|
2274
|
-
## `mw user api-token get APITOKENID`
|
|
2275
|
-
|
|
2276
|
-
Get a specific ApiToken
|
|
2277
|
-
|
|
2278
|
-
```
|
|
2279
|
-
USAGE
|
|
2280
|
-
$ mw user api-token get APITOKENID [--output json|yaml | | ]
|
|
2281
|
-
|
|
2282
|
-
ARGUMENTS
|
|
2283
|
-
APITOKENID The uuid of an ApiToken
|
|
2284
|
-
|
|
2285
|
-
FLAGS
|
|
2286
|
-
--output=<option> output in a more machine friendly format
|
|
2287
|
-
<options: json|yaml>
|
|
2288
|
-
|
|
2289
|
-
DESCRIPTION
|
|
2290
|
-
Get a specific ApiToken
|
|
2291
|
-
```
|
|
2292
|
-
|
|
2293
|
-
## `mw user api-token list`
|
|
2294
|
-
|
|
2295
|
-
List all ApiTokens of the user
|
|
2296
|
-
|
|
2297
|
-
```
|
|
2298
|
-
USAGE
|
|
2299
|
-
$ mw user api-token list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
2300
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
2301
|
-
|
|
2302
|
-
FLAGS
|
|
2303
|
-
-x, --extended show extra columns
|
|
2304
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
2305
|
-
--csv output is csv format [alias: --output=csv]
|
|
2306
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
2307
|
-
--no-header hide table header from output
|
|
2308
|
-
--no-truncate do not truncate output to fit screen
|
|
2309
|
-
--output=<option> output in a more machine friendly format
|
|
2310
|
-
<options: csv|json|yaml>
|
|
2311
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
2312
|
-
|
|
2313
|
-
DESCRIPTION
|
|
2314
|
-
List all ApiTokens of the user
|
|
2315
|
-
```
|
|
2316
|
-
|
|
2317
|
-
## `mw user api-token revoke ID`
|
|
2318
|
-
|
|
2319
|
-
Revoke an API token
|
|
2320
|
-
|
|
2321
|
-
```
|
|
2322
|
-
USAGE
|
|
2323
|
-
$ mw user api-token revoke ID
|
|
2324
|
-
|
|
2325
|
-
ARGUMENTS
|
|
2326
|
-
ID ID of the API token to revoke
|
|
2327
|
-
|
|
2328
|
-
DESCRIPTION
|
|
2329
|
-
Revoke an API token
|
|
2330
|
-
```
|
|
2331
|
-
|
|
2332
|
-
## `mw user get`
|
|
2333
|
-
|
|
2334
|
-
Get profile information for a user.
|
|
2335
|
-
|
|
2336
|
-
```
|
|
2337
|
-
USAGE
|
|
2338
|
-
$ mw user get [--output json|yaml | | ]
|
|
2339
|
-
|
|
2340
|
-
FLAGS
|
|
2341
|
-
--output=<option> output in a more machine friendly format
|
|
2342
|
-
<options: json|yaml>
|
|
2343
|
-
|
|
2344
|
-
DESCRIPTION
|
|
2345
|
-
Get profile information for a user.
|
|
2346
|
-
```
|
|
2347
|
-
|
|
2348
|
-
## `mw user session get TOKENID`
|
|
2349
|
-
|
|
2350
|
-
Get a specific Session
|
|
2351
|
-
|
|
2352
|
-
```
|
|
2353
|
-
USAGE
|
|
2354
|
-
$ mw user session get TOKENID [--output json|yaml | | ]
|
|
2355
|
-
|
|
2356
|
-
ARGUMENTS
|
|
2357
|
-
TOKENID tokenId to identify the concrete Session
|
|
2358
|
-
|
|
2359
|
-
FLAGS
|
|
2360
|
-
--output=<option> output in a more machine friendly format
|
|
2361
|
-
<options: json|yaml>
|
|
2362
|
-
|
|
2363
|
-
DESCRIPTION
|
|
2364
|
-
Get a specific Session
|
|
2365
|
-
```
|
|
2366
|
-
|
|
2367
|
-
## `mw user session list`
|
|
2368
|
-
|
|
2369
|
-
List all active sessions
|
|
2370
|
-
|
|
2371
|
-
```
|
|
2372
|
-
USAGE
|
|
2373
|
-
$ mw user session list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
2374
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
2375
|
-
|
|
2376
|
-
FLAGS
|
|
2377
|
-
-x, --extended show extra columns
|
|
2378
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
2379
|
-
--csv output is csv format [alias: --output=csv]
|
|
2380
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
2381
|
-
--no-header hide table header from output
|
|
2382
|
-
--no-truncate do not truncate output to fit screen
|
|
2383
|
-
--output=<option> output in a more machine friendly format
|
|
2384
|
-
<options: csv|json|yaml>
|
|
2385
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
2386
|
-
|
|
2387
|
-
DESCRIPTION
|
|
2388
|
-
List all active sessions
|
|
2389
|
-
```
|
|
2390
|
-
|
|
2391
|
-
## `mw user ssh-key create`
|
|
2392
|
-
|
|
2393
|
-
Create and import a new SSH key
|
|
2394
|
-
|
|
2395
|
-
```
|
|
2396
|
-
USAGE
|
|
2397
|
-
$ mw user ssh-key create [--no-passphrase] [--comment <value>] [--expiresAt <value>]
|
|
2398
|
-
|
|
2399
|
-
FLAGS
|
|
2400
|
-
--comment=<value> A comment for the SSH key.
|
|
2401
|
-
--expiresAt=<value> Duration after which the SSH key should expire (example: '1y').
|
|
2402
|
-
--no-passphrase Use this flag to not set a passphrase for the SSH key.
|
|
2403
|
-
|
|
2404
|
-
DESCRIPTION
|
|
2405
|
-
Create and import a new SSH key
|
|
2406
|
-
```
|
|
2407
|
-
|
|
2408
|
-
## `mw user ssh-key delete ID`
|
|
2409
|
-
|
|
2410
|
-
Delete an SSH key
|
|
2411
|
-
|
|
2412
|
-
```
|
|
2413
|
-
USAGE
|
|
2414
|
-
$ mw user ssh-key delete ID [-f]
|
|
2415
|
-
|
|
2416
|
-
ARGUMENTS
|
|
2417
|
-
ID ID of the SSH key to be deleted.
|
|
2418
|
-
|
|
2419
|
-
FLAGS
|
|
2420
|
-
-f, --force delete without prompting for confirmation
|
|
2421
|
-
|
|
2422
|
-
DESCRIPTION
|
|
2423
|
-
Delete an SSH key
|
|
2424
|
-
```
|
|
2425
|
-
|
|
2426
|
-
## `mw user ssh-key get SSHKEYID`
|
|
2427
|
-
|
|
2428
|
-
Get a specific stored SshKey
|
|
2429
|
-
|
|
2430
|
-
```
|
|
2431
|
-
USAGE
|
|
2432
|
-
$ mw user ssh-key get SSHKEYID [--output json|yaml | | ]
|
|
2433
|
-
|
|
2434
|
-
ARGUMENTS
|
|
2435
|
-
SSHKEYID undefined
|
|
2436
|
-
|
|
2437
|
-
FLAGS
|
|
2438
|
-
--output=<option> output in a more machine friendly format
|
|
2439
|
-
<options: json|yaml>
|
|
2440
|
-
|
|
2441
|
-
DESCRIPTION
|
|
2442
|
-
Get a specific stored SshKey
|
|
2443
|
-
```
|
|
2444
|
-
|
|
2445
|
-
## `mw user ssh-key list`
|
|
2446
|
-
|
|
2447
|
-
Get your stored ssh keys
|
|
2448
|
-
|
|
2449
|
-
```
|
|
2450
|
-
USAGE
|
|
2451
|
-
$ mw user ssh-key list [--columns <value> | -x] [--sort <value>] [--filter <value>] [--output csv|json|yaml | |
|
|
2452
|
-
[--csv | --no-truncate]] [--no-header | ]
|
|
2453
|
-
|
|
2454
|
-
FLAGS
|
|
2455
|
-
-x, --extended show extra columns
|
|
2456
|
-
--columns=<value> only show provided columns (comma-separated)
|
|
2457
|
-
--csv output is csv format [alias: --output=csv]
|
|
2458
|
-
--filter=<value> filter property by partial string matching, ex: name=foo
|
|
2459
|
-
--no-header hide table header from output
|
|
2460
|
-
--no-truncate do not truncate output to fit screen
|
|
2461
|
-
--output=<option> output in a more machine friendly format
|
|
2462
|
-
<options: csv|json|yaml>
|
|
2463
|
-
--sort=<value> property to sort by (prepend '-' for descending)
|
|
2464
|
-
|
|
2465
|
-
DESCRIPTION
|
|
2466
|
-
Get your stored ssh keys
|
|
2467
|
-
```
|
|
104
|
+
<!-- commands -->
|
|
105
|
+
# Command Topics
|
|
106
|
+
|
|
107
|
+
* [`mw app`](docs/app.md) - Manage apps, and app installations in your projects
|
|
108
|
+
* [`mw autocomplete`](docs/autocomplete.md) - Display autocomplete installation instructions.
|
|
109
|
+
* [`mw backup`](docs/backup.md) - Manage backups of your projects
|
|
110
|
+
* [`mw context`](docs/context.md) - Save certain environment parameters for later use
|
|
111
|
+
* [`mw conversation`](docs/conversation.md) - Manage your support cases
|
|
112
|
+
* [`mw cronjob`](docs/cronjob.md) - Manage cronjobs of your projects
|
|
113
|
+
* [`mw database`](docs/database.md) - Manage databases (like MySQL and Redis) in your projects
|
|
114
|
+
* [`mw ddev`](docs/ddev.md) - Integrate your mittwald projects with DDEV
|
|
115
|
+
* [`mw domain`](docs/domain.md) - Manage domains, virtual hosts and DNS settings in your projects
|
|
116
|
+
* [`mw help`](docs/help.md) - Display help for mw.
|
|
117
|
+
* [`mw login`](docs/login.md) - Manage your client authentication
|
|
118
|
+
* [`mw mail`](docs/mail.md) - Manage mailboxes and mail addresses in your projects
|
|
119
|
+
* [`mw org`](docs/org.md) - Manage your organizations, and also any kinds of user memberships concerning these organizations.
|
|
120
|
+
* [`mw project`](docs/project.md) - Manage your projects, and also any kinds of user memberships concerning these projects.
|
|
121
|
+
* [`mw server`](docs/server.md) - Manage your servers
|
|
122
|
+
* [`mw sftp-user`](docs/sftp-user.md) - Manage SFTP users of your projects
|
|
123
|
+
* [`mw ssh-user`](docs/ssh-user.md) - Manage SSH users of your projects
|
|
124
|
+
* [`mw update`](docs/update.md) - update the mw CLI
|
|
125
|
+
* [`mw user`](docs/user.md) - Manage your own user account
|
|
2468
126
|
|
|
2469
127
|
<!-- commandsstop -->
|