@mittwald/cli 1.0.0-alpha.35 → 1.0.0-alpha.37
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 +445 -259
- package/bin/dev.cmd +1 -1
- package/bin/dev.js +5 -0
- package/bin/run.js +1 -1
- package/dist/{esm/BaseCommand.js → BaseCommand.js} +2 -1
- package/dist/{esm/Formatter.d.ts → Formatter.d.ts} +12 -2
- package/dist/{esm/Formatter.js → Formatter.js} +11 -2
- package/dist/ListBaseCommand.d.ts +44 -0
- package/dist/{esm/ListBaseCommand.js → ListBaseCommand.js} +4 -6
- package/dist/{esm/commands → commands}/app/copy.js +2 -2
- package/dist/commands/app/dependency/list.d.ts +39 -0
- package/dist/commands/app/dependency/versions.d.ts +41 -0
- package/dist/{esm/commands → commands}/app/download.d.ts +1 -0
- package/dist/{esm/commands → commands}/app/download.js +8 -20
- package/dist/{esm/commands → commands}/app/install/drupal.d.ts +2 -1
- package/dist/{esm/commands → commands}/app/install/drupal.js +5 -5
- package/dist/{esm/commands → commands}/app/install/shopware6.d.ts +2 -1
- package/dist/{esm/commands → commands}/app/install/shopware6.js +5 -5
- package/dist/{esm/commands → commands}/app/install/typo3.d.ts +2 -1
- package/dist/{esm/commands → commands}/app/install/typo3.js +5 -5
- package/dist/{esm/commands → commands}/app/install/wordpress.d.ts +2 -1
- package/dist/{esm/commands → commands}/app/install/wordpress.js +5 -5
- package/dist/commands/app/list.d.ts +46 -0
- package/dist/{esm/commands → commands}/app/ssh.d.ts +1 -0
- package/dist/{esm/commands → commands}/app/ssh.js +3 -1
- package/dist/commands/backup/list.d.ts +43 -0
- package/dist/{esm/commands → commands}/backup/list.js +4 -2
- package/dist/commands/backup/schedule/list.d.ts +43 -0
- package/dist/{esm/commands → commands}/context/get.js +19 -6
- package/dist/{esm/commands → commands}/context/reset.js +1 -1
- package/dist/{esm/commands → commands}/context/set.js +1 -1
- package/dist/commands/conversation/categories.d.ts +39 -0
- package/dist/commands/conversation/list.d.ts +39 -0
- package/dist/{esm/commands → commands}/conversation/show.d.ts +1 -0
- package/dist/commands/conversation/show.js +103 -0
- package/dist/commands/conversation/show.test.js +72 -0
- package/dist/commands/cronjob/execution/list.d.ts +42 -0
- package/dist/{esm/commands → commands}/cronjob/execution/list.js +3 -3
- package/dist/commands/cronjob/list.d.ts +43 -0
- package/dist/commands/database/mysql/charsets.d.ts +39 -0
- package/dist/{esm/commands → commands}/database/mysql/dump.d.ts +2 -0
- package/dist/{esm/commands → commands}/database/mysql/dump.js +18 -1
- package/dist/commands/database/mysql/list.d.ts +40 -0
- package/dist/{esm/commands → commands}/database/mysql/port-forward.d.ts +1 -0
- package/dist/{esm/commands → commands}/database/mysql/port-forward.js +3 -1
- package/dist/commands/database/mysql/user/list.d.ts +40 -0
- package/dist/commands/database/mysql/versions.d.ts +39 -0
- package/dist/commands/database/redis/list.d.ts +40 -0
- package/dist/commands/database/redis/versions.d.ts +40 -0
- package/dist/commands/ddev/init.d.ts +22 -0
- package/dist/commands/ddev/init.js +120 -0
- package/dist/commands/ddev/render-config.d.ts +12 -0
- package/dist/commands/ddev/render-config.js +22 -0
- package/dist/{esm/commands → commands}/domain/dnszone/get.d.ts +3 -2
- package/dist/commands/domain/dnszone/list.d.ts +40 -0
- package/dist/{esm/commands → commands}/domain/get.d.ts +3 -2
- package/dist/commands/domain/list.d.ts +40 -0
- package/dist/{esm/commands → commands}/domain/virtualhost/create.d.ts +2 -2
- package/dist/{esm/commands → commands}/domain/virtualhost/get.d.ts +1 -1
- package/dist/{esm/commands → commands}/domain/virtualhost/get.js +2 -2
- package/dist/commands/domain/virtualhost/list.d.ts +41 -0
- package/dist/{esm/commands → commands}/login/status.js +2 -1
- package/dist/commands/mail/address/list.d.ts +40 -0
- package/dist/commands/mail/deliverybox/list.d.ts +41 -0
- package/dist/{esm/commands → commands}/org/get.d.ts +1 -1
- package/dist/commands/org/invite/list-own.d.ts +73 -0
- package/dist/{esm/commands → commands}/org/invite/list-own.js +1 -3
- package/dist/commands/org/invite/list.d.ts +41 -0
- package/dist/commands/org/list.d.ts +41 -0
- package/dist/commands/org/membership/list-own.d.ts +73 -0
- package/dist/{esm/commands → commands}/org/membership/list-own.js +5 -7
- package/dist/commands/org/membership/list.d.ts +67 -0
- package/dist/{esm/commands → commands}/org/membership/list.js +4 -2
- package/dist/{esm/commands → commands}/project/create.js +1 -1
- package/dist/{esm/commands → commands}/project/filesystem/usage.d.ts +1 -1
- package/dist/commands/project/invite/list-own.d.ts +39 -0
- package/dist/commands/project/invite/list.d.ts +40 -0
- package/dist/commands/project/list.d.ts +40 -0
- package/dist/commands/project/membership/list-own.d.ts +39 -0
- package/dist/commands/project/membership/list.d.ts +55 -0
- package/dist/commands/server/list.d.ts +39 -0
- package/dist/commands/sftp-user/list.d.ts +43 -0
- package/dist/commands/ssh-user/list.d.ts +43 -0
- package/dist/commands/user/api-token/list.d.ts +39 -0
- package/dist/{esm/commands → commands}/user/api-token/list.js +4 -5
- package/dist/commands/user/session/list.d.ts +39 -0
- package/dist/commands/user/ssh-key/list.d.ts +39 -0
- package/dist/{esm/commands → commands}/user/ssh-key/list.js +2 -5
- package/dist/{esm/lib → lib}/app/hooks.d.ts +7 -6
- package/dist/{esm/lib → lib}/app/install.d.ts +2 -1
- package/dist/{esm/lib → lib}/app/uuid.d.ts +3 -2
- package/dist/{esm/lib → lib}/app/versions.d.ts +1 -2
- package/dist/{esm/lib → lib}/context.d.ts +2 -1
- package/dist/{esm/lib → lib}/context.js +3 -1
- package/dist/lib/context_ddev.d.ts +20 -0
- package/dist/lib/context_ddev.js +81 -0
- package/dist/{esm/lib → lib}/context_flags.js +1 -1
- package/dist/{esm/lib → lib}/context_terraform.js +3 -9
- package/dist/{esm/lib → lib}/database/common.d.ts +3 -2
- package/dist/{esm/lib → lib}/database/mysql/connect.d.ts +2 -1
- package/dist/{esm/lib → lib}/database/mysql/connect.js +8 -6
- package/dist/lib/ddev/config.d.ts +29 -0
- package/dist/lib/ddev/config.js +28 -0
- package/dist/lib/ddev/config_builder.d.ts +16 -0
- package/dist/lib/ddev/config_builder.js +124 -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 +3 -0
- package/dist/lib/ddev/flags.js +10 -0
- package/dist/lib/domain/dnszone/records.d.ts +18 -0
- package/dist/lib/fsutil.d.ts +2 -0
- package/dist/lib/fsutil.js +16 -0
- package/dist/{esm/lib → lib}/handleError.d.ts +3 -2
- package/dist/{esm/lib → lib}/project/flags.js +7 -4
- package/dist/lib/project/hooks.d.ts +4 -0
- package/dist/lib/projectbackup/hooks.d.ts +6 -0
- package/dist/{esm/lib → lib}/ssh/appinstall.d.ts +1 -1
- package/dist/{esm/lib → lib}/ssh/appinstall.js +7 -4
- package/dist/{esm/lib → lib}/ssh/exec.d.ts +7 -1
- package/dist/{esm/lib → lib}/ssh/exec.js +17 -9
- package/dist/lib/ssh/flags.d.ts +3 -0
- package/dist/lib/ssh/flags.js +13 -0
- package/dist/{esm/lib → lib}/ssh/project.d.ts +1 -1
- package/dist/{esm/lib → lib}/ssh/project.js +7 -4
- package/dist/lib/viewhelpers/date.d.ts +7 -0
- package/dist/lib/viewhelpers/date.js +47 -0
- package/dist/lib/viewhelpers/list_column_date.d.ts +14 -0
- package/dist/lib/viewhelpers/list_column_date.js +21 -0
- package/dist/lib/viewhelpers/tui.d.ts +2 -0
- package/dist/lib/viewhelpers/tui.js +13 -0
- package/dist/{esm/rendering → rendering}/process/components/ProcessInput.js +1 -1
- package/dist/rendering/process/components/ProcessValidationErrors.d.ts +8 -0
- package/dist/{esm/rendering → rendering}/process/process.js +3 -0
- package/dist/rendering/process/process_exec.d.ts +3 -0
- package/dist/rendering/process/process_exec.js +27 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationDetails.d.ts +9 -0
- package/dist/rendering/react/components/AppInstallation/AppInstallationStatus.d.ts +10 -0
- package/dist/rendering/react/components/AppInstallation/AppSystemSoftware.d.ts +7 -0
- package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMessage.d.ts +1 -1
- package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMessages.d.ts +1 -1
- package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationStatusUpdate.d.ts +1 -1
- package/dist/{esm/rendering → rendering}/react/components/CronJob/CronJobDetails.d.ts +2 -2
- 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/DnsZoneRecords.d.ts +7 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsA.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsAAAA.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsMX.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsSRV.d.ts +5 -0
- package/dist/rendering/react/components/DnsZone/DnsZoneRecordsTXT.d.ts +5 -0
- package/dist/rendering/react/components/Domain/DomainBaseDetails.d.ts +7 -0
- package/dist/rendering/react/components/Domain/DomainDetails.d.ts +7 -0
- package/dist/rendering/react/components/Domain/DomainHandle.d.ts +8 -0
- package/dist/{esm/rendering → rendering}/react/components/Ingress/DnsValidationErrors.d.ts +2 -2
- package/dist/rendering/react/components/Organization/OrganizationOwner.d.ts +7 -0
- package/dist/{esm/rendering → rendering}/react/components/Project/ProjectSimpleStatus.d.ts +1 -1
- package/dist/{esm/rendering → rendering}/react/components/Project/ProjectStatus.d.ts +2 -2
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupDetails.d.ts +7 -0
- package/dist/rendering/react/components/ProjectBackup/ProjectBackupStatus.d.ts +7 -0
- package/dist/rendering/react/components/Success.d.ts +10 -0
- package/dist/{esm/rendering → rendering}/react/components/Success.js +4 -2
- package/dist/{esm/rendering → rendering}/react/hooks/useMyUserProfile.d.ts +1 -1
- package/dist/types.js +1 -0
- package/package.json +28 -25
- package/bin/dev +0 -17
- package/dist/esm/ListBaseCommand.d.ts +0 -22
- package/dist/esm/commands/app/dependency/list.d.ts +0 -18
- package/dist/esm/commands/app/dependency/versions.d.ts +0 -20
- package/dist/esm/commands/app/list.d.ts +0 -24
- package/dist/esm/commands/backup/list.d.ts +0 -21
- package/dist/esm/commands/backup/schedule/list.d.ts +0 -21
- package/dist/esm/commands/conversation/categories.d.ts +0 -18
- package/dist/esm/commands/conversation/list.d.ts +0 -18
- package/dist/esm/commands/conversation/show.js +0 -74
- package/dist/esm/commands/cronjob/execution/list.d.ts +0 -20
- package/dist/esm/commands/cronjob/list.d.ts +0 -21
- package/dist/esm/commands/database/mysql/charsets.d.ts +0 -18
- package/dist/esm/commands/database/mysql/list.d.ts +0 -18
- package/dist/esm/commands/database/mysql/user/list.d.ts +0 -18
- package/dist/esm/commands/database/mysql/versions.d.ts +0 -18
- package/dist/esm/commands/database/redis/list.d.ts +0 -18
- package/dist/esm/commands/database/redis/versions.d.ts +0 -18
- package/dist/esm/commands/domain/dnszone/list.d.ts +0 -18
- package/dist/esm/commands/domain/list.d.ts +0 -18
- package/dist/esm/commands/domain/virtualhost/list.d.ts +0 -19
- package/dist/esm/commands/mail/address/list.d.ts +0 -18
- package/dist/esm/commands/mail/deliverybox/list.d.ts +0 -19
- package/dist/esm/commands/org/invite/list-own.d.ts +0 -51
- package/dist/esm/commands/org/invite/list.d.ts +0 -19
- package/dist/esm/commands/org/list.d.ts +0 -20
- package/dist/esm/commands/org/membership/list-own.d.ts +0 -50
- package/dist/esm/commands/org/membership/list.d.ts +0 -41
- package/dist/esm/commands/project/invite/list-own.d.ts +0 -18
- package/dist/esm/commands/project/invite/list.d.ts +0 -18
- package/dist/esm/commands/project/list.d.ts +0 -19
- package/dist/esm/commands/project/membership/list-own.d.ts +0 -18
- package/dist/esm/commands/project/membership/list.d.ts +0 -31
- package/dist/esm/commands/server/list.d.ts +0 -18
- package/dist/esm/commands/sftp-user/list.d.ts +0 -21
- package/dist/esm/commands/ssh-user/list.d.ts +0 -21
- package/dist/esm/commands/user/api-token/list.d.ts +0 -18
- package/dist/esm/commands/user/session/list.d.ts +0 -18
- package/dist/esm/commands/user/ssh-key/list.d.ts +0 -18
- package/dist/esm/lib/domain/dnszone/records.d.ts +0 -17
- package/dist/esm/lib/project/hooks.d.ts +0 -3
- package/dist/esm/lib/projectbackup/hooks.d.ts +0 -5
- package/dist/esm/lib/viewhelpers/date.d.ts +0 -5
- package/dist/esm/lib/viewhelpers/date.js +0 -23
- package/dist/esm/lib/viewhelpers/tui.d.ts +0 -2
- package/dist/esm/lib/viewhelpers/tui.js +0 -13
- package/dist/esm/rendering/process/components/ProcessValidationErrors.d.ts +0 -7
- package/dist/esm/rendering/react/components/AppInstallation/AppInstallationDetails.d.ts +0 -8
- package/dist/esm/rendering/react/components/AppInstallation/AppInstallationStatus.d.ts +0 -9
- package/dist/esm/rendering/react/components/AppInstallation/AppSystemSoftware.d.ts +0 -6
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneDetails.d.ts +0 -6
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecords.d.ts +0 -6
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecordsA.d.ts +0 -4
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecordsAAAA.d.ts +0 -4
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecordsMX.d.ts +0 -4
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecordsSRV.d.ts +0 -4
- package/dist/esm/rendering/react/components/DnsZone/DnsZoneRecordsTXT.d.ts +0 -4
- package/dist/esm/rendering/react/components/Domain/DomainBaseDetails.d.ts +0 -6
- package/dist/esm/rendering/react/components/Domain/DomainDetails.d.ts +0 -6
- package/dist/esm/rendering/react/components/Domain/DomainHandle.d.ts +0 -7
- package/dist/esm/rendering/react/components/Organization/OrganizationOwner.d.ts +0 -6
- package/dist/esm/rendering/react/components/ProjectBackup/ProjectBackupDetails.d.ts +0 -6
- package/dist/esm/rendering/react/components/ProjectBackup/ProjectBackupStatus.d.ts +0 -6
- package/dist/esm/rendering/react/components/Success.d.ts +0 -9
- /package/bin/{mw.cmd → run.cmd} +0 -0
- /package/dist/{esm/BaseCommand.d.ts → BaseCommand.d.ts} +0 -0
- /package/dist/{esm/DeleteBaseCommand.d.ts → DeleteBaseCommand.d.ts} +0 -0
- /package/dist/{esm/DeleteBaseCommand.js → DeleteBaseCommand.js} +0 -0
- /package/dist/{esm/ExtendedBaseCommand.d.ts → ExtendedBaseCommand.d.ts} +0 -0
- /package/dist/{esm/ExtendedBaseCommand.js → ExtendedBaseCommand.js} +0 -0
- /package/dist/{esm/Flags.d.ts → Flags.d.ts} +0 -0
- /package/dist/{esm/Flags.js → Flags.js} +0 -0
- /package/dist/{esm/GetBaseCommand.d.ts → GetBaseCommand.d.ts} +0 -0
- /package/dist/{esm/GetBaseCommand.js → GetBaseCommand.js} +0 -0
- /package/dist/{esm/Printer.d.ts → Printer.d.ts} +0 -0
- /package/dist/{esm/Printer.js → Printer.js} +0 -0
- /package/dist/{esm/commands → commands}/app/copy.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/create/node.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/create/node.js +0 -0
- /package/dist/{esm/commands → commands}/app/create/php.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/create/php.js +0 -0
- /package/dist/{esm/commands → commands}/app/create/python.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/create/python.js +0 -0
- /package/dist/{esm/commands → commands}/app/create/static.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/create/static.js +0 -0
- /package/dist/{esm/commands → commands}/app/dependency/list.js +0 -0
- /package/dist/{esm/commands → commands}/app/dependency/update.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/dependency/update.js +0 -0
- /package/dist/{esm/commands → commands}/app/dependency/versions.js +0 -0
- /package/dist/{esm/commands → commands}/app/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/get.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/contao.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/contao.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/grav.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/grav.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/joomla.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/joomla.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/matomo.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/matomo.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/nextcloud.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/nextcloud.js +0 -0
- /package/dist/{esm/commands → commands}/app/install/shopware5.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/install/shopware5.js +0 -0
- /package/dist/{esm/commands → commands}/app/list.js +0 -0
- /package/dist/{esm/commands → commands}/app/uninstall.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/uninstall.js +0 -0
- /package/dist/{esm/commands → commands}/app/versions.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/versions.js +0 -0
- /package/dist/{esm/commands → commands}/backup/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/backup/create.js +0 -0
- /package/dist/{esm/commands → commands}/backup/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/backup/delete.js +0 -0
- /package/dist/{esm/commands → commands}/backup/download.d.ts +0 -0
- /package/dist/{esm/commands → commands}/backup/download.js +0 -0
- /package/dist/{esm/commands → commands}/backup/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/backup/get.js +0 -0
- /package/dist/{esm/commands → commands}/backup/schedule/list.js +0 -0
- /package/dist/{esm/commands → commands}/context/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/context/reset.d.ts +0 -0
- /package/dist/{esm/commands → commands}/context/set.d.ts +0 -0
- /package/dist/{esm/commands → commands}/conversation/categories.js +0 -0
- /package/dist/{esm/commands → commands}/conversation/close.d.ts +0 -0
- /package/dist/{esm/commands → commands}/conversation/close.js +0 -0
- /package/dist/{esm/commands → commands}/conversation/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/conversation/create.js +0 -0
- /package/dist/{esm/commands → commands}/conversation/list.js +0 -0
- /package/dist/{esm/commands → commands}/conversation/reply.d.ts +0 -0
- /package/dist/{esm/commands → commands}/conversation/reply.js +0 -0
- /package/dist/{esm/lib/ssh/types.js → commands/conversation/show.test.d.ts} +0 -0
- /package/dist/{esm/commands → commands}/conversation/show2.d.ts +0 -0
- /package/dist/{esm/commands → commands}/conversation/show2.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/create.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/delete.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execute.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execute.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/abort.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/abort.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/get.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/logs.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/execution/logs.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/cronjob/get.js +0 -0
- /package/dist/{esm/commands → commands}/cronjob/list.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/charsets.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/create.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/delete.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/get.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/list.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/phpmyadmin.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/phpmyadmin.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/shell.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/shell.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/user/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/user/delete.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/user/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/user/get.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/user/list.js +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/versions.js +0 -0
- /package/dist/{esm/commands → commands}/database/redis/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/redis/create.js +0 -0
- /package/dist/{esm/commands → commands}/database/redis/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/redis/get.js +0 -0
- /package/dist/{esm/commands → commands}/database/redis/list.js +0 -0
- /package/dist/{esm/commands → commands}/database/redis/shell.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/redis/shell.js +0 -0
- /package/dist/{esm/commands → commands}/database/redis/versions.js +0 -0
- /package/dist/{esm/commands → commands}/domain/dnszone/get.js +0 -0
- /package/dist/{esm/commands → commands}/domain/dnszone/list.js +0 -0
- /package/dist/{esm/commands → commands}/domain/dnszone/update.d.ts +0 -0
- /package/dist/{esm/commands → commands}/domain/dnszone/update.js +0 -0
- /package/dist/{esm/commands → commands}/domain/get.js +0 -0
- /package/dist/{esm/commands → commands}/domain/list.js +0 -0
- /package/dist/{esm/commands → commands}/domain/virtualhost/create.js +0 -0
- /package/dist/{esm/commands → commands}/domain/virtualhost/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/domain/virtualhost/delete.js +0 -0
- /package/dist/{esm/commands → commands}/domain/virtualhost/list.js +0 -0
- /package/dist/{esm/commands → commands}/login/reset.d.ts +0 -0
- /package/dist/{esm/commands → commands}/login/reset.js +0 -0
- /package/dist/{esm/commands → commands}/login/status.d.ts +0 -0
- /package/dist/{esm/commands → commands}/login/token.d.ts +0 -0
- /package/dist/{esm/commands → commands}/login/token.js +0 -0
- /package/dist/{esm/commands → commands}/mail/address/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/mail/address/create.js +0 -0
- /package/dist/{esm/commands → commands}/mail/address/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/mail/address/delete.js +0 -0
- /package/dist/{esm/commands → commands}/mail/address/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/mail/address/get.js +0 -0
- /package/dist/{esm/commands → commands}/mail/address/list.js +0 -0
- /package/dist/{esm/commands → commands}/mail/deliverybox/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/mail/deliverybox/get.js +0 -0
- /package/dist/{esm/commands → commands}/mail/deliverybox/list.js +0 -0
- /package/dist/{esm/commands → commands}/org/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/org/delete.js +0 -0
- /package/dist/{esm/commands → commands}/org/get.js +0 -0
- /package/dist/{esm/commands → commands}/org/invite/list.js +0 -0
- /package/dist/{esm/commands → commands}/org/invite/revoke.d.ts +0 -0
- /package/dist/{esm/commands → commands}/org/invite/revoke.js +0 -0
- /package/dist/{esm/commands → commands}/org/invite.d.ts +0 -0
- /package/dist/{esm/commands → commands}/org/invite.js +0 -0
- /package/dist/{esm/commands → commands}/org/list.js +0 -0
- /package/dist/{esm/commands → commands}/org/membership/revoke.d.ts +0 -0
- /package/dist/{esm/commands → commands}/org/membership/revoke.js +0 -0
- /package/dist/{esm/commands → commands}/project/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/delete.js +0 -0
- /package/dist/{esm/commands → commands}/project/filesystem/usage.js +0 -0
- /package/dist/{esm/commands → commands}/project/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/get.js +0 -0
- /package/dist/{esm/commands → commands}/project/invite/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/invite/get.js +0 -0
- /package/dist/{esm/commands → commands}/project/invite/list-own.js +0 -0
- /package/dist/{esm/commands → commands}/project/invite/list.js +0 -0
- /package/dist/{esm/commands → commands}/project/list.js +0 -0
- /package/dist/{esm/commands → commands}/project/membership/get-own.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/membership/get-own.js +0 -0
- /package/dist/{esm/commands → commands}/project/membership/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/membership/get.js +0 -0
- /package/dist/{esm/commands → commands}/project/membership/list-own.js +0 -0
- /package/dist/{esm/commands → commands}/project/membership/list.js +0 -0
- /package/dist/{esm/commands → commands}/project/ssh.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/ssh.js +0 -0
- /package/dist/{esm/commands → commands}/project/update.d.ts +0 -0
- /package/dist/{esm/commands → commands}/project/update.js +0 -0
- /package/dist/{esm/commands → commands}/server/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/server/get.js +0 -0
- /package/dist/{esm/commands → commands}/server/list.js +0 -0
- /package/dist/{esm/commands → commands}/sftp-user/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/sftp-user/delete.js +0 -0
- /package/dist/{esm/commands → commands}/sftp-user/list.js +0 -0
- /package/dist/{esm/commands → commands}/ssh-user/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/ssh-user/delete.js +0 -0
- /package/dist/{esm/commands → commands}/ssh-user/list.js +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/create.js +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/get.js +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/revoke.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/api-token/revoke.js +0 -0
- /package/dist/{esm/commands → commands}/user/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/get.js +0 -0
- /package/dist/{esm/commands → commands}/user/session/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/session/get.js +0 -0
- /package/dist/{esm/commands → commands}/user/session/list.js +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/create.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/create.js +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/delete.js +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/get.d.ts +0 -0
- /package/dist/{esm/commands → commands}/user/ssh-key/get.js +0 -0
- /package/dist/{esm/lib → lib}/app/Installer.d.ts +0 -0
- /package/dist/{esm/lib → lib}/app/Installer.js +0 -0
- /package/dist/{esm/lib → lib}/app/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/app/flags.js +0 -0
- /package/dist/{esm/lib → lib}/app/hooks.js +0 -0
- /package/dist/{esm/lib → lib}/app/install.js +0 -0
- /package/dist/{esm/lib → lib}/app/uuid.js +0 -0
- /package/dist/{esm/lib → lib}/app/versions.js +0 -0
- /package/dist/{esm/lib → lib}/app/wait.d.ts +0 -0
- /package/dist/{esm/lib → lib}/app/wait.js +0 -0
- /package/dist/{esm/lib → lib}/assert_success.d.ts +0 -0
- /package/dist/{esm/lib → lib}/assert_success.js +0 -0
- /package/dist/{esm/lib → lib}/bytes.d.ts +0 -0
- /package/dist/{esm/lib → lib}/bytes.js +0 -0
- /package/dist/{esm/lib → lib}/context_flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/context_terraform.d.ts +0 -0
- /package/dist/{esm/lib → lib}/context_user.d.ts +0 -0
- /package/dist/{esm/lib → lib}/context_user.js +0 -0
- /package/dist/{esm/lib → lib}/conversation/message_input.d.ts +0 -0
- /package/dist/{esm/lib → lib}/conversation/message_input.js +0 -0
- /package/dist/{esm/lib → lib}/database/common.js +0 -0
- /package/dist/{esm/lib → lib}/database/mysql/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/database/mysql/flags.js +0 -0
- /package/dist/{esm/lib → lib}/database/redis/connect.d.ts +0 -0
- /package/dist/{esm/lib → lib}/database/redis/connect.js +0 -0
- /package/dist/{esm/lib → lib}/database/redis/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/database/redis/flags.js +0 -0
- /package/dist/{esm/lib → lib}/domain/dnszone/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/domain/dnszone/flags.js +0 -0
- /package/dist/{esm/lib → lib}/domain/dnszone/records.js +0 -0
- /package/dist/{esm/lib → lib}/domain/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/domain/flags.js +0 -0
- /package/dist/{esm/lib → lib}/expires.d.ts +0 -0
- /package/dist/{esm/lib → lib}/expires.js +0 -0
- /package/dist/{esm/lib → lib}/handleError.js +0 -0
- /package/dist/{esm/lib → lib}/hasbin.d.ts +0 -0
- /package/dist/{esm/lib → lib}/hasbin.js +0 -0
- /package/dist/{esm/lib → lib}/mergeObjects.d.ts +0 -0
- /package/dist/{esm/lib → lib}/mergeObjects.js +0 -0
- /package/dist/{esm/lib → lib}/notify.d.ts +0 -0
- /package/dist/{esm/lib → lib}/notify.js +0 -0
- /package/dist/{esm/lib → lib}/org/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/org/flags.js +0 -0
- /package/dist/{esm/lib → lib}/password.d.ts +0 -0
- /package/dist/{esm/lib → lib}/password.js +0 -0
- /package/dist/{esm/lib → lib}/project/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/project/hooks.js +0 -0
- /package/dist/{esm/lib → lib}/project/ingress.d.ts +0 -0
- /package/dist/{esm/lib → lib}/project/ingress.js +0 -0
- /package/dist/{esm/lib → lib}/project/shortId.d.ts +0 -0
- /package/dist/{esm/lib → lib}/project/shortId.js +0 -0
- /package/dist/{esm/lib → lib}/projectbackup/hooks.js +0 -0
- /package/dist/{esm/lib → lib}/server/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/server/flags.js +0 -0
- /package/dist/{esm/lib → lib}/ssh/types.d.ts +0 -0
- /package/dist/{esm/rendering/react/lib/observable-value → lib/ssh}/types.js +0 -0
- /package/dist/{esm/lib → lib}/viewhelpers/removeLineBreaks.d.ts +0 -0
- /package/dist/{esm/lib → lib}/viewhelpers/removeLineBreaks.js +0 -0
- /package/dist/{esm/lib → lib}/viewhelpers/size.d.ts +0 -0
- /package/dist/{esm/lib → lib}/viewhelpers/size.js +0 -0
- /package/dist/{esm/lib → lib}/wait.d.ts +0 -0
- /package/dist/{esm/lib → lib}/wait.js +0 -0
- /package/dist/{esm/normalize_id.d.ts → normalize_id.d.ts} +0 -0
- /package/dist/{esm/normalize_id.js → normalize_id.js} +0 -0
- /package/dist/{esm/rendering → rendering}/lib/getTerminalWidth.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/lib/getTerminalWidth.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessConfirmation.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessConfirmation.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessConfirmationStateSummary.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessConfirmationStateSummary.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessError.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessError.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessInput.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessInputStateSummary.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessInputStateSummary.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessState.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessState.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessStateIcon.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessStateIcon.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessStateSummary.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessStateSummary.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/components/ProcessValidationErrors.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/process.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_fancy.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_fancy.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_flags.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_flags.js +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_quiet.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/process/process_quiet.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/ComponentPrinter.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/ComponentPrinter.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/ExecRenderBaseCommand.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/ExecRenderBaseCommand.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/RenderBaseCommand.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/RenderBaseCommand.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/AppInstallation/AppInstallationDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/AppInstallation/AppInstallationStatus.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/AppInstallation/AppSystemSoftware.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/BooleanValue.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/BooleanValue.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ByteFormat.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ByteFormat.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMessage.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMessages.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMeta.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationMeta.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Conversation/ConversationStatusUpdate.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/CreatedAt.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/CreatedAt.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/CronJob/CronJobDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecords.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecordsA.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecordsAAAA.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecordsMX.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecordsSRV.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/DnsZoneRecordsTXT.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordComponent.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordComponent.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordSetManagedByMittwald.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordSetManagedByMittwald.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordSetValues.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/DnsZone/RecordSetValues.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Domain/DomainBaseDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Domain/DomainDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Domain/DomainHandle.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ErrorBox.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ErrorBox.js +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/FormattedDate.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/FormattedDate.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/Ingress/DnsValidationErrors.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 → rendering}/react/components/LocalFilename.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/LocalFilename.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Note.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Note.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Organization/CustomerIDAndNumber.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Organization/CustomerIDAndNumber.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Organization/OrganizationOrderEligibility.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Organization/OrganizationOrderEligibility.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Organization/OrganizationOwner.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Project/ProjectEnabled.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Project/ProjectEnabled.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Project/ProjectSimpleStatus.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Project/ProjectStatus.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ProjectBackup/ProjectBackupDetails.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/ProjectBackup/ProjectBackupStatus.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/components/Table/BodyCell.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/BodyCell.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/BodyRow.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/BodyRow.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/BodyRows.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/BodyRows.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/CellData.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/CellData.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/CellLayout.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/CellLayout.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/HeaderCell.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/HeaderCell.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/HeaderRow.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/HeaderRow.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/RowLayout.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/RowLayout.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/Table.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/Table.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/context.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/context.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/index.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/index.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Cell.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Cell.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Column.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Column.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/ColumnName.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/ColumnName.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/ColumnOptions.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/ColumnOptions.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Row.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Row.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Table.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/Table.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/index.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Table/model/index.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Value.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Value.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Warning.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/Warning.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/WithoutLineBreaks.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/components/WithoutLineBreaks.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/context.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/context.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/error.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/error.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/hooks/useIncreaseInkStdoutColumns.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/hooks/useIncreaseInkStdoutColumns.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/hooks/useMyUserProfile.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.d.ts +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/react/lib/observable-value}/types.js +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/dist/{esm/rendering → rendering}/react/measure/MeasureChildren.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/MeasureChildren.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/MeasureContextProvider.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/MeasureContextProvider.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/MeasureRenderer.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/MeasureRenderer.js +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/context.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/react/measure/context.js +0 -0
- /package/dist/{esm/rendering → rendering}/setup/FlagSupportedSetup.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/setup/FlagSupportedSetup.js +0 -0
- /package/dist/{esm/rendering → rendering}/setup/TableRenderSetup.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/setup/TableRenderSetup.js +0 -0
- /package/dist/{esm/rendering → rendering}/setup/usePromiseSetup.d.ts +0 -0
- /package/dist/{esm/rendering → rendering}/setup/usePromiseSetup.js +0 -0
- /package/dist/{esm/types.d.ts → types.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ either the CMD prompt or PowerShell.
|
|
|
42
42
|
#### Any OS, using Node.js+NPM
|
|
43
43
|
|
|
44
44
|
Installing the CLI via NPM will work on any OS; however we cannot guarantee
|
|
45
|
-
stability, because functionality of the CLI may depend
|
|
45
|
+
stability, because functionality of the CLI may depend on the Node.js runtime
|
|
46
46
|
already installed on your system. Also, the automatic upgrade will not work when
|
|
47
47
|
using NPM; remember to run `npm upgrade -g @mittwald/cli` occasionally.
|
|
48
48
|
|
|
@@ -180,6 +180,8 @@ USAGE
|
|
|
180
180
|
* [`mw database redis list`](#mw-database-redis-list)
|
|
181
181
|
* [`mw database redis shell DATABASE-ID`](#mw-database-redis-shell-database-id)
|
|
182
182
|
* [`mw database redis versions`](#mw-database-redis-versions)
|
|
183
|
+
* [`mw ddev init [INSTALLATION-ID]`](#mw-ddev-init-installation-id)
|
|
184
|
+
* [`mw ddev render-config [INSTALLATION-ID]`](#mw-ddev-render-config-installation-id)
|
|
183
185
|
* [`mw domain dnszone get DNSZONE-ID`](#mw-domain-dnszone-get-dnszone-id)
|
|
184
186
|
* [`mw domain dnszone list`](#mw-domain-dnszone-list)
|
|
185
187
|
* [`mw domain dnszone update DNSZONE-ID RECORD-SET`](#mw-domain-dnszone-update-dnszone-id-record-set)
|
|
@@ -468,16 +470,18 @@ Get all available dependencies
|
|
|
468
470
|
|
|
469
471
|
```
|
|
470
472
|
USAGE
|
|
471
|
-
$ mw app dependency list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
473
|
+
$ mw app dependency list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
474
|
+
[--no-relative-dates]
|
|
472
475
|
|
|
473
476
|
FLAGS
|
|
474
|
-
-o, --output=<option>
|
|
475
|
-
|
|
476
|
-
-x, --extended
|
|
477
|
-
--columns=<value>
|
|
478
|
-
--csv
|
|
479
|
-
--no-header
|
|
480
|
-
--no-
|
|
477
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
478
|
+
<options: txt|json|yaml|csv>
|
|
479
|
+
-x, --extended show extra columns
|
|
480
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
481
|
+
--csv output is csv format [alias: --output=csv]
|
|
482
|
+
--no-header hide table header from output
|
|
483
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
484
|
+
--no-truncate do not truncate output to fit screen
|
|
481
485
|
|
|
482
486
|
DESCRIPTION
|
|
483
487
|
Get all available dependencies
|
|
@@ -527,19 +531,20 @@ Get all available versions of a particular dependency
|
|
|
527
531
|
```
|
|
528
532
|
USAGE
|
|
529
533
|
$ mw app dependency versions SYSTEMSOFTWARE [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o
|
|
530
|
-
json|yaml|csv | | ]
|
|
534
|
+
txt|json|yaml|csv | | ] [--no-relative-dates]
|
|
531
535
|
|
|
532
536
|
ARGUMENTS
|
|
533
537
|
SYSTEMSOFTWARE name of the systemsoftware for which to list versions
|
|
534
538
|
|
|
535
539
|
FLAGS
|
|
536
|
-
-o, --output=<option>
|
|
537
|
-
|
|
538
|
-
-x, --extended
|
|
539
|
-
--columns=<value>
|
|
540
|
-
--csv
|
|
541
|
-
--no-header
|
|
542
|
-
--no-
|
|
540
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
541
|
+
<options: txt|json|yaml|csv>
|
|
542
|
+
-x, --extended show extra columns
|
|
543
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
544
|
+
--csv output is csv format [alias: --output=csv]
|
|
545
|
+
--no-header hide table header from output
|
|
546
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
547
|
+
--no-truncate do not truncate output to fit screen
|
|
543
548
|
|
|
544
549
|
DESCRIPTION
|
|
545
550
|
Get all available versions of a particular dependency
|
|
@@ -551,17 +556,18 @@ Download the filesystem of an app within a project to your local machine
|
|
|
551
556
|
|
|
552
557
|
```
|
|
553
558
|
USAGE
|
|
554
|
-
$ mw app download [INSTALLATION-ID] --target <value> [-q] [--dry-run] [--delete]
|
|
559
|
+
$ mw app download [INSTALLATION-ID] --target <value> [-q] [--ssh-user <value>] [--dry-run] [--delete]
|
|
555
560
|
|
|
556
561
|
ARGUMENTS
|
|
557
562
|
INSTALLATION-ID ID or short ID of an app installation; this argument is optional if a default app installation is set
|
|
558
563
|
in the context
|
|
559
564
|
|
|
560
565
|
FLAGS
|
|
561
|
-
-q, --quiet
|
|
562
|
-
--delete
|
|
563
|
-
--dry-run
|
|
564
|
-
--
|
|
566
|
+
-q, --quiet suppress process output and only display a machine-readable summary.
|
|
567
|
+
--delete delete local files that are not present on the server
|
|
568
|
+
--dry-run do not actually download the app installation
|
|
569
|
+
--ssh-user=<value> override the SSH user to connect with; if omitted, your own user will be used
|
|
570
|
+
--target=<value> (required) target directory to download the app installation to
|
|
565
571
|
|
|
566
572
|
DESCRIPTION
|
|
567
573
|
Download the filesystem of an app within a project to your local machine
|
|
@@ -571,6 +577,13 @@ FLAG DESCRIPTIONS
|
|
|
571
577
|
|
|
572
578
|
This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
|
|
573
579
|
scripts), you can use this flag to easily get the IDs of created resources for further processing.
|
|
580
|
+
|
|
581
|
+
--ssh-user=<value> override the SSH user to connect with; if omitted, your own user will be used
|
|
582
|
+
|
|
583
|
+
This flag can be used to override the SSH user that is used for a connection; be default, your own personal user
|
|
584
|
+
will be used for this.
|
|
585
|
+
|
|
586
|
+
You can also set this value by setting the MITTWALD_SSH_USER environment variable.
|
|
574
587
|
```
|
|
575
588
|
|
|
576
589
|
## `mw app get [INSTALLATION-ID]`
|
|
@@ -1449,18 +1462,19 @@ List installed apps in a project.
|
|
|
1449
1462
|
|
|
1450
1463
|
```
|
|
1451
1464
|
USAGE
|
|
1452
|
-
$ mw app list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
1453
|
-
<value>]
|
|
1465
|
+
$ mw app list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
1466
|
+
[--no-relative-dates] [-p <value>]
|
|
1454
1467
|
|
|
1455
1468
|
FLAGS
|
|
1456
|
-
-o, --output=<option> output in a more machine friendly format
|
|
1457
|
-
<options: json|yaml|csv>
|
|
1469
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
1470
|
+
<options: txt|json|yaml|csv>
|
|
1458
1471
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
1459
1472
|
context
|
|
1460
1473
|
-x, --extended show extra columns
|
|
1461
1474
|
--columns=<value> only show provided columns (comma-separated)
|
|
1462
1475
|
--csv output is csv format [alias: --output=csv]
|
|
1463
1476
|
--no-header hide table header from output
|
|
1477
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
1464
1478
|
--no-truncate do not truncate output to fit screen
|
|
1465
1479
|
|
|
1466
1480
|
DESCRIPTION
|
|
@@ -1479,19 +1493,28 @@ Connect to an app via SSH
|
|
|
1479
1493
|
|
|
1480
1494
|
```
|
|
1481
1495
|
USAGE
|
|
1482
|
-
$ mw app ssh [INSTALLATION-ID] [--cd] [--info] [--test]
|
|
1496
|
+
$ mw app ssh [INSTALLATION-ID] [--ssh-user <value>] [--cd] [--info] [--test]
|
|
1483
1497
|
|
|
1484
1498
|
ARGUMENTS
|
|
1485
1499
|
INSTALLATION-ID ID or short ID of an app installation; this argument is optional if a default app installation is set
|
|
1486
1500
|
in the context
|
|
1487
1501
|
|
|
1488
1502
|
FLAGS
|
|
1489
|
-
--[no-]cd
|
|
1490
|
-
--info
|
|
1491
|
-
--
|
|
1503
|
+
--[no-]cd change to installation path after connecting
|
|
1504
|
+
--info only print connection information, without actually connecting
|
|
1505
|
+
--ssh-user=<value> override the SSH user to connect with; if omitted, your own user will be used
|
|
1506
|
+
--test test connection and exit
|
|
1492
1507
|
|
|
1493
1508
|
DESCRIPTION
|
|
1494
1509
|
Connect to an app via SSH
|
|
1510
|
+
|
|
1511
|
+
FLAG DESCRIPTIONS
|
|
1512
|
+
--ssh-user=<value> override the SSH user to connect with; if omitted, your own user will be used
|
|
1513
|
+
|
|
1514
|
+
This flag can be used to override the SSH user that is used for a connection; be default, your own personal user
|
|
1515
|
+
will be used for this.
|
|
1516
|
+
|
|
1517
|
+
You can also set this value by setting the MITTWALD_SSH_USER environment variable.
|
|
1495
1518
|
```
|
|
1496
1519
|
|
|
1497
1520
|
## `mw app uninstall [INSTALLATION-ID]`
|
|
@@ -1564,7 +1587,7 @@ EXAMPLES
|
|
|
1564
1587
|
$ mw autocomplete --refresh-cache
|
|
1565
1588
|
```
|
|
1566
1589
|
|
|
1567
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.0.
|
|
1590
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.0.11/src/commands/autocomplete/index.ts)_
|
|
1568
1591
|
|
|
1569
1592
|
## `mw backup create`
|
|
1570
1593
|
|
|
@@ -1702,18 +1725,19 @@ List Backups for a given Project.
|
|
|
1702
1725
|
|
|
1703
1726
|
```
|
|
1704
1727
|
USAGE
|
|
1705
|
-
$ mw backup list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
1706
|
-
<value>]
|
|
1728
|
+
$ mw backup list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
1729
|
+
[--no-relative-dates] [-p <value>]
|
|
1707
1730
|
|
|
1708
1731
|
FLAGS
|
|
1709
|
-
-o, --output=<option> output in a more machine friendly format
|
|
1710
|
-
<options: json|yaml|csv>
|
|
1732
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
1733
|
+
<options: txt|json|yaml|csv>
|
|
1711
1734
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
1712
1735
|
context
|
|
1713
1736
|
-x, --extended show extra columns
|
|
1714
1737
|
--columns=<value> only show provided columns (comma-separated)
|
|
1715
1738
|
--csv output is csv format [alias: --output=csv]
|
|
1716
1739
|
--no-header hide table header from output
|
|
1740
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
1717
1741
|
--no-truncate do not truncate output to fit screen
|
|
1718
1742
|
|
|
1719
1743
|
DESCRIPTION
|
|
@@ -1735,18 +1759,19 @@ List backup schedules belonging to a given project.
|
|
|
1735
1759
|
|
|
1736
1760
|
```
|
|
1737
1761
|
USAGE
|
|
1738
|
-
$ mw backup schedule list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
1739
|
-
<value>]
|
|
1762
|
+
$ mw backup schedule list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
1763
|
+
[--no-relative-dates] [-p <value>]
|
|
1740
1764
|
|
|
1741
1765
|
FLAGS
|
|
1742
|
-
-o, --output=<option> output in a more machine friendly format
|
|
1743
|
-
<options: json|yaml|csv>
|
|
1766
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
1767
|
+
<options: txt|json|yaml|csv>
|
|
1744
1768
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
1745
1769
|
context
|
|
1746
1770
|
-x, --extended show extra columns
|
|
1747
1771
|
--columns=<value> only show provided columns (comma-separated)
|
|
1748
1772
|
--csv output is csv format [alias: --output=csv]
|
|
1749
1773
|
--no-header hide table header from output
|
|
1774
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
1750
1775
|
--no-truncate do not truncate output to fit screen
|
|
1751
1776
|
|
|
1752
1777
|
DESCRIPTION
|
|
@@ -1823,16 +1848,18 @@ Get all conversation categories.
|
|
|
1823
1848
|
|
|
1824
1849
|
```
|
|
1825
1850
|
USAGE
|
|
1826
|
-
$ mw conversation categories [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
1851
|
+
$ mw conversation categories [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
1852
|
+
[--no-relative-dates]
|
|
1827
1853
|
|
|
1828
1854
|
FLAGS
|
|
1829
|
-
-o, --output=<option>
|
|
1830
|
-
|
|
1831
|
-
-x, --extended
|
|
1832
|
-
--columns=<value>
|
|
1833
|
-
--csv
|
|
1834
|
-
--no-header
|
|
1835
|
-
--no-
|
|
1855
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
1856
|
+
<options: txt|json|yaml|csv>
|
|
1857
|
+
-x, --extended show extra columns
|
|
1858
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
1859
|
+
--csv output is csv format [alias: --output=csv]
|
|
1860
|
+
--no-header hide table header from output
|
|
1861
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
1862
|
+
--no-truncate do not truncate output to fit screen
|
|
1836
1863
|
|
|
1837
1864
|
DESCRIPTION
|
|
1838
1865
|
Get all conversation categories.
|
|
@@ -1883,16 +1910,18 @@ Get all conversations the authenticated user has created or has access to.
|
|
|
1883
1910
|
|
|
1884
1911
|
```
|
|
1885
1912
|
USAGE
|
|
1886
|
-
$ mw conversation list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
1913
|
+
$ mw conversation list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
1914
|
+
[--no-relative-dates]
|
|
1887
1915
|
|
|
1888
1916
|
FLAGS
|
|
1889
|
-
-o, --output=<option>
|
|
1890
|
-
|
|
1891
|
-
-x, --extended
|
|
1892
|
-
--columns=<value>
|
|
1893
|
-
--csv
|
|
1894
|
-
--no-header
|
|
1895
|
-
--no-
|
|
1917
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
1918
|
+
<options: txt|json|yaml|csv>
|
|
1919
|
+
-x, --extended show extra columns
|
|
1920
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
1921
|
+
--csv output is csv format [alias: --output=csv]
|
|
1922
|
+
--no-header hide table header from output
|
|
1923
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
1924
|
+
--no-truncate do not truncate output to fit screen
|
|
1896
1925
|
|
|
1897
1926
|
DESCRIPTION
|
|
1898
1927
|
Get all conversations the authenticated user has created or has access to.
|
|
@@ -2080,16 +2109,17 @@ List CronjobExecutions belonging to a Cronjob.
|
|
|
2080
2109
|
```
|
|
2081
2110
|
USAGE
|
|
2082
2111
|
$ mw cronjob execution list --cronjob-id <value> [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o
|
|
2083
|
-
json|yaml|csv | | ]
|
|
2112
|
+
txt|json|yaml|csv | | ] [--no-relative-dates]
|
|
2084
2113
|
|
|
2085
2114
|
FLAGS
|
|
2086
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2087
|
-
<options: json|yaml|csv>
|
|
2115
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2116
|
+
<options: txt|json|yaml|csv>
|
|
2088
2117
|
-x, --extended show extra columns
|
|
2089
2118
|
--columns=<value> only show provided columns (comma-separated)
|
|
2090
2119
|
--cronjob-id=<value> (required) ID of the cron job for which to list executions for.
|
|
2091
2120
|
--csv output is csv format [alias: --output=csv]
|
|
2092
2121
|
--no-header hide table header from output
|
|
2122
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2093
2123
|
--no-truncate do not truncate output to fit screen
|
|
2094
2124
|
|
|
2095
2125
|
DESCRIPTION
|
|
@@ -2152,18 +2182,19 @@ List cron jobs belonging to a project.
|
|
|
2152
2182
|
|
|
2153
2183
|
```
|
|
2154
2184
|
USAGE
|
|
2155
|
-
$ mw cronjob list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2156
|
-
<value>]
|
|
2185
|
+
$ mw cronjob list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
2186
|
+
[--no-relative-dates] [-p <value>]
|
|
2157
2187
|
|
|
2158
2188
|
FLAGS
|
|
2159
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2160
|
-
<options: json|yaml|csv>
|
|
2189
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2190
|
+
<options: txt|json|yaml|csv>
|
|
2161
2191
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2162
2192
|
context
|
|
2163
2193
|
-x, --extended show extra columns
|
|
2164
2194
|
--columns=<value> only show provided columns (comma-separated)
|
|
2165
2195
|
--csv output is csv format [alias: --output=csv]
|
|
2166
2196
|
--no-header hide table header from output
|
|
2197
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2167
2198
|
--no-truncate do not truncate output to fit screen
|
|
2168
2199
|
|
|
2169
2200
|
DESCRIPTION
|
|
@@ -2185,16 +2216,18 @@ List available MySQL character sets and collations, optionally filtered by a MyS
|
|
|
2185
2216
|
|
|
2186
2217
|
```
|
|
2187
2218
|
USAGE
|
|
2188
|
-
$ mw database mysql charsets [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2219
|
+
$ mw database mysql charsets [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
2220
|
+
[--no-relative-dates]
|
|
2189
2221
|
|
|
2190
2222
|
FLAGS
|
|
2191
|
-
-o, --output=<option>
|
|
2192
|
-
|
|
2193
|
-
-x, --extended
|
|
2194
|
-
--columns=<value>
|
|
2195
|
-
--csv
|
|
2196
|
-
--no-header
|
|
2197
|
-
--no-
|
|
2223
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2224
|
+
<options: txt|json|yaml|csv>
|
|
2225
|
+
-x, --extended show extra columns
|
|
2226
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
2227
|
+
--csv output is csv format [alias: --output=csv]
|
|
2228
|
+
--no-header hide table header from output
|
|
2229
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2230
|
+
--no-truncate do not truncate output to fit screen
|
|
2198
2231
|
|
|
2199
2232
|
DESCRIPTION
|
|
2200
2233
|
List available MySQL character sets and collations, optionally filtered by a MySQLVersion.
|
|
@@ -2269,7 +2302,7 @@ Create a dump of a MySQL database
|
|
|
2269
2302
|
|
|
2270
2303
|
```
|
|
2271
2304
|
USAGE
|
|
2272
|
-
$ mw database mysql dump DATABASE-ID -o <value> [-q] [-p <value>] [--temporary-user]
|
|
2305
|
+
$ mw database mysql dump DATABASE-ID -o <value> [-q] [-p <value>] [--ssh-user <value>] [--temporary-user] [--gzip]
|
|
2273
2306
|
|
|
2274
2307
|
ARGUMENTS
|
|
2275
2308
|
DATABASE-ID The ID of the database (when a project context is set, you can also use the name)
|
|
@@ -2278,6 +2311,8 @@ FLAGS
|
|
|
2278
2311
|
-o, --output=<value> (required) the output file to write the dump to ("-" for stdout)
|
|
2279
2312
|
-p, --mysql-password=<value> the password to use for the MySQL user (env: MYSQL_PWD)
|
|
2280
2313
|
-q, --quiet suppress process output and only display a machine-readable summary.
|
|
2314
|
+
--gzip compress the dump with gzip
|
|
2315
|
+
--ssh-user=<value> override the SSH user to connect with; if omitted, your own user will be used
|
|
2281
2316
|
--[no-]temporary-user create a temporary user for the dump
|
|
2282
2317
|
|
|
2283
2318
|
FLAG DESCRIPTIONS
|
|
@@ -2300,6 +2335,18 @@ FLAG DESCRIPTIONS
|
|
|
2300
2335
|
This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
|
|
2301
2336
|
scripts), you can use this flag to easily get the IDs of created resources for further processing.
|
|
2302
2337
|
|
|
2338
|
+
--gzip compress the dump with gzip
|
|
2339
|
+
|
|
2340
|
+
Compress the dump with gzip. This is useful for large databases, as it can significantly reduce the size of the
|
|
2341
|
+
dump.
|
|
2342
|
+
|
|
2343
|
+
--ssh-user=<value> override the SSH user to connect with; if omitted, your own user will be used
|
|
2344
|
+
|
|
2345
|
+
This flag can be used to override the SSH user that is used for a connection; be default, your own personal user
|
|
2346
|
+
will be used for this.
|
|
2347
|
+
|
|
2348
|
+
You can also set this value by setting the MITTWALD_SSH_USER environment variable.
|
|
2349
|
+
|
|
2303
2350
|
--[no-]temporary-user create a temporary user for the dump
|
|
2304
2351
|
|
|
2305
2352
|
Create a temporary user for the dump. This user will be deleted after the dump has been created. This is useful if
|
|
@@ -2334,18 +2381,19 @@ List MySQLDatabases belonging to a Project.
|
|
|
2334
2381
|
|
|
2335
2382
|
```
|
|
2336
2383
|
USAGE
|
|
2337
|
-
$ mw database mysql list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2338
|
-
<value>]
|
|
2384
|
+
$ mw database mysql list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
2385
|
+
[--no-relative-dates] [-p <value>]
|
|
2339
2386
|
|
|
2340
2387
|
FLAGS
|
|
2341
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2342
|
-
<options: json|yaml|csv>
|
|
2388
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2389
|
+
<options: txt|json|yaml|csv>
|
|
2343
2390
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2344
2391
|
context
|
|
2345
2392
|
-x, --extended show extra columns
|
|
2346
2393
|
--columns=<value> only show provided columns (comma-separated)
|
|
2347
2394
|
--csv output is csv format [alias: --output=csv]
|
|
2348
2395
|
--no-header hide table header from output
|
|
2396
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2349
2397
|
--no-truncate do not truncate output to fit screen
|
|
2350
2398
|
|
|
2351
2399
|
DESCRIPTION
|
|
@@ -2376,20 +2424,28 @@ Forward the TCP port of a MySQL database to a local port
|
|
|
2376
2424
|
|
|
2377
2425
|
```
|
|
2378
2426
|
USAGE
|
|
2379
|
-
$ mw database mysql port-forward DATABASE-ID [-q] [--port <value>]
|
|
2427
|
+
$ mw database mysql port-forward DATABASE-ID [-q] [--ssh-user <value>] [--port <value>]
|
|
2380
2428
|
|
|
2381
2429
|
ARGUMENTS
|
|
2382
2430
|
DATABASE-ID The ID of the database (when a project context is set, you can also use the name)
|
|
2383
2431
|
|
|
2384
2432
|
FLAGS
|
|
2385
|
-
-q, --quiet
|
|
2386
|
-
--port=<value>
|
|
2433
|
+
-q, --quiet suppress process output and only display a machine-readable summary.
|
|
2434
|
+
--port=<value> [default: 3306] The local TCP port to forward to
|
|
2435
|
+
--ssh-user=<value> override the SSH user to connect with; if omitted, your own user will be used
|
|
2387
2436
|
|
|
2388
2437
|
FLAG DESCRIPTIONS
|
|
2389
2438
|
-q, --quiet suppress process output and only display a machine-readable summary.
|
|
2390
2439
|
|
|
2391
2440
|
This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
|
|
2392
2441
|
scripts), you can use this flag to easily get the IDs of created resources for further processing.
|
|
2442
|
+
|
|
2443
|
+
--ssh-user=<value> override the SSH user to connect with; if omitted, your own user will be used
|
|
2444
|
+
|
|
2445
|
+
This flag can be used to override the SSH user that is used for a connection; be default, your own personal user
|
|
2446
|
+
will be used for this.
|
|
2447
|
+
|
|
2448
|
+
You can also set this value by setting the MITTWALD_SSH_USER environment variable.
|
|
2393
2449
|
```
|
|
2394
2450
|
|
|
2395
2451
|
## `mw database mysql shell DATABASE-ID`
|
|
@@ -2473,16 +2529,17 @@ List MySQL users belonging to a database.
|
|
|
2473
2529
|
```
|
|
2474
2530
|
USAGE
|
|
2475
2531
|
$ mw database mysql user list --database-id <value> [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o
|
|
2476
|
-
json|yaml|csv | | ]
|
|
2532
|
+
txt|json|yaml|csv | | ] [--no-relative-dates]
|
|
2477
2533
|
|
|
2478
2534
|
FLAGS
|
|
2479
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2480
|
-
<options: json|yaml|csv>
|
|
2535
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2536
|
+
<options: txt|json|yaml|csv>
|
|
2481
2537
|
-x, --extended show extra columns
|
|
2482
2538
|
--columns=<value> only show provided columns (comma-separated)
|
|
2483
2539
|
--csv output is csv format [alias: --output=csv]
|
|
2484
2540
|
--database-id=<value> (required) ID of the MySQL database to list users for.
|
|
2485
2541
|
--no-header hide table header from output
|
|
2542
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2486
2543
|
--no-truncate do not truncate output to fit screen
|
|
2487
2544
|
|
|
2488
2545
|
DESCRIPTION
|
|
@@ -2495,16 +2552,18 @@ List available MySQL versions.
|
|
|
2495
2552
|
|
|
2496
2553
|
```
|
|
2497
2554
|
USAGE
|
|
2498
|
-
$ mw database mysql versions [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2555
|
+
$ mw database mysql versions [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
2556
|
+
[--no-relative-dates]
|
|
2499
2557
|
|
|
2500
2558
|
FLAGS
|
|
2501
|
-
-o, --output=<option>
|
|
2502
|
-
|
|
2503
|
-
-x, --extended
|
|
2504
|
-
--columns=<value>
|
|
2505
|
-
--csv
|
|
2506
|
-
--no-header
|
|
2507
|
-
--no-
|
|
2559
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2560
|
+
<options: txt|json|yaml|csv>
|
|
2561
|
+
-x, --extended show extra columns
|
|
2562
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
2563
|
+
--csv output is csv format [alias: --output=csv]
|
|
2564
|
+
--no-header hide table header from output
|
|
2565
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2566
|
+
--no-truncate do not truncate output to fit screen
|
|
2508
2567
|
|
|
2509
2568
|
DESCRIPTION
|
|
2510
2569
|
List available MySQL versions.
|
|
@@ -2584,18 +2643,19 @@ List Redis databases belonging to a project.
|
|
|
2584
2643
|
|
|
2585
2644
|
```
|
|
2586
2645
|
USAGE
|
|
2587
|
-
$ mw database redis list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2588
|
-
<value>]
|
|
2646
|
+
$ mw database redis list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
2647
|
+
[--no-relative-dates] [-p <value>]
|
|
2589
2648
|
|
|
2590
2649
|
FLAGS
|
|
2591
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2592
|
-
<options: json|yaml|csv>
|
|
2650
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2651
|
+
<options: txt|json|yaml|csv>
|
|
2593
2652
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2594
2653
|
context
|
|
2595
2654
|
-x, --extended show extra columns
|
|
2596
2655
|
--columns=<value> only show provided columns (comma-separated)
|
|
2597
2656
|
--csv output is csv format [alias: --output=csv]
|
|
2598
2657
|
--no-header hide table header from output
|
|
2658
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2599
2659
|
--no-truncate do not truncate output to fit screen
|
|
2600
2660
|
|
|
2601
2661
|
DESCRIPTION
|
|
@@ -2635,18 +2695,19 @@ List available Redis versions.
|
|
|
2635
2695
|
|
|
2636
2696
|
```
|
|
2637
2697
|
USAGE
|
|
2638
|
-
$ mw database redis versions [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2639
|
-
<value>]
|
|
2698
|
+
$ mw database redis versions [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
2699
|
+
[--no-relative-dates] [-p <value>]
|
|
2640
2700
|
|
|
2641
2701
|
FLAGS
|
|
2642
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2643
|
-
<options: json|yaml|csv>
|
|
2702
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2703
|
+
<options: txt|json|yaml|csv>
|
|
2644
2704
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2645
2705
|
context
|
|
2646
2706
|
-x, --extended show extra columns
|
|
2647
2707
|
--columns=<value> only show provided columns (comma-separated)
|
|
2648
2708
|
--csv output is csv format [alias: --output=csv]
|
|
2649
2709
|
--no-header hide table header from output
|
|
2710
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2650
2711
|
--no-truncate do not truncate output to fit screen
|
|
2651
2712
|
|
|
2652
2713
|
DESCRIPTION
|
|
@@ -2659,6 +2720,95 @@ FLAG DESCRIPTIONS
|
|
|
2659
2720
|
to persistently set a default project for all commands that accept this flag.
|
|
2660
2721
|
```
|
|
2661
2722
|
|
|
2723
|
+
## `mw ddev init [INSTALLATION-ID]`
|
|
2724
|
+
|
|
2725
|
+
Initialize a new ddev project in the current directory.
|
|
2726
|
+
|
|
2727
|
+
```
|
|
2728
|
+
USAGE
|
|
2729
|
+
$ mw ddev init [INSTALLATION-ID] [-q] [--override-type <value>] [--project-name <value>]
|
|
2730
|
+
[--override-mittwald-plugin <value>]
|
|
2731
|
+
|
|
2732
|
+
ARGUMENTS
|
|
2733
|
+
INSTALLATION-ID ID or short ID of an app installation; this argument is optional if a default app installation is set
|
|
2734
|
+
in the context
|
|
2735
|
+
|
|
2736
|
+
FLAGS
|
|
2737
|
+
-q, --quiet suppress process output and only display a machine-readable summary.
|
|
2738
|
+
--override-type=<value> [default: auto] Override the type of the generated DDEV configuration
|
|
2739
|
+
--project-name=<value> DDEV project name
|
|
2740
|
+
|
|
2741
|
+
DEVELOPMENT FLAGS
|
|
2742
|
+
--override-mittwald-plugin=<value> [default: mittwald/ddev] override the mittwald plugin
|
|
2743
|
+
|
|
2744
|
+
DESCRIPTION
|
|
2745
|
+
Initialize a new ddev project in the current directory.
|
|
2746
|
+
|
|
2747
|
+
This command initializes a new ddev configuration for an existing app installation in the current directory.
|
|
2748
|
+
|
|
2749
|
+
More precisely, this command will do the following:
|
|
2750
|
+
|
|
2751
|
+
1. Create a new ddev configuration file in the .ddev directory, appropriate for the reference app installation
|
|
2752
|
+
2. Initialize a new ddev project with the given configuration
|
|
2753
|
+
3. Install the official mittwald DDEV addon
|
|
2754
|
+
4. Add SSH credentials to the DDEV project
|
|
2755
|
+
|
|
2756
|
+
This command can be run repeatedly to update the DDEV configuration of the project.
|
|
2757
|
+
|
|
2758
|
+
Please note that this command requires DDEV to be installed on your system.
|
|
2759
|
+
|
|
2760
|
+
FLAG DESCRIPTIONS
|
|
2761
|
+
-q, --quiet suppress process output and only display a machine-readable summary.
|
|
2762
|
+
|
|
2763
|
+
This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
|
|
2764
|
+
scripts), you can use this flag to easily get the IDs of created resources for further processing.
|
|
2765
|
+
|
|
2766
|
+
--override-mittwald-plugin=<value> override the mittwald plugin
|
|
2767
|
+
|
|
2768
|
+
This flag allows you to override the mittwald plugin that should be installed by default; this is useful for testing
|
|
2769
|
+
purposes
|
|
2770
|
+
|
|
2771
|
+
--override-type=<value> Override the type of the generated DDEV configuration
|
|
2772
|
+
|
|
2773
|
+
The type of the generated DDEV configuration; this can be any of the documented DDEV project types, or 'auto' (which
|
|
2774
|
+
is also the default) for automatic discovery.
|
|
2775
|
+
|
|
2776
|
+
See https://ddev.readthedocs.io/en/latest/users/configuration/config/#type for more information
|
|
2777
|
+
|
|
2778
|
+
--project-name=<value> DDEV project name
|
|
2779
|
+
|
|
2780
|
+
The name of the DDEV project
|
|
2781
|
+
```
|
|
2782
|
+
|
|
2783
|
+
## `mw ddev render-config [INSTALLATION-ID]`
|
|
2784
|
+
|
|
2785
|
+
Generate a DDEV configuration YAML file for the current app.
|
|
2786
|
+
|
|
2787
|
+
```
|
|
2788
|
+
USAGE
|
|
2789
|
+
$ mw ddev render-config [INSTALLATION-ID] [--override-type <value>]
|
|
2790
|
+
|
|
2791
|
+
ARGUMENTS
|
|
2792
|
+
INSTALLATION-ID ID or short ID of an app installation; this argument is optional if a default app installation is set
|
|
2793
|
+
in the context
|
|
2794
|
+
|
|
2795
|
+
FLAGS
|
|
2796
|
+
--override-type=<value> [default: auto] Override the type of the generated DDEV configuration
|
|
2797
|
+
|
|
2798
|
+
DESCRIPTION
|
|
2799
|
+
Generate a DDEV configuration YAML file for the current app.
|
|
2800
|
+
|
|
2801
|
+
This command initializes a new ddev configuration in the current directory.
|
|
2802
|
+
|
|
2803
|
+
FLAG DESCRIPTIONS
|
|
2804
|
+
--override-type=<value> Override the type of the generated DDEV configuration
|
|
2805
|
+
|
|
2806
|
+
The type of the generated DDEV configuration; this can be any of the documented DDEV project types, or 'auto' (which
|
|
2807
|
+
is also the default) for automatic discovery.
|
|
2808
|
+
|
|
2809
|
+
See https://ddev.readthedocs.io/en/latest/users/configuration/config/#type for more information
|
|
2810
|
+
```
|
|
2811
|
+
|
|
2662
2812
|
## `mw domain dnszone get DNSZONE-ID`
|
|
2663
2813
|
|
|
2664
2814
|
gets a specific zone
|
|
@@ -2684,18 +2834,19 @@ list all DNS zones by project ID
|
|
|
2684
2834
|
|
|
2685
2835
|
```
|
|
2686
2836
|
USAGE
|
|
2687
|
-
$ mw domain dnszone list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2688
|
-
<value>]
|
|
2837
|
+
$ mw domain dnszone list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
2838
|
+
[--no-relative-dates] [-p <value>]
|
|
2689
2839
|
|
|
2690
2840
|
FLAGS
|
|
2691
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2692
|
-
<options: json|yaml|csv>
|
|
2841
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2842
|
+
<options: txt|json|yaml|csv>
|
|
2693
2843
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2694
2844
|
context
|
|
2695
2845
|
-x, --extended show extra columns
|
|
2696
2846
|
--columns=<value> only show provided columns (comma-separated)
|
|
2697
2847
|
--csv output is csv format [alias: --output=csv]
|
|
2698
2848
|
--no-header hide table header from output
|
|
2849
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2699
2850
|
--no-truncate do not truncate output to fit screen
|
|
2700
2851
|
|
|
2701
2852
|
DESCRIPTION
|
|
@@ -2791,18 +2942,19 @@ List domains belonging to a project.
|
|
|
2791
2942
|
|
|
2792
2943
|
```
|
|
2793
2944
|
USAGE
|
|
2794
|
-
$ mw domain list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2795
|
-
<value>]
|
|
2945
|
+
$ mw domain list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
2946
|
+
[--no-relative-dates] [-p <value>]
|
|
2796
2947
|
|
|
2797
2948
|
FLAGS
|
|
2798
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2799
|
-
<options: json|yaml|csv>
|
|
2949
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2950
|
+
<options: txt|json|yaml|csv>
|
|
2800
2951
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2801
2952
|
context
|
|
2802
2953
|
-x, --extended show extra columns
|
|
2803
2954
|
--columns=<value> only show provided columns (comma-separated)
|
|
2804
2955
|
--csv output is csv format [alias: --output=csv]
|
|
2805
2956
|
--no-header hide table header from output
|
|
2957
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2806
2958
|
--no-truncate do not truncate output to fit screen
|
|
2807
2959
|
|
|
2808
2960
|
DESCRIPTION
|
|
@@ -2927,19 +3079,20 @@ List virtualhosts for a project.
|
|
|
2927
3079
|
|
|
2928
3080
|
```
|
|
2929
3081
|
USAGE
|
|
2930
|
-
$ mw domain virtualhost list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2931
|
-
<value>] [-a]
|
|
3082
|
+
$ mw domain virtualhost list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
3083
|
+
[--no-relative-dates] [-p <value>] [-a]
|
|
2932
3084
|
|
|
2933
3085
|
FLAGS
|
|
2934
3086
|
-a, --all List all virtual hosts that you have access to, regardless of project
|
|
2935
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2936
|
-
<options: json|yaml|csv>
|
|
3087
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3088
|
+
<options: txt|json|yaml|csv>
|
|
2937
3089
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2938
3090
|
context
|
|
2939
3091
|
-x, --extended show extra columns
|
|
2940
3092
|
--columns=<value> only show provided columns (comma-separated)
|
|
2941
3093
|
--csv output is csv format [alias: --output=csv]
|
|
2942
3094
|
--no-header hide table header from output
|
|
3095
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2943
3096
|
--no-truncate do not truncate output to fit screen
|
|
2944
3097
|
|
|
2945
3098
|
DESCRIPTION
|
|
@@ -2970,7 +3123,7 @@ DESCRIPTION
|
|
|
2970
3123
|
Display help for mw.
|
|
2971
3124
|
```
|
|
2972
3125
|
|
|
2973
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.0.
|
|
3126
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.0.14/src/commands/help.ts)_
|
|
2974
3127
|
|
|
2975
3128
|
## `mw login reset`
|
|
2976
3129
|
|
|
@@ -3143,18 +3296,19 @@ Get all mail addresses for a project ID
|
|
|
3143
3296
|
|
|
3144
3297
|
```
|
|
3145
3298
|
USAGE
|
|
3146
|
-
$ mw mail address list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3147
|
-
<value>]
|
|
3299
|
+
$ mw mail address list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
3300
|
+
[--no-relative-dates] [-p <value>]
|
|
3148
3301
|
|
|
3149
3302
|
FLAGS
|
|
3150
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3151
|
-
<options: json|yaml|csv>
|
|
3303
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3304
|
+
<options: txt|json|yaml|csv>
|
|
3152
3305
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3153
3306
|
context
|
|
3154
3307
|
-x, --extended show extra columns
|
|
3155
3308
|
--columns=<value> only show provided columns (comma-separated)
|
|
3156
3309
|
--csv output is csv format [alias: --output=csv]
|
|
3157
3310
|
--no-header hide table header from output
|
|
3311
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3158
3312
|
--no-truncate do not truncate output to fit screen
|
|
3159
3313
|
|
|
3160
3314
|
DESCRIPTION
|
|
@@ -3192,18 +3346,19 @@ Get all deliveryboxes by project ID
|
|
|
3192
3346
|
|
|
3193
3347
|
```
|
|
3194
3348
|
USAGE
|
|
3195
|
-
$ mw mail deliverybox list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3196
|
-
<value>]
|
|
3349
|
+
$ mw mail deliverybox list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
3350
|
+
[--no-relative-dates] [-p <value>]
|
|
3197
3351
|
|
|
3198
3352
|
FLAGS
|
|
3199
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3200
|
-
<options: json|yaml|csv>
|
|
3353
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3354
|
+
<options: txt|json|yaml|csv>
|
|
3201
3355
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3202
3356
|
context
|
|
3203
3357
|
-x, --extended show extra columns
|
|
3204
3358
|
--columns=<value> only show provided columns (comma-separated)
|
|
3205
3359
|
--csv output is csv format [alias: --output=csv]
|
|
3206
3360
|
--no-header hide table header from output
|
|
3361
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3207
3362
|
--no-truncate do not truncate output to fit screen
|
|
3208
3363
|
|
|
3209
3364
|
DESCRIPTION
|
|
@@ -3299,18 +3454,19 @@ List all invites for an organization.
|
|
|
3299
3454
|
|
|
3300
3455
|
```
|
|
3301
3456
|
USAGE
|
|
3302
|
-
$ mw org invite list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3303
|
-
<value>]
|
|
3457
|
+
$ mw org invite list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
3458
|
+
[--no-relative-dates] [-o <value>]
|
|
3304
3459
|
|
|
3305
3460
|
FLAGS
|
|
3306
|
-
-o, --org-id=<value>
|
|
3307
|
-
-o, --output=<option>
|
|
3308
|
-
|
|
3309
|
-
-x, --extended
|
|
3310
|
-
--columns=<value>
|
|
3311
|
-
--csv
|
|
3312
|
-
--no-header
|
|
3313
|
-
--no-
|
|
3461
|
+
-o, --org-id=<value> ID or short ID of an org; this flag is optional if a default org is set in the context
|
|
3462
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3463
|
+
<options: txt|json|yaml|csv>
|
|
3464
|
+
-x, --extended show extra columns
|
|
3465
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
3466
|
+
--csv output is csv format [alias: --output=csv]
|
|
3467
|
+
--no-header hide table header from output
|
|
3468
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3469
|
+
--no-truncate do not truncate output to fit screen
|
|
3314
3470
|
|
|
3315
3471
|
DESCRIPTION
|
|
3316
3472
|
List all invites for an organization.
|
|
@@ -3328,16 +3484,18 @@ List all organization invites for the executing user.
|
|
|
3328
3484
|
|
|
3329
3485
|
```
|
|
3330
3486
|
USAGE
|
|
3331
|
-
$ mw org invite list-own [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3487
|
+
$ mw org invite list-own [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
3488
|
+
[--no-relative-dates]
|
|
3332
3489
|
|
|
3333
3490
|
FLAGS
|
|
3334
|
-
-o, --output=<option>
|
|
3335
|
-
|
|
3336
|
-
-x, --extended
|
|
3337
|
-
--columns=<value>
|
|
3338
|
-
--csv
|
|
3339
|
-
--no-header
|
|
3340
|
-
--no-
|
|
3491
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3492
|
+
<options: txt|json|yaml|csv>
|
|
3493
|
+
-x, --extended show extra columns
|
|
3494
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
3495
|
+
--csv output is csv format [alias: --output=csv]
|
|
3496
|
+
--no-header hide table header from output
|
|
3497
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3498
|
+
--no-truncate do not truncate output to fit screen
|
|
3341
3499
|
|
|
3342
3500
|
DESCRIPTION
|
|
3343
3501
|
List all organization invites for the executing user.
|
|
@@ -3373,16 +3531,18 @@ Get all organizations the authenticated user has access to.
|
|
|
3373
3531
|
|
|
3374
3532
|
```
|
|
3375
3533
|
USAGE
|
|
3376
|
-
$ mw org list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3534
|
+
$ mw org list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
3535
|
+
[--no-relative-dates]
|
|
3377
3536
|
|
|
3378
3537
|
FLAGS
|
|
3379
|
-
-o, --output=<option>
|
|
3380
|
-
|
|
3381
|
-
-x, --extended
|
|
3382
|
-
--columns=<value>
|
|
3383
|
-
--csv
|
|
3384
|
-
--no-header
|
|
3385
|
-
--no-
|
|
3538
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3539
|
+
<options: txt|json|yaml|csv>
|
|
3540
|
+
-x, --extended show extra columns
|
|
3541
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
3542
|
+
--csv output is csv format [alias: --output=csv]
|
|
3543
|
+
--no-header hide table header from output
|
|
3544
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3545
|
+
--no-truncate do not truncate output to fit screen
|
|
3386
3546
|
|
|
3387
3547
|
DESCRIPTION
|
|
3388
3548
|
Get all organizations the authenticated user has access to.
|
|
@@ -3394,18 +3554,19 @@ List all memberships belonging to an organization.
|
|
|
3394
3554
|
|
|
3395
3555
|
```
|
|
3396
3556
|
USAGE
|
|
3397
|
-
$ mw org membership list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3398
|
-
<value>]
|
|
3557
|
+
$ mw org membership list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
3558
|
+
[--no-relative-dates] [-o <value>]
|
|
3399
3559
|
|
|
3400
3560
|
FLAGS
|
|
3401
|
-
-o, --org-id=<value>
|
|
3402
|
-
-o, --output=<option>
|
|
3403
|
-
|
|
3404
|
-
-x, --extended
|
|
3405
|
-
--columns=<value>
|
|
3406
|
-
--csv
|
|
3407
|
-
--no-header
|
|
3408
|
-
--no-
|
|
3561
|
+
-o, --org-id=<value> ID or short ID of an org; this flag is optional if a default org is set in the context
|
|
3562
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3563
|
+
<options: txt|json|yaml|csv>
|
|
3564
|
+
-x, --extended show extra columns
|
|
3565
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
3566
|
+
--csv output is csv format [alias: --output=csv]
|
|
3567
|
+
--no-header hide table header from output
|
|
3568
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3569
|
+
--no-truncate do not truncate output to fit screen
|
|
3409
3570
|
|
|
3410
3571
|
DESCRIPTION
|
|
3411
3572
|
List all memberships belonging to an organization.
|
|
@@ -3423,16 +3584,18 @@ List all organization memberships for the executing user.
|
|
|
3423
3584
|
|
|
3424
3585
|
```
|
|
3425
3586
|
USAGE
|
|
3426
|
-
$ mw org membership list-own [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3587
|
+
$ mw org membership list-own [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
3588
|
+
[--no-relative-dates]
|
|
3427
3589
|
|
|
3428
3590
|
FLAGS
|
|
3429
|
-
-o, --output=<option>
|
|
3430
|
-
|
|
3431
|
-
-x, --extended
|
|
3432
|
-
--columns=<value>
|
|
3433
|
-
--csv
|
|
3434
|
-
--no-header
|
|
3435
|
-
--no-
|
|
3591
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3592
|
+
<options: txt|json|yaml|csv>
|
|
3593
|
+
-x, --extended show extra columns
|
|
3594
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
3595
|
+
--csv output is csv format [alias: --output=csv]
|
|
3596
|
+
--no-header hide table header from output
|
|
3597
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3598
|
+
--no-truncate do not truncate output to fit screen
|
|
3436
3599
|
|
|
3437
3600
|
DESCRIPTION
|
|
3438
3601
|
List all organization memberships for the executing user.
|
|
@@ -3598,18 +3761,19 @@ List Backups for a given Project.
|
|
|
3598
3761
|
|
|
3599
3762
|
```
|
|
3600
3763
|
USAGE
|
|
3601
|
-
$ mw project backup list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3602
|
-
<value>]
|
|
3764
|
+
$ mw project backup list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
3765
|
+
[--no-relative-dates] [-p <value>]
|
|
3603
3766
|
|
|
3604
3767
|
FLAGS
|
|
3605
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3606
|
-
<options: json|yaml|csv>
|
|
3768
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3769
|
+
<options: txt|json|yaml|csv>
|
|
3607
3770
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3608
3771
|
context
|
|
3609
3772
|
-x, --extended show extra columns
|
|
3610
3773
|
--columns=<value> only show provided columns (comma-separated)
|
|
3611
3774
|
--csv output is csv format [alias: --output=csv]
|
|
3612
3775
|
--no-header hide table header from output
|
|
3776
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3613
3777
|
--no-truncate do not truncate output to fit screen
|
|
3614
3778
|
|
|
3615
3779
|
DESCRIPTION
|
|
@@ -3631,18 +3795,19 @@ List backup schedules belonging to a given project.
|
|
|
3631
3795
|
|
|
3632
3796
|
```
|
|
3633
3797
|
USAGE
|
|
3634
|
-
$ mw project backupschedule list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3635
|
-
<value>]
|
|
3798
|
+
$ mw project backupschedule list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
3799
|
+
[--no-relative-dates] [-p <value>]
|
|
3636
3800
|
|
|
3637
3801
|
FLAGS
|
|
3638
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3639
|
-
<options: json|yaml|csv>
|
|
3802
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3803
|
+
<options: txt|json|yaml|csv>
|
|
3640
3804
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3641
3805
|
context
|
|
3642
3806
|
-x, --extended show extra columns
|
|
3643
3807
|
--columns=<value> only show provided columns (comma-separated)
|
|
3644
3808
|
--csv output is csv format [alias: --output=csv]
|
|
3645
3809
|
--no-header hide table header from output
|
|
3810
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3646
3811
|
--no-truncate do not truncate output to fit screen
|
|
3647
3812
|
|
|
3648
3813
|
DESCRIPTION
|
|
@@ -3720,16 +3885,17 @@ List CronjobExecutions belonging to a Cronjob.
|
|
|
3720
3885
|
```
|
|
3721
3886
|
USAGE
|
|
3722
3887
|
$ mw project cronjob execution list --cronjob-id <value> [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o
|
|
3723
|
-
json|yaml|csv | | ]
|
|
3888
|
+
txt|json|yaml|csv | | ] [--no-relative-dates]
|
|
3724
3889
|
|
|
3725
3890
|
FLAGS
|
|
3726
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3727
|
-
<options: json|yaml|csv>
|
|
3891
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3892
|
+
<options: txt|json|yaml|csv>
|
|
3728
3893
|
-x, --extended show extra columns
|
|
3729
3894
|
--columns=<value> only show provided columns (comma-separated)
|
|
3730
3895
|
--cronjob-id=<value> (required) ID of the cron job for which to list executions for.
|
|
3731
3896
|
--csv output is csv format [alias: --output=csv]
|
|
3732
3897
|
--no-header hide table header from output
|
|
3898
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3733
3899
|
--no-truncate do not truncate output to fit screen
|
|
3734
3900
|
|
|
3735
3901
|
DESCRIPTION
|
|
@@ -3773,18 +3939,19 @@ List cron jobs belonging to a project.
|
|
|
3773
3939
|
|
|
3774
3940
|
```
|
|
3775
3941
|
USAGE
|
|
3776
|
-
$ mw project cronjob list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3777
|
-
<value>]
|
|
3942
|
+
$ mw project cronjob list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
3943
|
+
[--no-relative-dates] [-p <value>]
|
|
3778
3944
|
|
|
3779
3945
|
FLAGS
|
|
3780
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3781
|
-
<options: json|yaml|csv>
|
|
3946
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3947
|
+
<options: txt|json|yaml|csv>
|
|
3782
3948
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3783
3949
|
context
|
|
3784
3950
|
-x, --extended show extra columns
|
|
3785
3951
|
--columns=<value> only show provided columns (comma-separated)
|
|
3786
3952
|
--csv output is csv format [alias: --output=csv]
|
|
3787
3953
|
--no-header hide table header from output
|
|
3954
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3788
3955
|
--no-truncate do not truncate output to fit screen
|
|
3789
3956
|
|
|
3790
3957
|
DESCRIPTION
|
|
@@ -3889,18 +4056,19 @@ List all invites belonging to a project.
|
|
|
3889
4056
|
|
|
3890
4057
|
```
|
|
3891
4058
|
USAGE
|
|
3892
|
-
$ mw project invite list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3893
|
-
<value>]
|
|
4059
|
+
$ mw project invite list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4060
|
+
[--no-relative-dates] [-p <value>]
|
|
3894
4061
|
|
|
3895
4062
|
FLAGS
|
|
3896
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3897
|
-
<options: json|yaml|csv>
|
|
4063
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4064
|
+
<options: txt|json|yaml|csv>
|
|
3898
4065
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3899
4066
|
context
|
|
3900
4067
|
-x, --extended show extra columns
|
|
3901
4068
|
--columns=<value> only show provided columns (comma-separated)
|
|
3902
4069
|
--csv output is csv format [alias: --output=csv]
|
|
3903
4070
|
--no-header hide table header from output
|
|
4071
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3904
4072
|
--no-truncate do not truncate output to fit screen
|
|
3905
4073
|
|
|
3906
4074
|
DESCRIPTION
|
|
@@ -3919,16 +4087,18 @@ List all project invites for the executing user.
|
|
|
3919
4087
|
|
|
3920
4088
|
```
|
|
3921
4089
|
USAGE
|
|
3922
|
-
$ mw project invite list-own [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4090
|
+
$ mw project invite list-own [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4091
|
+
[--no-relative-dates]
|
|
3923
4092
|
|
|
3924
4093
|
FLAGS
|
|
3925
|
-
-o, --output=<option>
|
|
3926
|
-
|
|
3927
|
-
-x, --extended
|
|
3928
|
-
--columns=<value>
|
|
3929
|
-
--csv
|
|
3930
|
-
--no-header
|
|
3931
|
-
--no-
|
|
4094
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4095
|
+
<options: txt|json|yaml|csv>
|
|
4096
|
+
-x, --extended show extra columns
|
|
4097
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
4098
|
+
--csv output is csv format [alias: --output=csv]
|
|
4099
|
+
--no-header hide table header from output
|
|
4100
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4101
|
+
--no-truncate do not truncate output to fit screen
|
|
3932
4102
|
|
|
3933
4103
|
DESCRIPTION
|
|
3934
4104
|
List all project invites for the executing user.
|
|
@@ -3940,16 +4110,18 @@ List all projects that you have access to
|
|
|
3940
4110
|
|
|
3941
4111
|
```
|
|
3942
4112
|
USAGE
|
|
3943
|
-
$ mw project list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4113
|
+
$ mw project list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4114
|
+
[--no-relative-dates]
|
|
3944
4115
|
|
|
3945
4116
|
FLAGS
|
|
3946
|
-
-o, --output=<option>
|
|
3947
|
-
|
|
3948
|
-
-x, --extended
|
|
3949
|
-
--columns=<value>
|
|
3950
|
-
--csv
|
|
3951
|
-
--no-header
|
|
3952
|
-
--no-
|
|
4117
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4118
|
+
<options: txt|json|yaml|csv>
|
|
4119
|
+
-x, --extended show extra columns
|
|
4120
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
4121
|
+
--csv output is csv format [alias: --output=csv]
|
|
4122
|
+
--no-header hide table header from output
|
|
4123
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4124
|
+
--no-truncate do not truncate output to fit screen
|
|
3953
4125
|
|
|
3954
4126
|
DESCRIPTION
|
|
3955
4127
|
List all projects that you have access to
|
|
@@ -4004,18 +4176,19 @@ List all memberships for a Project.
|
|
|
4004
4176
|
|
|
4005
4177
|
```
|
|
4006
4178
|
USAGE
|
|
4007
|
-
$ mw project membership list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4008
|
-
<value>]
|
|
4179
|
+
$ mw project membership list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4180
|
+
[--no-relative-dates] [-p <value>]
|
|
4009
4181
|
|
|
4010
4182
|
FLAGS
|
|
4011
|
-
-o, --output=<option> output in a more machine friendly format
|
|
4012
|
-
<options: json|yaml|csv>
|
|
4183
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4184
|
+
<options: txt|json|yaml|csv>
|
|
4013
4185
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
4014
4186
|
context
|
|
4015
4187
|
-x, --extended show extra columns
|
|
4016
4188
|
--columns=<value> only show provided columns (comma-separated)
|
|
4017
4189
|
--csv output is csv format [alias: --output=csv]
|
|
4018
4190
|
--no-header hide table header from output
|
|
4191
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4019
4192
|
--no-truncate do not truncate output to fit screen
|
|
4020
4193
|
|
|
4021
4194
|
DESCRIPTION
|
|
@@ -4034,17 +4207,18 @@ List ProjectMemberships belonging to the executing user.
|
|
|
4034
4207
|
|
|
4035
4208
|
```
|
|
4036
4209
|
USAGE
|
|
4037
|
-
$ mw project membership list-own [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv |
|
|
4038
|
-
|
|
4210
|
+
$ mw project membership list-own [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4211
|
+
[--no-relative-dates]
|
|
4039
4212
|
|
|
4040
4213
|
FLAGS
|
|
4041
|
-
-o, --output=<option>
|
|
4042
|
-
|
|
4043
|
-
-x, --extended
|
|
4044
|
-
--columns=<value>
|
|
4045
|
-
--csv
|
|
4046
|
-
--no-header
|
|
4047
|
-
--no-
|
|
4214
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4215
|
+
<options: txt|json|yaml|csv>
|
|
4216
|
+
-x, --extended show extra columns
|
|
4217
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
4218
|
+
--csv output is csv format [alias: --output=csv]
|
|
4219
|
+
--no-header hide table header from output
|
|
4220
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4221
|
+
--no-truncate do not truncate output to fit screen
|
|
4048
4222
|
|
|
4049
4223
|
DESCRIPTION
|
|
4050
4224
|
List ProjectMemberships belonging to the executing user.
|
|
@@ -4056,18 +4230,19 @@ List all SFTP users for a project.
|
|
|
4056
4230
|
|
|
4057
4231
|
```
|
|
4058
4232
|
USAGE
|
|
4059
|
-
$ mw project sftp-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4060
|
-
<value>]
|
|
4233
|
+
$ mw project sftp-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4234
|
+
[--no-relative-dates] [-p <value>]
|
|
4061
4235
|
|
|
4062
4236
|
FLAGS
|
|
4063
|
-
-o, --output=<option> output in a more machine friendly format
|
|
4064
|
-
<options: json|yaml|csv>
|
|
4237
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4238
|
+
<options: txt|json|yaml|csv>
|
|
4065
4239
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
4066
4240
|
context
|
|
4067
4241
|
-x, --extended show extra columns
|
|
4068
4242
|
--columns=<value> only show provided columns (comma-separated)
|
|
4069
4243
|
--csv output is csv format [alias: --output=csv]
|
|
4070
4244
|
--no-header hide table header from output
|
|
4245
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4071
4246
|
--no-truncate do not truncate output to fit screen
|
|
4072
4247
|
|
|
4073
4248
|
DESCRIPTION
|
|
@@ -4104,18 +4279,19 @@ List all SSH users for a project.
|
|
|
4104
4279
|
|
|
4105
4280
|
```
|
|
4106
4281
|
USAGE
|
|
4107
|
-
$ mw project ssh-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4108
|
-
<value>]
|
|
4282
|
+
$ mw project ssh-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4283
|
+
[--no-relative-dates] [-p <value>]
|
|
4109
4284
|
|
|
4110
4285
|
FLAGS
|
|
4111
|
-
-o, --output=<option> output in a more machine friendly format
|
|
4112
|
-
<options: json|yaml|csv>
|
|
4286
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4287
|
+
<options: txt|json|yaml|csv>
|
|
4113
4288
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
4114
4289
|
context
|
|
4115
4290
|
-x, --extended show extra columns
|
|
4116
4291
|
--columns=<value> only show provided columns (comma-separated)
|
|
4117
4292
|
--csv output is csv format [alias: --output=csv]
|
|
4118
4293
|
--no-header hide table header from output
|
|
4294
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4119
4295
|
--no-truncate do not truncate output to fit screen
|
|
4120
4296
|
|
|
4121
4297
|
DESCRIPTION
|
|
@@ -4171,16 +4347,18 @@ List servers for an organization or user.
|
|
|
4171
4347
|
|
|
4172
4348
|
```
|
|
4173
4349
|
USAGE
|
|
4174
|
-
$ mw server list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4350
|
+
$ mw server list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4351
|
+
[--no-relative-dates]
|
|
4175
4352
|
|
|
4176
4353
|
FLAGS
|
|
4177
|
-
-o, --output=<option>
|
|
4178
|
-
|
|
4179
|
-
-x, --extended
|
|
4180
|
-
--columns=<value>
|
|
4181
|
-
--csv
|
|
4182
|
-
--no-header
|
|
4183
|
-
--no-
|
|
4354
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4355
|
+
<options: txt|json|yaml|csv>
|
|
4356
|
+
-x, --extended show extra columns
|
|
4357
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
4358
|
+
--csv output is csv format [alias: --output=csv]
|
|
4359
|
+
--no-header hide table header from output
|
|
4360
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4361
|
+
--no-truncate do not truncate output to fit screen
|
|
4184
4362
|
|
|
4185
4363
|
DESCRIPTION
|
|
4186
4364
|
List servers for an organization or user.
|
|
@@ -4217,18 +4395,19 @@ List all SFTP users for a project.
|
|
|
4217
4395
|
|
|
4218
4396
|
```
|
|
4219
4397
|
USAGE
|
|
4220
|
-
$ mw sftp-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4221
|
-
<value>]
|
|
4398
|
+
$ mw sftp-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4399
|
+
[--no-relative-dates] [-p <value>]
|
|
4222
4400
|
|
|
4223
4401
|
FLAGS
|
|
4224
|
-
-o, --output=<option> output in a more machine friendly format
|
|
4225
|
-
<options: json|yaml|csv>
|
|
4402
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4403
|
+
<options: txt|json|yaml|csv>
|
|
4226
4404
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
4227
4405
|
context
|
|
4228
4406
|
-x, --extended show extra columns
|
|
4229
4407
|
--columns=<value> only show provided columns (comma-separated)
|
|
4230
4408
|
--csv output is csv format [alias: --output=csv]
|
|
4231
4409
|
--no-header hide table header from output
|
|
4410
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4232
4411
|
--no-truncate do not truncate output to fit screen
|
|
4233
4412
|
|
|
4234
4413
|
DESCRIPTION
|
|
@@ -4275,18 +4454,19 @@ List all SSH users for a project.
|
|
|
4275
4454
|
|
|
4276
4455
|
```
|
|
4277
4456
|
USAGE
|
|
4278
|
-
$ mw ssh-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4279
|
-
<value>]
|
|
4457
|
+
$ mw ssh-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4458
|
+
[--no-relative-dates] [-p <value>]
|
|
4280
4459
|
|
|
4281
4460
|
FLAGS
|
|
4282
|
-
-o, --output=<option> output in a more machine friendly format
|
|
4283
|
-
<options: json|yaml|csv>
|
|
4461
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4462
|
+
<options: txt|json|yaml|csv>
|
|
4284
4463
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
4285
4464
|
context
|
|
4286
4465
|
-x, --extended show extra columns
|
|
4287
4466
|
--columns=<value> only show provided columns (comma-separated)
|
|
4288
4467
|
--csv output is csv format [alias: --output=csv]
|
|
4289
4468
|
--no-header hide table header from output
|
|
4469
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4290
4470
|
--no-truncate do not truncate output to fit screen
|
|
4291
4471
|
|
|
4292
4472
|
DESCRIPTION
|
|
@@ -4337,7 +4517,7 @@ EXAMPLES
|
|
|
4337
4517
|
$ mw update --available
|
|
4338
4518
|
```
|
|
4339
4519
|
|
|
4340
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/v4.1.
|
|
4520
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/v4.1.14/src/commands/update.ts)_
|
|
4341
4521
|
|
|
4342
4522
|
## `mw user api-token create`
|
|
4343
4523
|
|
|
@@ -4389,16 +4569,18 @@ List all API tokens of the user
|
|
|
4389
4569
|
|
|
4390
4570
|
```
|
|
4391
4571
|
USAGE
|
|
4392
|
-
$ mw user api-token list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4572
|
+
$ mw user api-token list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4573
|
+
[--no-relative-dates]
|
|
4393
4574
|
|
|
4394
4575
|
FLAGS
|
|
4395
|
-
-o, --output=<option>
|
|
4396
|
-
|
|
4397
|
-
-x, --extended
|
|
4398
|
-
--columns=<value>
|
|
4399
|
-
--csv
|
|
4400
|
-
--no-header
|
|
4401
|
-
--no-
|
|
4576
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4577
|
+
<options: txt|json|yaml|csv>
|
|
4578
|
+
-x, --extended show extra columns
|
|
4579
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
4580
|
+
--csv output is csv format [alias: --output=csv]
|
|
4581
|
+
--no-header hide table header from output
|
|
4582
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4583
|
+
--no-truncate do not truncate output to fit screen
|
|
4402
4584
|
|
|
4403
4585
|
DESCRIPTION
|
|
4404
4586
|
List all API tokens of the user
|
|
@@ -4474,16 +4656,18 @@ List all active sessions
|
|
|
4474
4656
|
|
|
4475
4657
|
```
|
|
4476
4658
|
USAGE
|
|
4477
|
-
$ mw user session list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4659
|
+
$ mw user session list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4660
|
+
[--no-relative-dates]
|
|
4478
4661
|
|
|
4479
4662
|
FLAGS
|
|
4480
|
-
-o, --output=<option>
|
|
4481
|
-
|
|
4482
|
-
-x, --extended
|
|
4483
|
-
--columns=<value>
|
|
4484
|
-
--csv
|
|
4485
|
-
--no-header
|
|
4486
|
-
--no-
|
|
4663
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4664
|
+
<options: txt|json|yaml|csv>
|
|
4665
|
+
-x, --extended show extra columns
|
|
4666
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
4667
|
+
--csv output is csv format [alias: --output=csv]
|
|
4668
|
+
--no-header hide table header from output
|
|
4669
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4670
|
+
--no-truncate do not truncate output to fit screen
|
|
4487
4671
|
|
|
4488
4672
|
DESCRIPTION
|
|
4489
4673
|
List all active sessions
|
|
@@ -4564,16 +4748,18 @@ Get your stored ssh keys
|
|
|
4564
4748
|
|
|
4565
4749
|
```
|
|
4566
4750
|
USAGE
|
|
4567
|
-
$ mw user ssh-key list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4751
|
+
$ mw user ssh-key list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4752
|
+
[--no-relative-dates]
|
|
4568
4753
|
|
|
4569
4754
|
FLAGS
|
|
4570
|
-
-o, --output=<option>
|
|
4571
|
-
|
|
4572
|
-
-x, --extended
|
|
4573
|
-
--columns=<value>
|
|
4574
|
-
--csv
|
|
4575
|
-
--no-header
|
|
4576
|
-
--no-
|
|
4755
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4756
|
+
<options: txt|json|yaml|csv>
|
|
4757
|
+
-x, --extended show extra columns
|
|
4758
|
+
--columns=<value> only show provided columns (comma-separated)
|
|
4759
|
+
--csv output is csv format [alias: --output=csv]
|
|
4760
|
+
--no-header hide table header from output
|
|
4761
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4762
|
+
--no-truncate do not truncate output to fit screen
|
|
4577
4763
|
|
|
4578
4764
|
DESCRIPTION
|
|
4579
4765
|
Get your stored ssh keys
|