@mittwald/cli 1.0.0-alpha.36 → 1.0.0-alpha.38
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 +398 -251
- 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} +6 -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.js +4 -18
- 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/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/create.d.ts +1 -0
- package/dist/{esm/commands → commands}/database/mysql/create.js +34 -29
- package/dist/commands/database/mysql/create.test.js +100 -0
- package/dist/{esm/commands → commands}/database/mysql/delete.js +1 -1
- package/dist/{esm/commands → commands}/database/mysql/dump.js +1 -1
- package/dist/{esm/commands → commands}/database/mysql/get.js +1 -1
- package/dist/commands/database/mysql/list.d.ts +40 -0
- package/dist/{esm/commands → commands}/database/mysql/phpmyadmin.js +1 -1
- package/dist/{esm/commands → commands}/database/mysql/port-forward.js +1 -1
- package/dist/{esm/commands → commands}/database/mysql/shell.js +1 -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 -3
- 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/lib/api_consistency.d.ts +2 -0
- package/dist/lib/api_consistency.js +21 -0
- package/dist/lib/api_retry.d.ts +2 -0
- package/dist/lib/api_retry.js +29 -0
- package/dist/{esm/lib → lib}/app/Installer.js +2 -2
- package/dist/{esm/lib → lib}/app/hooks.d.ts +7 -6
- package/dist/{esm/lib → lib}/app/install.d.ts +3 -2
- package/dist/{esm/lib → lib}/app/install.js +3 -4
- 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}/app/wait.d.ts +1 -1
- package/dist/{esm/lib → lib}/app/wait.js +1 -3
- 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/flags.d.ts +1 -2
- package/dist/{esm/lib → lib}/database/mysql/flags.js +7 -17
- 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/exec.d.ts +1 -1
- package/dist/{esm/lib → lib}/ssh/exec.js +9 -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/rendering/react/lib/observable-value/types.js +1 -0
- package/dist/types.js +1 -0
- package/package.json +29 -29
- 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/download.d.ts +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/ssh.d.ts +0 -0
- /package/dist/{esm/commands → commands}/app/ssh.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/rendering/react/components/DnsZone/RecordComponent.js → commands/database/mysql/create.test.d.ts} +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/delete.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/dump.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/get.d.ts +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/port-forward.d.ts +0 -0
- /package/dist/{esm/commands → commands}/database/mysql/shell.d.ts +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/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/uuid.js +0 -0
- /package/dist/{esm/lib → lib}/app/versions.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/connect.d.ts +0 -0
- /package/dist/{esm/lib → lib}/database/mysql/connect.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/appinstall.d.ts +0 -0
- /package/dist/{esm/lib → lib}/ssh/appinstall.js +0 -0
- /package/dist/{esm/lib → lib}/ssh/flags.d.ts +0 -0
- /package/dist/{esm/lib → lib}/ssh/flags.js +0 -0
- /package/dist/{esm/lib → lib}/ssh/project.d.ts +0 -0
- /package/dist/{esm/lib → lib}/ssh/project.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/types.js → 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 → 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
|
@@ -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
|
|
@@ -1457,18 +1462,19 @@ List installed apps in a project.
|
|
|
1457
1462
|
|
|
1458
1463
|
```
|
|
1459
1464
|
USAGE
|
|
1460
|
-
$ mw app list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
1461
|
-
<value>]
|
|
1465
|
+
$ mw app list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
1466
|
+
[--no-relative-dates] [-p <value>]
|
|
1462
1467
|
|
|
1463
1468
|
FLAGS
|
|
1464
|
-
-o, --output=<option> output in a more machine friendly format
|
|
1465
|
-
<options: json|yaml|csv>
|
|
1469
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
1470
|
+
<options: txt|json|yaml|csv>
|
|
1466
1471
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
1467
1472
|
context
|
|
1468
1473
|
-x, --extended show extra columns
|
|
1469
1474
|
--columns=<value> only show provided columns (comma-separated)
|
|
1470
1475
|
--csv output is csv format [alias: --output=csv]
|
|
1471
1476
|
--no-header hide table header from output
|
|
1477
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
1472
1478
|
--no-truncate do not truncate output to fit screen
|
|
1473
1479
|
|
|
1474
1480
|
DESCRIPTION
|
|
@@ -1581,7 +1587,7 @@ EXAMPLES
|
|
|
1581
1587
|
$ mw autocomplete --refresh-cache
|
|
1582
1588
|
```
|
|
1583
1589
|
|
|
1584
|
-
_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)_
|
|
1585
1591
|
|
|
1586
1592
|
## `mw backup create`
|
|
1587
1593
|
|
|
@@ -1719,18 +1725,19 @@ List Backups for a given Project.
|
|
|
1719
1725
|
|
|
1720
1726
|
```
|
|
1721
1727
|
USAGE
|
|
1722
|
-
$ mw backup list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
1723
|
-
<value>]
|
|
1728
|
+
$ mw backup list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
1729
|
+
[--no-relative-dates] [-p <value>]
|
|
1724
1730
|
|
|
1725
1731
|
FLAGS
|
|
1726
|
-
-o, --output=<option> output in a more machine friendly format
|
|
1727
|
-
<options: json|yaml|csv>
|
|
1732
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
1733
|
+
<options: txt|json|yaml|csv>
|
|
1728
1734
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
1729
1735
|
context
|
|
1730
1736
|
-x, --extended show extra columns
|
|
1731
1737
|
--columns=<value> only show provided columns (comma-separated)
|
|
1732
1738
|
--csv output is csv format [alias: --output=csv]
|
|
1733
1739
|
--no-header hide table header from output
|
|
1740
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
1734
1741
|
--no-truncate do not truncate output to fit screen
|
|
1735
1742
|
|
|
1736
1743
|
DESCRIPTION
|
|
@@ -1752,18 +1759,19 @@ List backup schedules belonging to a given project.
|
|
|
1752
1759
|
|
|
1753
1760
|
```
|
|
1754
1761
|
USAGE
|
|
1755
|
-
$ mw backup schedule list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
1756
|
-
<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>]
|
|
1757
1764
|
|
|
1758
1765
|
FLAGS
|
|
1759
|
-
-o, --output=<option> output in a more machine friendly format
|
|
1760
|
-
<options: json|yaml|csv>
|
|
1766
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
1767
|
+
<options: txt|json|yaml|csv>
|
|
1761
1768
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
1762
1769
|
context
|
|
1763
1770
|
-x, --extended show extra columns
|
|
1764
1771
|
--columns=<value> only show provided columns (comma-separated)
|
|
1765
1772
|
--csv output is csv format [alias: --output=csv]
|
|
1766
1773
|
--no-header hide table header from output
|
|
1774
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
1767
1775
|
--no-truncate do not truncate output to fit screen
|
|
1768
1776
|
|
|
1769
1777
|
DESCRIPTION
|
|
@@ -1840,16 +1848,18 @@ Get all conversation categories.
|
|
|
1840
1848
|
|
|
1841
1849
|
```
|
|
1842
1850
|
USAGE
|
|
1843
|
-
$ 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]
|
|
1844
1853
|
|
|
1845
1854
|
FLAGS
|
|
1846
|
-
-o, --output=<option>
|
|
1847
|
-
|
|
1848
|
-
-x, --extended
|
|
1849
|
-
--columns=<value>
|
|
1850
|
-
--csv
|
|
1851
|
-
--no-header
|
|
1852
|
-
--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
|
|
1853
1863
|
|
|
1854
1864
|
DESCRIPTION
|
|
1855
1865
|
Get all conversation categories.
|
|
@@ -1900,16 +1910,18 @@ Get all conversations the authenticated user has created or has access to.
|
|
|
1900
1910
|
|
|
1901
1911
|
```
|
|
1902
1912
|
USAGE
|
|
1903
|
-
$ 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]
|
|
1904
1915
|
|
|
1905
1916
|
FLAGS
|
|
1906
|
-
-o, --output=<option>
|
|
1907
|
-
|
|
1908
|
-
-x, --extended
|
|
1909
|
-
--columns=<value>
|
|
1910
|
-
--csv
|
|
1911
|
-
--no-header
|
|
1912
|
-
--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
|
|
1913
1925
|
|
|
1914
1926
|
DESCRIPTION
|
|
1915
1927
|
Get all conversations the authenticated user has created or has access to.
|
|
@@ -2097,16 +2109,17 @@ List CronjobExecutions belonging to a Cronjob.
|
|
|
2097
2109
|
```
|
|
2098
2110
|
USAGE
|
|
2099
2111
|
$ mw cronjob execution list --cronjob-id <value> [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o
|
|
2100
|
-
json|yaml|csv | | ]
|
|
2112
|
+
txt|json|yaml|csv | | ] [--no-relative-dates]
|
|
2101
2113
|
|
|
2102
2114
|
FLAGS
|
|
2103
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2104
|
-
<options: json|yaml|csv>
|
|
2115
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2116
|
+
<options: txt|json|yaml|csv>
|
|
2105
2117
|
-x, --extended show extra columns
|
|
2106
2118
|
--columns=<value> only show provided columns (comma-separated)
|
|
2107
2119
|
--cronjob-id=<value> (required) ID of the cron job for which to list executions for.
|
|
2108
2120
|
--csv output is csv format [alias: --output=csv]
|
|
2109
2121
|
--no-header hide table header from output
|
|
2122
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2110
2123
|
--no-truncate do not truncate output to fit screen
|
|
2111
2124
|
|
|
2112
2125
|
DESCRIPTION
|
|
@@ -2169,18 +2182,19 @@ List cron jobs belonging to a project.
|
|
|
2169
2182
|
|
|
2170
2183
|
```
|
|
2171
2184
|
USAGE
|
|
2172
|
-
$ mw cronjob list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2173
|
-
<value>]
|
|
2185
|
+
$ mw cronjob list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
2186
|
+
[--no-relative-dates] [-p <value>]
|
|
2174
2187
|
|
|
2175
2188
|
FLAGS
|
|
2176
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2177
|
-
<options: json|yaml|csv>
|
|
2189
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2190
|
+
<options: txt|json|yaml|csv>
|
|
2178
2191
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2179
2192
|
context
|
|
2180
2193
|
-x, --extended show extra columns
|
|
2181
2194
|
--columns=<value> only show provided columns (comma-separated)
|
|
2182
2195
|
--csv output is csv format [alias: --output=csv]
|
|
2183
2196
|
--no-header hide table header from output
|
|
2197
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2184
2198
|
--no-truncate do not truncate output to fit screen
|
|
2185
2199
|
|
|
2186
2200
|
DESCRIPTION
|
|
@@ -2202,16 +2216,18 @@ List available MySQL character sets and collations, optionally filtered by a MyS
|
|
|
2202
2216
|
|
|
2203
2217
|
```
|
|
2204
2218
|
USAGE
|
|
2205
|
-
$ 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]
|
|
2206
2221
|
|
|
2207
2222
|
FLAGS
|
|
2208
|
-
-o, --output=<option>
|
|
2209
|
-
|
|
2210
|
-
-x, --extended
|
|
2211
|
-
--columns=<value>
|
|
2212
|
-
--csv
|
|
2213
|
-
--no-header
|
|
2214
|
-
--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
|
|
2215
2231
|
|
|
2216
2232
|
DESCRIPTION
|
|
2217
2233
|
List available MySQL character sets and collations, optionally filtered by a MySQLVersion.
|
|
@@ -2264,7 +2280,7 @@ USAGE
|
|
|
2264
2280
|
$ mw database mysql delete DATABASE-ID [-q] [-f]
|
|
2265
2281
|
|
|
2266
2282
|
ARGUMENTS
|
|
2267
|
-
DATABASE-ID The ID of the database
|
|
2283
|
+
DATABASE-ID The ID or name of the database
|
|
2268
2284
|
|
|
2269
2285
|
FLAGS
|
|
2270
2286
|
-f, --force Do not ask for confirmation
|
|
@@ -2289,7 +2305,7 @@ USAGE
|
|
|
2289
2305
|
$ mw database mysql dump DATABASE-ID -o <value> [-q] [-p <value>] [--ssh-user <value>] [--temporary-user] [--gzip]
|
|
2290
2306
|
|
|
2291
2307
|
ARGUMENTS
|
|
2292
|
-
DATABASE-ID The ID of the database
|
|
2308
|
+
DATABASE-ID The ID or name of the database
|
|
2293
2309
|
|
|
2294
2310
|
FLAGS
|
|
2295
2311
|
-o, --output=<value> (required) the output file to write the dump to ("-" for stdout)
|
|
@@ -2349,7 +2365,7 @@ USAGE
|
|
|
2349
2365
|
$ mw database mysql get DATABASE-ID [-o json|yaml | | ]
|
|
2350
2366
|
|
|
2351
2367
|
ARGUMENTS
|
|
2352
|
-
DATABASE-ID The ID of the database
|
|
2368
|
+
DATABASE-ID The ID or name of the database
|
|
2353
2369
|
|
|
2354
2370
|
FLAGS
|
|
2355
2371
|
-o, --output=<option> output in a more machine friendly format
|
|
@@ -2365,18 +2381,19 @@ List MySQLDatabases belonging to a Project.
|
|
|
2365
2381
|
|
|
2366
2382
|
```
|
|
2367
2383
|
USAGE
|
|
2368
|
-
$ mw database mysql list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2369
|
-
<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>]
|
|
2370
2386
|
|
|
2371
2387
|
FLAGS
|
|
2372
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2373
|
-
<options: json|yaml|csv>
|
|
2388
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2389
|
+
<options: txt|json|yaml|csv>
|
|
2374
2390
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2375
2391
|
context
|
|
2376
2392
|
-x, --extended show extra columns
|
|
2377
2393
|
--columns=<value> only show provided columns (comma-separated)
|
|
2378
2394
|
--csv output is csv format [alias: --output=csv]
|
|
2379
2395
|
--no-header hide table header from output
|
|
2396
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2380
2397
|
--no-truncate do not truncate output to fit screen
|
|
2381
2398
|
|
|
2382
2399
|
DESCRIPTION
|
|
@@ -2398,7 +2415,7 @@ USAGE
|
|
|
2398
2415
|
$ mw database mysql phpmyadmin DATABASE-ID
|
|
2399
2416
|
|
|
2400
2417
|
ARGUMENTS
|
|
2401
|
-
DATABASE-ID The ID of the database
|
|
2418
|
+
DATABASE-ID The ID or name of the database
|
|
2402
2419
|
```
|
|
2403
2420
|
|
|
2404
2421
|
## `mw database mysql port-forward DATABASE-ID`
|
|
@@ -2410,7 +2427,7 @@ USAGE
|
|
|
2410
2427
|
$ mw database mysql port-forward DATABASE-ID [-q] [--ssh-user <value>] [--port <value>]
|
|
2411
2428
|
|
|
2412
2429
|
ARGUMENTS
|
|
2413
|
-
DATABASE-ID The ID of the database
|
|
2430
|
+
DATABASE-ID The ID or name of the database
|
|
2414
2431
|
|
|
2415
2432
|
FLAGS
|
|
2416
2433
|
-q, --quiet suppress process output and only display a machine-readable summary.
|
|
@@ -2440,7 +2457,7 @@ USAGE
|
|
|
2440
2457
|
$ mw database mysql shell DATABASE-ID [-q] [-p <value>]
|
|
2441
2458
|
|
|
2442
2459
|
ARGUMENTS
|
|
2443
|
-
DATABASE-ID The ID of the database
|
|
2460
|
+
DATABASE-ID The ID or name of the database
|
|
2444
2461
|
|
|
2445
2462
|
FLAGS
|
|
2446
2463
|
-p, --mysql-password=<value> the password to use for the MySQL user (env: MYSQL_PWD)
|
|
@@ -2512,16 +2529,17 @@ List MySQL users belonging to a database.
|
|
|
2512
2529
|
```
|
|
2513
2530
|
USAGE
|
|
2514
2531
|
$ mw database mysql user list --database-id <value> [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o
|
|
2515
|
-
json|yaml|csv | | ]
|
|
2532
|
+
txt|json|yaml|csv | | ] [--no-relative-dates]
|
|
2516
2533
|
|
|
2517
2534
|
FLAGS
|
|
2518
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2519
|
-
<options: json|yaml|csv>
|
|
2535
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2536
|
+
<options: txt|json|yaml|csv>
|
|
2520
2537
|
-x, --extended show extra columns
|
|
2521
2538
|
--columns=<value> only show provided columns (comma-separated)
|
|
2522
2539
|
--csv output is csv format [alias: --output=csv]
|
|
2523
2540
|
--database-id=<value> (required) ID of the MySQL database to list users for.
|
|
2524
2541
|
--no-header hide table header from output
|
|
2542
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2525
2543
|
--no-truncate do not truncate output to fit screen
|
|
2526
2544
|
|
|
2527
2545
|
DESCRIPTION
|
|
@@ -2534,16 +2552,18 @@ List available MySQL versions.
|
|
|
2534
2552
|
|
|
2535
2553
|
```
|
|
2536
2554
|
USAGE
|
|
2537
|
-
$ 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]
|
|
2538
2557
|
|
|
2539
2558
|
FLAGS
|
|
2540
|
-
-o, --output=<option>
|
|
2541
|
-
|
|
2542
|
-
-x, --extended
|
|
2543
|
-
--columns=<value>
|
|
2544
|
-
--csv
|
|
2545
|
-
--no-header
|
|
2546
|
-
--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
|
|
2547
2567
|
|
|
2548
2568
|
DESCRIPTION
|
|
2549
2569
|
List available MySQL versions.
|
|
@@ -2623,18 +2643,19 @@ List Redis databases belonging to a project.
|
|
|
2623
2643
|
|
|
2624
2644
|
```
|
|
2625
2645
|
USAGE
|
|
2626
|
-
$ mw database redis list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2627
|
-
<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>]
|
|
2628
2648
|
|
|
2629
2649
|
FLAGS
|
|
2630
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2631
|
-
<options: json|yaml|csv>
|
|
2650
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2651
|
+
<options: txt|json|yaml|csv>
|
|
2632
2652
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2633
2653
|
context
|
|
2634
2654
|
-x, --extended show extra columns
|
|
2635
2655
|
--columns=<value> only show provided columns (comma-separated)
|
|
2636
2656
|
--csv output is csv format [alias: --output=csv]
|
|
2637
2657
|
--no-header hide table header from output
|
|
2658
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2638
2659
|
--no-truncate do not truncate output to fit screen
|
|
2639
2660
|
|
|
2640
2661
|
DESCRIPTION
|
|
@@ -2674,18 +2695,19 @@ List available Redis versions.
|
|
|
2674
2695
|
|
|
2675
2696
|
```
|
|
2676
2697
|
USAGE
|
|
2677
|
-
$ mw database redis versions [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2678
|
-
<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>]
|
|
2679
2700
|
|
|
2680
2701
|
FLAGS
|
|
2681
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2682
|
-
<options: json|yaml|csv>
|
|
2702
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2703
|
+
<options: txt|json|yaml|csv>
|
|
2683
2704
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2684
2705
|
context
|
|
2685
2706
|
-x, --extended show extra columns
|
|
2686
2707
|
--columns=<value> only show provided columns (comma-separated)
|
|
2687
2708
|
--csv output is csv format [alias: --output=csv]
|
|
2688
2709
|
--no-header hide table header from output
|
|
2710
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2689
2711
|
--no-truncate do not truncate output to fit screen
|
|
2690
2712
|
|
|
2691
2713
|
DESCRIPTION
|
|
@@ -2698,6 +2720,95 @@ FLAG DESCRIPTIONS
|
|
|
2698
2720
|
to persistently set a default project for all commands that accept this flag.
|
|
2699
2721
|
```
|
|
2700
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
|
+
|
|
2701
2812
|
## `mw domain dnszone get DNSZONE-ID`
|
|
2702
2813
|
|
|
2703
2814
|
gets a specific zone
|
|
@@ -2723,18 +2834,19 @@ list all DNS zones by project ID
|
|
|
2723
2834
|
|
|
2724
2835
|
```
|
|
2725
2836
|
USAGE
|
|
2726
|
-
$ mw domain dnszone list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2727
|
-
<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>]
|
|
2728
2839
|
|
|
2729
2840
|
FLAGS
|
|
2730
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2731
|
-
<options: json|yaml|csv>
|
|
2841
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2842
|
+
<options: txt|json|yaml|csv>
|
|
2732
2843
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2733
2844
|
context
|
|
2734
2845
|
-x, --extended show extra columns
|
|
2735
2846
|
--columns=<value> only show provided columns (comma-separated)
|
|
2736
2847
|
--csv output is csv format [alias: --output=csv]
|
|
2737
2848
|
--no-header hide table header from output
|
|
2849
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2738
2850
|
--no-truncate do not truncate output to fit screen
|
|
2739
2851
|
|
|
2740
2852
|
DESCRIPTION
|
|
@@ -2830,18 +2942,19 @@ List domains belonging to a project.
|
|
|
2830
2942
|
|
|
2831
2943
|
```
|
|
2832
2944
|
USAGE
|
|
2833
|
-
$ mw domain list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2834
|
-
<value>]
|
|
2945
|
+
$ mw domain list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
2946
|
+
[--no-relative-dates] [-p <value>]
|
|
2835
2947
|
|
|
2836
2948
|
FLAGS
|
|
2837
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2838
|
-
<options: json|yaml|csv>
|
|
2949
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
2950
|
+
<options: txt|json|yaml|csv>
|
|
2839
2951
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2840
2952
|
context
|
|
2841
2953
|
-x, --extended show extra columns
|
|
2842
2954
|
--columns=<value> only show provided columns (comma-separated)
|
|
2843
2955
|
--csv output is csv format [alias: --output=csv]
|
|
2844
2956
|
--no-header hide table header from output
|
|
2957
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2845
2958
|
--no-truncate do not truncate output to fit screen
|
|
2846
2959
|
|
|
2847
2960
|
DESCRIPTION
|
|
@@ -2966,19 +3079,20 @@ List virtualhosts for a project.
|
|
|
2966
3079
|
|
|
2967
3080
|
```
|
|
2968
3081
|
USAGE
|
|
2969
|
-
$ mw domain virtualhost list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
2970
|
-
<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]
|
|
2971
3084
|
|
|
2972
3085
|
FLAGS
|
|
2973
3086
|
-a, --all List all virtual hosts that you have access to, regardless of project
|
|
2974
|
-
-o, --output=<option> output in a more machine friendly format
|
|
2975
|
-
<options: json|yaml|csv>
|
|
3087
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3088
|
+
<options: txt|json|yaml|csv>
|
|
2976
3089
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
2977
3090
|
context
|
|
2978
3091
|
-x, --extended show extra columns
|
|
2979
3092
|
--columns=<value> only show provided columns (comma-separated)
|
|
2980
3093
|
--csv output is csv format [alias: --output=csv]
|
|
2981
3094
|
--no-header hide table header from output
|
|
3095
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
2982
3096
|
--no-truncate do not truncate output to fit screen
|
|
2983
3097
|
|
|
2984
3098
|
DESCRIPTION
|
|
@@ -3009,7 +3123,7 @@ DESCRIPTION
|
|
|
3009
3123
|
Display help for mw.
|
|
3010
3124
|
```
|
|
3011
3125
|
|
|
3012
|
-
_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.15/src/commands/help.ts)_
|
|
3013
3127
|
|
|
3014
3128
|
## `mw login reset`
|
|
3015
3129
|
|
|
@@ -3182,18 +3296,19 @@ Get all mail addresses for a project ID
|
|
|
3182
3296
|
|
|
3183
3297
|
```
|
|
3184
3298
|
USAGE
|
|
3185
|
-
$ mw mail address list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3186
|
-
<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>]
|
|
3187
3301
|
|
|
3188
3302
|
FLAGS
|
|
3189
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3190
|
-
<options: json|yaml|csv>
|
|
3303
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3304
|
+
<options: txt|json|yaml|csv>
|
|
3191
3305
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3192
3306
|
context
|
|
3193
3307
|
-x, --extended show extra columns
|
|
3194
3308
|
--columns=<value> only show provided columns (comma-separated)
|
|
3195
3309
|
--csv output is csv format [alias: --output=csv]
|
|
3196
3310
|
--no-header hide table header from output
|
|
3311
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3197
3312
|
--no-truncate do not truncate output to fit screen
|
|
3198
3313
|
|
|
3199
3314
|
DESCRIPTION
|
|
@@ -3231,18 +3346,19 @@ Get all deliveryboxes by project ID
|
|
|
3231
3346
|
|
|
3232
3347
|
```
|
|
3233
3348
|
USAGE
|
|
3234
|
-
$ mw mail deliverybox list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3235
|
-
<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>]
|
|
3236
3351
|
|
|
3237
3352
|
FLAGS
|
|
3238
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3239
|
-
<options: json|yaml|csv>
|
|
3353
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3354
|
+
<options: txt|json|yaml|csv>
|
|
3240
3355
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3241
3356
|
context
|
|
3242
3357
|
-x, --extended show extra columns
|
|
3243
3358
|
--columns=<value> only show provided columns (comma-separated)
|
|
3244
3359
|
--csv output is csv format [alias: --output=csv]
|
|
3245
3360
|
--no-header hide table header from output
|
|
3361
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3246
3362
|
--no-truncate do not truncate output to fit screen
|
|
3247
3363
|
|
|
3248
3364
|
DESCRIPTION
|
|
@@ -3338,18 +3454,19 @@ List all invites for an organization.
|
|
|
3338
3454
|
|
|
3339
3455
|
```
|
|
3340
3456
|
USAGE
|
|
3341
|
-
$ mw org invite list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3342
|
-
<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>]
|
|
3343
3459
|
|
|
3344
3460
|
FLAGS
|
|
3345
|
-
-o, --org-id=<value>
|
|
3346
|
-
-o, --output=<option>
|
|
3347
|
-
|
|
3348
|
-
-x, --extended
|
|
3349
|
-
--columns=<value>
|
|
3350
|
-
--csv
|
|
3351
|
-
--no-header
|
|
3352
|
-
--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
|
|
3353
3470
|
|
|
3354
3471
|
DESCRIPTION
|
|
3355
3472
|
List all invites for an organization.
|
|
@@ -3367,16 +3484,18 @@ List all organization invites for the executing user.
|
|
|
3367
3484
|
|
|
3368
3485
|
```
|
|
3369
3486
|
USAGE
|
|
3370
|
-
$ 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]
|
|
3371
3489
|
|
|
3372
3490
|
FLAGS
|
|
3373
|
-
-o, --output=<option>
|
|
3374
|
-
|
|
3375
|
-
-x, --extended
|
|
3376
|
-
--columns=<value>
|
|
3377
|
-
--csv
|
|
3378
|
-
--no-header
|
|
3379
|
-
--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
|
|
3380
3499
|
|
|
3381
3500
|
DESCRIPTION
|
|
3382
3501
|
List all organization invites for the executing user.
|
|
@@ -3412,16 +3531,18 @@ Get all organizations the authenticated user has access to.
|
|
|
3412
3531
|
|
|
3413
3532
|
```
|
|
3414
3533
|
USAGE
|
|
3415
|
-
$ 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]
|
|
3416
3536
|
|
|
3417
3537
|
FLAGS
|
|
3418
|
-
-o, --output=<option>
|
|
3419
|
-
|
|
3420
|
-
-x, --extended
|
|
3421
|
-
--columns=<value>
|
|
3422
|
-
--csv
|
|
3423
|
-
--no-header
|
|
3424
|
-
--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
|
|
3425
3546
|
|
|
3426
3547
|
DESCRIPTION
|
|
3427
3548
|
Get all organizations the authenticated user has access to.
|
|
@@ -3433,18 +3554,19 @@ List all memberships belonging to an organization.
|
|
|
3433
3554
|
|
|
3434
3555
|
```
|
|
3435
3556
|
USAGE
|
|
3436
|
-
$ mw org membership list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3437
|
-
<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>]
|
|
3438
3559
|
|
|
3439
3560
|
FLAGS
|
|
3440
|
-
-o, --org-id=<value>
|
|
3441
|
-
-o, --output=<option>
|
|
3442
|
-
|
|
3443
|
-
-x, --extended
|
|
3444
|
-
--columns=<value>
|
|
3445
|
-
--csv
|
|
3446
|
-
--no-header
|
|
3447
|
-
--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
|
|
3448
3570
|
|
|
3449
3571
|
DESCRIPTION
|
|
3450
3572
|
List all memberships belonging to an organization.
|
|
@@ -3462,16 +3584,18 @@ List all organization memberships for the executing user.
|
|
|
3462
3584
|
|
|
3463
3585
|
```
|
|
3464
3586
|
USAGE
|
|
3465
|
-
$ 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]
|
|
3466
3589
|
|
|
3467
3590
|
FLAGS
|
|
3468
|
-
-o, --output=<option>
|
|
3469
|
-
|
|
3470
|
-
-x, --extended
|
|
3471
|
-
--columns=<value>
|
|
3472
|
-
--csv
|
|
3473
|
-
--no-header
|
|
3474
|
-
--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
|
|
3475
3599
|
|
|
3476
3600
|
DESCRIPTION
|
|
3477
3601
|
List all organization memberships for the executing user.
|
|
@@ -3637,18 +3761,19 @@ List Backups for a given Project.
|
|
|
3637
3761
|
|
|
3638
3762
|
```
|
|
3639
3763
|
USAGE
|
|
3640
|
-
$ mw project backup list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3641
|
-
<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>]
|
|
3642
3766
|
|
|
3643
3767
|
FLAGS
|
|
3644
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3645
|
-
<options: json|yaml|csv>
|
|
3768
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3769
|
+
<options: txt|json|yaml|csv>
|
|
3646
3770
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3647
3771
|
context
|
|
3648
3772
|
-x, --extended show extra columns
|
|
3649
3773
|
--columns=<value> only show provided columns (comma-separated)
|
|
3650
3774
|
--csv output is csv format [alias: --output=csv]
|
|
3651
3775
|
--no-header hide table header from output
|
|
3776
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3652
3777
|
--no-truncate do not truncate output to fit screen
|
|
3653
3778
|
|
|
3654
3779
|
DESCRIPTION
|
|
@@ -3670,18 +3795,19 @@ List backup schedules belonging to a given project.
|
|
|
3670
3795
|
|
|
3671
3796
|
```
|
|
3672
3797
|
USAGE
|
|
3673
|
-
$ mw project backupschedule list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3674
|
-
<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>]
|
|
3675
3800
|
|
|
3676
3801
|
FLAGS
|
|
3677
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3678
|
-
<options: json|yaml|csv>
|
|
3802
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3803
|
+
<options: txt|json|yaml|csv>
|
|
3679
3804
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3680
3805
|
context
|
|
3681
3806
|
-x, --extended show extra columns
|
|
3682
3807
|
--columns=<value> only show provided columns (comma-separated)
|
|
3683
3808
|
--csv output is csv format [alias: --output=csv]
|
|
3684
3809
|
--no-header hide table header from output
|
|
3810
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3685
3811
|
--no-truncate do not truncate output to fit screen
|
|
3686
3812
|
|
|
3687
3813
|
DESCRIPTION
|
|
@@ -3759,16 +3885,17 @@ List CronjobExecutions belonging to a Cronjob.
|
|
|
3759
3885
|
```
|
|
3760
3886
|
USAGE
|
|
3761
3887
|
$ mw project cronjob execution list --cronjob-id <value> [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o
|
|
3762
|
-
json|yaml|csv | | ]
|
|
3888
|
+
txt|json|yaml|csv | | ] [--no-relative-dates]
|
|
3763
3889
|
|
|
3764
3890
|
FLAGS
|
|
3765
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3766
|
-
<options: json|yaml|csv>
|
|
3891
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3892
|
+
<options: txt|json|yaml|csv>
|
|
3767
3893
|
-x, --extended show extra columns
|
|
3768
3894
|
--columns=<value> only show provided columns (comma-separated)
|
|
3769
3895
|
--cronjob-id=<value> (required) ID of the cron job for which to list executions for.
|
|
3770
3896
|
--csv output is csv format [alias: --output=csv]
|
|
3771
3897
|
--no-header hide table header from output
|
|
3898
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3772
3899
|
--no-truncate do not truncate output to fit screen
|
|
3773
3900
|
|
|
3774
3901
|
DESCRIPTION
|
|
@@ -3812,18 +3939,19 @@ List cron jobs belonging to a project.
|
|
|
3812
3939
|
|
|
3813
3940
|
```
|
|
3814
3941
|
USAGE
|
|
3815
|
-
$ mw project cronjob list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3816
|
-
<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>]
|
|
3817
3944
|
|
|
3818
3945
|
FLAGS
|
|
3819
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3820
|
-
<options: json|yaml|csv>
|
|
3946
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
3947
|
+
<options: txt|json|yaml|csv>
|
|
3821
3948
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3822
3949
|
context
|
|
3823
3950
|
-x, --extended show extra columns
|
|
3824
3951
|
--columns=<value> only show provided columns (comma-separated)
|
|
3825
3952
|
--csv output is csv format [alias: --output=csv]
|
|
3826
3953
|
--no-header hide table header from output
|
|
3954
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3827
3955
|
--no-truncate do not truncate output to fit screen
|
|
3828
3956
|
|
|
3829
3957
|
DESCRIPTION
|
|
@@ -3928,18 +4056,19 @@ List all invites belonging to a project.
|
|
|
3928
4056
|
|
|
3929
4057
|
```
|
|
3930
4058
|
USAGE
|
|
3931
|
-
$ mw project invite list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
3932
|
-
<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>]
|
|
3933
4061
|
|
|
3934
4062
|
FLAGS
|
|
3935
|
-
-o, --output=<option> output in a more machine friendly format
|
|
3936
|
-
<options: json|yaml|csv>
|
|
4063
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4064
|
+
<options: txt|json|yaml|csv>
|
|
3937
4065
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
3938
4066
|
context
|
|
3939
4067
|
-x, --extended show extra columns
|
|
3940
4068
|
--columns=<value> only show provided columns (comma-separated)
|
|
3941
4069
|
--csv output is csv format [alias: --output=csv]
|
|
3942
4070
|
--no-header hide table header from output
|
|
4071
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
3943
4072
|
--no-truncate do not truncate output to fit screen
|
|
3944
4073
|
|
|
3945
4074
|
DESCRIPTION
|
|
@@ -3958,16 +4087,18 @@ List all project invites for the executing user.
|
|
|
3958
4087
|
|
|
3959
4088
|
```
|
|
3960
4089
|
USAGE
|
|
3961
|
-
$ 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]
|
|
3962
4092
|
|
|
3963
4093
|
FLAGS
|
|
3964
|
-
-o, --output=<option>
|
|
3965
|
-
|
|
3966
|
-
-x, --extended
|
|
3967
|
-
--columns=<value>
|
|
3968
|
-
--csv
|
|
3969
|
-
--no-header
|
|
3970
|
-
--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
|
|
3971
4102
|
|
|
3972
4103
|
DESCRIPTION
|
|
3973
4104
|
List all project invites for the executing user.
|
|
@@ -3979,16 +4110,18 @@ List all projects that you have access to
|
|
|
3979
4110
|
|
|
3980
4111
|
```
|
|
3981
4112
|
USAGE
|
|
3982
|
-
$ 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]
|
|
3983
4115
|
|
|
3984
4116
|
FLAGS
|
|
3985
|
-
-o, --output=<option>
|
|
3986
|
-
|
|
3987
|
-
-x, --extended
|
|
3988
|
-
--columns=<value>
|
|
3989
|
-
--csv
|
|
3990
|
-
--no-header
|
|
3991
|
-
--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
|
|
3992
4125
|
|
|
3993
4126
|
DESCRIPTION
|
|
3994
4127
|
List all projects that you have access to
|
|
@@ -4043,18 +4176,19 @@ List all memberships for a Project.
|
|
|
4043
4176
|
|
|
4044
4177
|
```
|
|
4045
4178
|
USAGE
|
|
4046
|
-
$ mw project membership list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4047
|
-
<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>]
|
|
4048
4181
|
|
|
4049
4182
|
FLAGS
|
|
4050
|
-
-o, --output=<option> output in a more machine friendly format
|
|
4051
|
-
<options: json|yaml|csv>
|
|
4183
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4184
|
+
<options: txt|json|yaml|csv>
|
|
4052
4185
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
4053
4186
|
context
|
|
4054
4187
|
-x, --extended show extra columns
|
|
4055
4188
|
--columns=<value> only show provided columns (comma-separated)
|
|
4056
4189
|
--csv output is csv format [alias: --output=csv]
|
|
4057
4190
|
--no-header hide table header from output
|
|
4191
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4058
4192
|
--no-truncate do not truncate output to fit screen
|
|
4059
4193
|
|
|
4060
4194
|
DESCRIPTION
|
|
@@ -4073,17 +4207,18 @@ List ProjectMemberships belonging to the executing user.
|
|
|
4073
4207
|
|
|
4074
4208
|
```
|
|
4075
4209
|
USAGE
|
|
4076
|
-
$ mw project membership list-own [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv |
|
|
4077
|
-
|
|
4210
|
+
$ mw project membership list-own [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o txt|json|yaml|csv | | ]
|
|
4211
|
+
[--no-relative-dates]
|
|
4078
4212
|
|
|
4079
4213
|
FLAGS
|
|
4080
|
-
-o, --output=<option>
|
|
4081
|
-
|
|
4082
|
-
-x, --extended
|
|
4083
|
-
--columns=<value>
|
|
4084
|
-
--csv
|
|
4085
|
-
--no-header
|
|
4086
|
-
--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
|
|
4087
4222
|
|
|
4088
4223
|
DESCRIPTION
|
|
4089
4224
|
List ProjectMemberships belonging to the executing user.
|
|
@@ -4095,18 +4230,19 @@ List all SFTP users for a project.
|
|
|
4095
4230
|
|
|
4096
4231
|
```
|
|
4097
4232
|
USAGE
|
|
4098
|
-
$ mw project sftp-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4099
|
-
<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>]
|
|
4100
4235
|
|
|
4101
4236
|
FLAGS
|
|
4102
|
-
-o, --output=<option> output in a more machine friendly format
|
|
4103
|
-
<options: json|yaml|csv>
|
|
4237
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4238
|
+
<options: txt|json|yaml|csv>
|
|
4104
4239
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
4105
4240
|
context
|
|
4106
4241
|
-x, --extended show extra columns
|
|
4107
4242
|
--columns=<value> only show provided columns (comma-separated)
|
|
4108
4243
|
--csv output is csv format [alias: --output=csv]
|
|
4109
4244
|
--no-header hide table header from output
|
|
4245
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4110
4246
|
--no-truncate do not truncate output to fit screen
|
|
4111
4247
|
|
|
4112
4248
|
DESCRIPTION
|
|
@@ -4143,18 +4279,19 @@ List all SSH users for a project.
|
|
|
4143
4279
|
|
|
4144
4280
|
```
|
|
4145
4281
|
USAGE
|
|
4146
|
-
$ mw project ssh-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4147
|
-
<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>]
|
|
4148
4284
|
|
|
4149
4285
|
FLAGS
|
|
4150
|
-
-o, --output=<option> output in a more machine friendly format
|
|
4151
|
-
<options: json|yaml|csv>
|
|
4286
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4287
|
+
<options: txt|json|yaml|csv>
|
|
4152
4288
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
4153
4289
|
context
|
|
4154
4290
|
-x, --extended show extra columns
|
|
4155
4291
|
--columns=<value> only show provided columns (comma-separated)
|
|
4156
4292
|
--csv output is csv format [alias: --output=csv]
|
|
4157
4293
|
--no-header hide table header from output
|
|
4294
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4158
4295
|
--no-truncate do not truncate output to fit screen
|
|
4159
4296
|
|
|
4160
4297
|
DESCRIPTION
|
|
@@ -4210,16 +4347,18 @@ List servers for an organization or user.
|
|
|
4210
4347
|
|
|
4211
4348
|
```
|
|
4212
4349
|
USAGE
|
|
4213
|
-
$ 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]
|
|
4214
4352
|
|
|
4215
4353
|
FLAGS
|
|
4216
|
-
-o, --output=<option>
|
|
4217
|
-
|
|
4218
|
-
-x, --extended
|
|
4219
|
-
--columns=<value>
|
|
4220
|
-
--csv
|
|
4221
|
-
--no-header
|
|
4222
|
-
--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
|
|
4223
4362
|
|
|
4224
4363
|
DESCRIPTION
|
|
4225
4364
|
List servers for an organization or user.
|
|
@@ -4256,18 +4395,19 @@ List all SFTP users for a project.
|
|
|
4256
4395
|
|
|
4257
4396
|
```
|
|
4258
4397
|
USAGE
|
|
4259
|
-
$ mw sftp-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4260
|
-
<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>]
|
|
4261
4400
|
|
|
4262
4401
|
FLAGS
|
|
4263
|
-
-o, --output=<option> output in a more machine friendly format
|
|
4264
|
-
<options: json|yaml|csv>
|
|
4402
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4403
|
+
<options: txt|json|yaml|csv>
|
|
4265
4404
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
4266
4405
|
context
|
|
4267
4406
|
-x, --extended show extra columns
|
|
4268
4407
|
--columns=<value> only show provided columns (comma-separated)
|
|
4269
4408
|
--csv output is csv format [alias: --output=csv]
|
|
4270
4409
|
--no-header hide table header from output
|
|
4410
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4271
4411
|
--no-truncate do not truncate output to fit screen
|
|
4272
4412
|
|
|
4273
4413
|
DESCRIPTION
|
|
@@ -4314,18 +4454,19 @@ List all SSH users for a project.
|
|
|
4314
4454
|
|
|
4315
4455
|
```
|
|
4316
4456
|
USAGE
|
|
4317
|
-
$ mw ssh-user list [--columns <value> | -x] [--no-header | [--csv | --no-truncate]] [-o json|yaml|csv | | ]
|
|
4318
|
-
<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>]
|
|
4319
4459
|
|
|
4320
4460
|
FLAGS
|
|
4321
|
-
-o, --output=<option> output in a more machine friendly format
|
|
4322
|
-
<options: json|yaml|csv>
|
|
4461
|
+
-o, --output=<option> [default: txt] output in a more machine friendly format
|
|
4462
|
+
<options: txt|json|yaml|csv>
|
|
4323
4463
|
-p, --project-id=<value> ID or short ID of a project; this flag is optional if a default project is set in the
|
|
4324
4464
|
context
|
|
4325
4465
|
-x, --extended show extra columns
|
|
4326
4466
|
--columns=<value> only show provided columns (comma-separated)
|
|
4327
4467
|
--csv output is csv format [alias: --output=csv]
|
|
4328
4468
|
--no-header hide table header from output
|
|
4469
|
+
--no-relative-dates show dates in absolute format, not relative
|
|
4329
4470
|
--no-truncate do not truncate output to fit screen
|
|
4330
4471
|
|
|
4331
4472
|
DESCRIPTION
|
|
@@ -4376,7 +4517,7 @@ EXAMPLES
|
|
|
4376
4517
|
$ mw update --available
|
|
4377
4518
|
```
|
|
4378
4519
|
|
|
4379
|
-
_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.16/src/commands/update.ts)_
|
|
4380
4521
|
|
|
4381
4522
|
## `mw user api-token create`
|
|
4382
4523
|
|
|
@@ -4428,16 +4569,18 @@ List all API tokens of the user
|
|
|
4428
4569
|
|
|
4429
4570
|
```
|
|
4430
4571
|
USAGE
|
|
4431
|
-
$ 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]
|
|
4432
4574
|
|
|
4433
4575
|
FLAGS
|
|
4434
|
-
-o, --output=<option>
|
|
4435
|
-
|
|
4436
|
-
-x, --extended
|
|
4437
|
-
--columns=<value>
|
|
4438
|
-
--csv
|
|
4439
|
-
--no-header
|
|
4440
|
-
--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
|
|
4441
4584
|
|
|
4442
4585
|
DESCRIPTION
|
|
4443
4586
|
List all API tokens of the user
|
|
@@ -4513,16 +4656,18 @@ List all active sessions
|
|
|
4513
4656
|
|
|
4514
4657
|
```
|
|
4515
4658
|
USAGE
|
|
4516
|
-
$ 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]
|
|
4517
4661
|
|
|
4518
4662
|
FLAGS
|
|
4519
|
-
-o, --output=<option>
|
|
4520
|
-
|
|
4521
|
-
-x, --extended
|
|
4522
|
-
--columns=<value>
|
|
4523
|
-
--csv
|
|
4524
|
-
--no-header
|
|
4525
|
-
--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
|
|
4526
4671
|
|
|
4527
4672
|
DESCRIPTION
|
|
4528
4673
|
List all active sessions
|
|
@@ -4603,16 +4748,18 @@ Get your stored ssh keys
|
|
|
4603
4748
|
|
|
4604
4749
|
```
|
|
4605
4750
|
USAGE
|
|
4606
|
-
$ 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]
|
|
4607
4753
|
|
|
4608
4754
|
FLAGS
|
|
4609
|
-
-o, --output=<option>
|
|
4610
|
-
|
|
4611
|
-
-x, --extended
|
|
4612
|
-
--columns=<value>
|
|
4613
|
-
--csv
|
|
4614
|
-
--no-header
|
|
4615
|
-
--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
|
|
4616
4763
|
|
|
4617
4764
|
DESCRIPTION
|
|
4618
4765
|
Get your stored ssh keys
|