@mittwald/cli 1.0.0-alpha.3
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/.deps/client.tgz +0 -0
- package/.deps/commons.tgz +0 -0
- package/LICENSE +21 -0
- package/README.md +2716 -0
- package/bin/dev +17 -0
- package/bin/dev.cmd +3 -0
- package/bin/mw.cmd +3 -0
- package/bin/run.js +9 -0
- package/dist/esm/BaseCommand.d.ts +11 -0
- package/dist/esm/BaseCommand.js +44 -0
- package/dist/esm/DeleteBaseCommand.d.ts +15 -0
- package/dist/esm/DeleteBaseCommand.js +37 -0
- package/dist/esm/ExtendedBaseCommand.d.ts +7 -0
- package/dist/esm/ExtendedBaseCommand.js +16 -0
- package/dist/esm/Flags.d.ts +1 -0
- package/dist/esm/Flags.js +1 -0
- package/dist/esm/Formatter.d.ts +15 -0
- package/dist/esm/Formatter.js +28 -0
- package/dist/esm/GetBaseCommand.d.ts +17 -0
- package/dist/esm/GetBaseCommand.js +27 -0
- package/dist/esm/Helpers.d.ts +5 -0
- package/dist/esm/Helpers.js +24 -0
- package/dist/esm/ListBaseCommand.d.ts +20 -0
- package/dist/esm/ListBaseCommand.js +60 -0
- package/dist/esm/Printer.d.ts +16 -0
- package/dist/esm/Printer.js +30 -0
- package/dist/esm/Translator.d.ts +5 -0
- package/dist/esm/Translator.js +53 -0
- package/dist/esm/commands/app/delete.d.ts +12 -0
- package/dist/esm/commands/app/delete.js +45 -0
- package/dist/esm/commands/app/getApp.d.ts +3 -0
- package/dist/esm/commands/app/getApp.js +6 -0
- package/dist/esm/commands/app/getAppinstallation.d.ts +3 -0
- package/dist/esm/commands/app/getAppinstallation.js +6 -0
- package/dist/esm/commands/app/getAppversion.d.ts +3 -0
- package/dist/esm/commands/app/getAppversion.js +6 -0
- package/dist/esm/commands/app/getSystemsoftware.d.ts +3 -0
- package/dist/esm/commands/app/getSystemsoftware.js +6 -0
- package/dist/esm/commands/app/getSystemsoftwareversion.d.ts +3 -0
- package/dist/esm/commands/app/getSystemsoftwareversion.js +6 -0
- package/dist/esm/commands/app/list.d.ts +16 -0
- package/dist/esm/commands/app/list.js +64 -0
- package/dist/esm/commands/app/listAppinstallations.d.ts +9 -0
- package/dist/esm/commands/app/listAppinstallations.js +6 -0
- package/dist/esm/commands/app/listApps.d.ts +9 -0
- package/dist/esm/commands/app/listApps.js +6 -0
- package/dist/esm/commands/app/listAppversions.d.ts +9 -0
- package/dist/esm/commands/app/listAppversions.js +6 -0
- package/dist/esm/commands/app/listSystemsoftwares.d.ts +9 -0
- package/dist/esm/commands/app/listSystemsoftwares.js +6 -0
- package/dist/esm/commands/app/listSystemsoftwareversions.d.ts +9 -0
- package/dist/esm/commands/app/listSystemsoftwareversions.js +6 -0
- package/dist/esm/commands/app/retrieveStatus.d.ts +3 -0
- package/dist/esm/commands/app/retrieveStatus.js +6 -0
- package/dist/esm/commands/article/getArticle.d.ts +3 -0
- package/dist/esm/commands/article/getArticle.js +6 -0
- package/dist/esm/commands/article/listArticles.d.ts +9 -0
- package/dist/esm/commands/article/listArticles.js +6 -0
- package/dist/esm/commands/contract/getBaseItemOfContract.d.ts +3 -0
- package/dist/esm/commands/contract/getBaseItemOfContract.js +6 -0
- package/dist/esm/commands/contract/getDetailOfContract.d.ts +3 -0
- package/dist/esm/commands/contract/getDetailOfContract.js +6 -0
- package/dist/esm/commands/contract/getDetailOfContractByDomain.d.ts +3 -0
- package/dist/esm/commands/contract/getDetailOfContractByDomain.js +6 -0
- package/dist/esm/commands/contract/getDetailOfContractByProject.d.ts +3 -0
- package/dist/esm/commands/contract/getDetailOfContractByProject.js +6 -0
- package/dist/esm/commands/contract/getDetailOfContractByServer.d.ts +3 -0
- package/dist/esm/commands/contract/getDetailOfContractByServer.js +6 -0
- package/dist/esm/commands/contract/getDetailOfContractItem.d.ts +3 -0
- package/dist/esm/commands/contract/getDetailOfContractItem.js +6 -0
- package/dist/esm/commands/contract/getNextTerminationDateForItem.d.ts +3 -0
- package/dist/esm/commands/contract/getNextTerminationDateForItem.js +6 -0
- package/dist/esm/commands/contract/invoiceDetailOfInvoice.d.ts +3 -0
- package/dist/esm/commands/contract/invoiceDetailOfInvoice.js +6 -0
- package/dist/esm/commands/contract/invoiceGetDetailOfInvoiceSettings.d.ts +3 -0
- package/dist/esm/commands/contract/invoiceGetDetailOfInvoiceSettings.js +6 -0
- package/dist/esm/commands/contract/invoiceListCustomerInvoices.d.ts +9 -0
- package/dist/esm/commands/contract/invoiceListCustomerInvoices.js +6 -0
- package/dist/esm/commands/contract/listContracts.d.ts +9 -0
- package/dist/esm/commands/contract/listContracts.js +6 -0
- package/dist/esm/commands/contract/orderGetOrder.d.ts +3 -0
- package/dist/esm/commands/contract/orderGetOrder.js +6 -0
- package/dist/esm/commands/contract/orderListCustomerOrders.d.ts +9 -0
- package/dist/esm/commands/contract/orderListCustomerOrders.js +6 -0
- package/dist/esm/commands/contract/orderListProjectOrders.d.ts +9 -0
- package/dist/esm/commands/contract/orderListProjectOrders.js +6 -0
- package/dist/esm/commands/conversation/categories.d.ts +11 -0
- package/dist/esm/commands/conversation/categories.js +16 -0
- package/dist/esm/commands/conversation/close.d.ts +8 -0
- package/dist/esm/commands/conversation/close.js +24 -0
- package/dist/esm/commands/conversation/create.d.ts +13 -0
- package/dist/esm/commands/conversation/create.js +50 -0
- package/dist/esm/commands/conversation/list.d.ts +11 -0
- package/dist/esm/commands/conversation/list.js +28 -0
- package/dist/esm/commands/conversation/reply.d.ts +13 -0
- package/dist/esm/commands/conversation/reply.js +30 -0
- package/dist/esm/commands/conversation/show.d.ts +8 -0
- package/dist/esm/commands/conversation/show.js +78 -0
- package/dist/esm/commands/conversation/show2.d.ts +11 -0
- package/dist/esm/commands/conversation/show2.js +37 -0
- package/dist/esm/commands/cronjob/getCronjob.d.ts +3 -0
- package/dist/esm/commands/cronjob/getCronjob.js +6 -0
- package/dist/esm/commands/cronjob/getExecution.d.ts +3 -0
- package/dist/esm/commands/cronjob/getExecution.js +6 -0
- package/dist/esm/commands/cronjob/listCronjobs.d.ts +9 -0
- package/dist/esm/commands/cronjob/listCronjobs.js +6 -0
- package/dist/esm/commands/cronjob/listExecutions.d.ts +9 -0
- package/dist/esm/commands/cronjob/listExecutions.js +6 -0
- package/dist/esm/commands/customer/getCustomer.d.ts +3 -0
- package/dist/esm/commands/customer/getCustomer.js +6 -0
- package/dist/esm/commands/customer/getCustomerCategory.d.ts +3 -0
- package/dist/esm/commands/customer/getCustomerCategory.js +6 -0
- package/dist/esm/commands/customer/getCustomerInvite.d.ts +3 -0
- package/dist/esm/commands/customer/getCustomerInvite.js +6 -0
- package/dist/esm/commands/customer/getCustomerMembership.d.ts +3 -0
- package/dist/esm/commands/customer/getCustomerMembership.js +6 -0
- package/dist/esm/commands/customer/getCustomerTokenInvite.d.ts +3 -0
- package/dist/esm/commands/customer/getCustomerTokenInvite.js +6 -0
- package/dist/esm/commands/customer/isCustomerLegallyCompetent.d.ts +3 -0
- package/dist/esm/commands/customer/isCustomerLegallyCompetent.js +6 -0
- package/dist/esm/commands/customer/listCustomerInvites.d.ts +9 -0
- package/dist/esm/commands/customer/listCustomerInvites.js +6 -0
- package/dist/esm/commands/customer/listCustomerMemberships.d.ts +9 -0
- package/dist/esm/commands/customer/listCustomerMemberships.js +6 -0
- package/dist/esm/commands/customer/listCustomers.d.ts +9 -0
- package/dist/esm/commands/customer/listCustomers.js +6 -0
- package/dist/esm/commands/customer/listInvitesForCustomer.d.ts +9 -0
- package/dist/esm/commands/customer/listInvitesForCustomer.js +6 -0
- package/dist/esm/commands/customer/listMembershipsForCustomer.d.ts +9 -0
- package/dist/esm/commands/customer/listMembershipsForCustomer.js +6 -0
- package/dist/esm/commands/customer/listOfCustomerCategories.d.ts +9 -0
- package/dist/esm/commands/customer/listOfCustomerCategories.js +6 -0
- package/dist/esm/commands/database/mysql/charsets.d.ts +9 -0
- package/dist/esm/commands/database/mysql/charsets.js +6 -0
- package/dist/esm/commands/database/mysql/get.d.ts +3 -0
- package/dist/esm/commands/database/mysql/get.js +6 -0
- package/dist/esm/commands/database/mysql/list.d.ts +11 -0
- package/dist/esm/commands/database/mysql/list.js +54 -0
- package/dist/esm/commands/database/mysql/user/get.d.ts +3 -0
- package/dist/esm/commands/database/mysql/user/get.js +6 -0
- package/dist/esm/commands/database/mysql/user/getMysqlUserPhpMyAdminUrl.d.ts +3 -0
- package/dist/esm/commands/database/mysql/user/getMysqlUserPhpMyAdminUrl.js +7 -0
- package/dist/esm/commands/database/mysql/user/list.d.ts +9 -0
- package/dist/esm/commands/database/mysql/user/list.js +6 -0
- package/dist/esm/commands/database/mysql/versions.d.ts +9 -0
- package/dist/esm/commands/database/mysql/versions.js +6 -0
- package/dist/esm/commands/database/redis/get.d.ts +3 -0
- package/dist/esm/commands/database/redis/get.js +6 -0
- package/dist/esm/commands/database/redis/list.d.ts +9 -0
- package/dist/esm/commands/database/redis/list.js +6 -0
- package/dist/esm/commands/database/redis/versions.d.ts +9 -0
- package/dist/esm/commands/database/redis/versions.js +6 -0
- package/dist/esm/commands/domain/dnsZoneGetSpecific.d.ts +3 -0
- package/dist/esm/commands/domain/dnsZoneGetSpecific.js +6 -0
- package/dist/esm/commands/domain/dnsZonesForProject.d.ts +3 -0
- package/dist/esm/commands/domain/dnsZonesForProject.js +6 -0
- package/dist/esm/commands/domain/get.d.ts +3 -0
- package/dist/esm/commands/domain/get.js +6 -0
- package/dist/esm/commands/domain/getHandleFields.d.ts +3 -0
- package/dist/esm/commands/domain/getHandleFields.js +6 -0
- package/dist/esm/commands/domain/getSpecificDomainOwnership.d.ts +3 -0
- package/dist/esm/commands/domain/getSpecificDomainOwnership.js +6 -0
- package/dist/esm/commands/domain/list.d.ts +9 -0
- package/dist/esm/commands/domain/list.js +6 -0
- package/dist/esm/commands/domain/listDomainOwnerships.d.ts +9 -0
- package/dist/esm/commands/domain/listDomainOwnerships.js +6 -0
- package/dist/esm/commands/domain/tld/get.d.ts +3 -0
- package/dist/esm/commands/domain/tld/get.js +6 -0
- package/dist/esm/commands/domain/tld/list.d.ts +9 -0
- package/dist/esm/commands/domain/tld/list.js +6 -0
- package/dist/esm/commands/domain/virtualhost/get.d.ts +3 -0
- package/dist/esm/commands/domain/virtualhost/get.js +6 -0
- package/dist/esm/commands/domain/virtualhost/list.d.ts +20 -0
- package/dist/esm/commands/domain/virtualhost/list.js +49 -0
- package/dist/esm/commands/login/status.d.ts +5 -0
- package/dist/esm/commands/login/status.js +29 -0
- package/dist/esm/commands/login/token.d.ts +9 -0
- package/dist/esm/commands/login/token.js +39 -0
- package/dist/esm/commands/mail/address/create.d.ts +12 -0
- package/dist/esm/commands/mail/address/create.js +52 -0
- package/dist/esm/commands/mail/address/delete.d.ts +12 -0
- package/dist/esm/commands/mail/address/delete.js +22 -0
- package/dist/esm/commands/mail/address/get.d.ts +3 -0
- package/dist/esm/commands/mail/address/get.js +6 -0
- package/dist/esm/commands/mail/address/list.d.ts +12 -0
- package/dist/esm/commands/mail/address/list.js +47 -0
- package/dist/esm/commands/mail/deliverybox/get.d.ts +3 -0
- package/dist/esm/commands/mail/deliverybox/get.js +6 -0
- package/dist/esm/commands/mail/deliverybox/list.d.ts +12 -0
- package/dist/esm/commands/mail/deliverybox/list.js +25 -0
- package/dist/esm/commands/project/backup/get.d.ts +3 -0
- package/dist/esm/commands/project/backup/get.js +6 -0
- package/dist/esm/commands/project/backup/list.d.ts +12 -0
- package/dist/esm/commands/project/backup/list.js +24 -0
- package/dist/esm/commands/project/backupschedule/get.d.ts +3 -0
- package/dist/esm/commands/project/backupschedule/get.js +6 -0
- package/dist/esm/commands/project/backupschedule/list.d.ts +13 -0
- package/dist/esm/commands/project/backupschedule/list.js +21 -0
- package/dist/esm/commands/project/create.d.ts +10 -0
- package/dist/esm/commands/project/create.js +59 -0
- package/dist/esm/commands/project/delete.d.ts +13 -0
- package/dist/esm/commands/project/delete.js +26 -0
- package/dist/esm/commands/project/filesystem/directories.d.ts +3 -0
- package/dist/esm/commands/project/filesystem/directories.js +6 -0
- package/dist/esm/commands/project/filesystem/file-content.d.ts +3 -0
- package/dist/esm/commands/project/filesystem/file-content.js +6 -0
- package/dist/esm/commands/project/filesystem/files.d.ts +16 -0
- package/dist/esm/commands/project/filesystem/files.js +25 -0
- package/dist/esm/commands/project/filesystem/usage.d.ts +4 -0
- package/dist/esm/commands/project/filesystem/usage.js +11 -0
- package/dist/esm/commands/project/get.d.ts +4 -0
- package/dist/esm/commands/project/get.js +11 -0
- package/dist/esm/commands/project/invite/get.d.ts +3 -0
- package/dist/esm/commands/project/invite/get.js +6 -0
- package/dist/esm/commands/project/invite/list-own.d.ts +11 -0
- package/dist/esm/commands/project/invite/list-own.js +29 -0
- package/dist/esm/commands/project/invite/list.d.ts +12 -0
- package/dist/esm/commands/project/invite/list.js +32 -0
- package/dist/esm/commands/project/list.d.ts +12 -0
- package/dist/esm/commands/project/list.js +33 -0
- package/dist/esm/commands/project/list1.d.ts +7 -0
- package/dist/esm/commands/project/list1.js +18 -0
- package/dist/esm/commands/project/list2.d.ts +9 -0
- package/dist/esm/commands/project/list2.js +26 -0
- package/dist/esm/commands/project/membership/get-own.d.ts +4 -0
- package/dist/esm/commands/project/membership/get-own.js +11 -0
- package/dist/esm/commands/project/membership/get.d.ts +3 -0
- package/dist/esm/commands/project/membership/get.js +6 -0
- package/dist/esm/commands/project/membership/list-own.d.ts +11 -0
- package/dist/esm/commands/project/membership/list-own.js +28 -0
- package/dist/esm/commands/project/membership/list.d.ts +25 -0
- package/dist/esm/commands/project/membership/list.js +46 -0
- package/dist/esm/commands/project/sftp-user/list.d.ts +13 -0
- package/dist/esm/commands/project/sftp-user/list.js +24 -0
- package/dist/esm/commands/project/ssh-user/list.d.ts +13 -0
- package/dist/esm/commands/project/ssh-user/list.js +24 -0
- package/dist/esm/commands/project/ssh.d.ts +8 -0
- package/dist/esm/commands/project/ssh.js +31 -0
- package/dist/esm/commands/project/update.d.ts +8 -0
- package/dist/esm/commands/project/update.js +15 -0
- package/dist/esm/commands/server/get.d.ts +3 -0
- package/dist/esm/commands/server/get.js +6 -0
- package/dist/esm/commands/server/list.d.ts +11 -0
- package/dist/esm/commands/server/list.js +41 -0
- package/dist/esm/commands/user/api-token/create.d.ts +11 -0
- package/dist/esm/commands/user/api-token/create.js +46 -0
- package/dist/esm/commands/user/api-token/get.d.ts +3 -0
- package/dist/esm/commands/user/api-token/get.js +6 -0
- package/dist/esm/commands/user/api-token/list.d.ts +11 -0
- package/dist/esm/commands/user/api-token/list.js +21 -0
- package/dist/esm/commands/user/api-token/revoke.d.ts +8 -0
- package/dist/esm/commands/user/api-token/revoke.js +21 -0
- package/dist/esm/commands/user/get.d.ts +3 -0
- package/dist/esm/commands/user/get.js +6 -0
- package/dist/esm/commands/user/session/get.d.ts +3 -0
- package/dist/esm/commands/user/session/get.js +6 -0
- package/dist/esm/commands/user/session/list.d.ts +11 -0
- package/dist/esm/commands/user/session/list.js +24 -0
- package/dist/esm/commands/user/ssh-key/create.d.ts +10 -0
- package/dist/esm/commands/user/ssh-key/create.js +60 -0
- package/dist/esm/commands/user/ssh-key/delete.d.ts +12 -0
- package/dist/esm/commands/user/ssh-key/delete.js +41 -0
- package/dist/esm/commands/user/ssh-key/get.d.ts +3 -0
- package/dist/esm/commands/user/ssh-key/get.js +6 -0
- package/dist/esm/commands/user/ssh-key/list.d.ts +11 -0
- package/dist/esm/commands/user/ssh-key/list.js +21 -0
- package/dist/esm/generated/app/getApp.d.ts +16 -0
- package/dist/esm/generated/app/getApp.js +25 -0
- package/dist/esm/generated/app/getAppinstallation.d.ts +16 -0
- package/dist/esm/generated/app/getAppinstallation.js +25 -0
- package/dist/esm/generated/app/getAppversion.d.ts +16 -0
- package/dist/esm/generated/app/getAppversion.js +29 -0
- package/dist/esm/generated/app/getSystemsoftware.d.ts +16 -0
- package/dist/esm/generated/app/getSystemsoftware.js +25 -0
- package/dist/esm/generated/app/getSystemsoftwareversion.d.ts +16 -0
- package/dist/esm/generated/app/getSystemsoftwareversion.js +29 -0
- package/dist/esm/generated/app/listAppinstallations.d.ts +13 -0
- package/dist/esm/generated/app/listAppinstallations.js +24 -0
- package/dist/esm/generated/app/listApps.d.ts +13 -0
- package/dist/esm/generated/app/listApps.js +17 -0
- package/dist/esm/generated/app/listAppversions.d.ts +13 -0
- package/dist/esm/generated/app/listAppversions.js +24 -0
- package/dist/esm/generated/app/listSystemsoftwares.d.ts +13 -0
- package/dist/esm/generated/app/listSystemsoftwares.js +17 -0
- package/dist/esm/generated/app/listSystemsoftwareversions.d.ts +13 -0
- package/dist/esm/generated/app/listSystemsoftwareversions.js +24 -0
- package/dist/esm/generated/app/retrieveStatus.d.ts +14 -0
- package/dist/esm/generated/app/retrieveStatus.js +24 -0
- package/dist/esm/generated/article/getArticle.d.ts +16 -0
- package/dist/esm/generated/article/getArticle.js +25 -0
- package/dist/esm/generated/article/listArticles.d.ts +13 -0
- package/dist/esm/generated/article/listArticles.js +17 -0
- package/dist/esm/generated/backup/getProjectBackup.d.ts +16 -0
- package/dist/esm/generated/backup/getProjectBackup.js +25 -0
- package/dist/esm/generated/backup/getProjectBackupSchedule.d.ts +16 -0
- package/dist/esm/generated/backup/getProjectBackupSchedule.js +25 -0
- package/dist/esm/generated/backup/listProjectBackupSchedules.d.ts +13 -0
- package/dist/esm/generated/backup/listProjectBackupSchedules.js +24 -0
- package/dist/esm/generated/backup/listProjectBackups.d.ts +13 -0
- package/dist/esm/generated/backup/listProjectBackups.js +24 -0
- package/dist/esm/generated/contract/getBaseItemOfContract.d.ts +14 -0
- package/dist/esm/generated/contract/getBaseItemOfContract.js +24 -0
- package/dist/esm/generated/contract/getDetailOfContract.d.ts +16 -0
- package/dist/esm/generated/contract/getDetailOfContract.js +25 -0
- package/dist/esm/generated/contract/getDetailOfContractByDomain.d.ts +14 -0
- package/dist/esm/generated/contract/getDetailOfContractByDomain.js +24 -0
- package/dist/esm/generated/contract/getDetailOfContractByProject.d.ts +14 -0
- package/dist/esm/generated/contract/getDetailOfContractByProject.js +24 -0
- package/dist/esm/generated/contract/getDetailOfContractByServer.d.ts +14 -0
- package/dist/esm/generated/contract/getDetailOfContractByServer.js +24 -0
- package/dist/esm/generated/contract/getDetailOfContractItem.d.ts +16 -0
- package/dist/esm/generated/contract/getDetailOfContractItem.js +29 -0
- package/dist/esm/generated/contract/getNextTerminationDateForItem.d.ts +15 -0
- package/dist/esm/generated/contract/getNextTerminationDateForItem.js +28 -0
- package/dist/esm/generated/contract/invoiceDetailOfInvoice.d.ts +16 -0
- package/dist/esm/generated/contract/invoiceDetailOfInvoice.js +29 -0
- package/dist/esm/generated/contract/invoiceGetDetailOfInvoiceSettings.d.ts +14 -0
- package/dist/esm/generated/contract/invoiceGetDetailOfInvoiceSettings.js +24 -0
- package/dist/esm/generated/contract/invoiceListCustomerInvoices.d.ts +13 -0
- package/dist/esm/generated/contract/invoiceListCustomerInvoices.js +24 -0
- package/dist/esm/generated/contract/listContracts.d.ts +13 -0
- package/dist/esm/generated/contract/listContracts.js +24 -0
- package/dist/esm/generated/contract/orderGetOrder.d.ts +16 -0
- package/dist/esm/generated/contract/orderGetOrder.js +25 -0
- package/dist/esm/generated/contract/orderListCustomerOrders.d.ts +13 -0
- package/dist/esm/generated/contract/orderListCustomerOrders.js +24 -0
- package/dist/esm/generated/contract/orderListProjectOrders.d.ts +13 -0
- package/dist/esm/generated/contract/orderListProjectOrders.js +24 -0
- package/dist/esm/generated/conversation/getCategory.d.ts +16 -0
- package/dist/esm/generated/conversation/getCategory.js +25 -0
- package/dist/esm/generated/conversation/getConversation.d.ts +16 -0
- package/dist/esm/generated/conversation/getConversation.js +25 -0
- package/dist/esm/generated/conversation/listCategories.d.ts +13 -0
- package/dist/esm/generated/conversation/listCategories.js +17 -0
- package/dist/esm/generated/conversation/listConversations.d.ts +13 -0
- package/dist/esm/generated/conversation/listConversations.js +17 -0
- package/dist/esm/generated/conversation/listMessagesByConversation.d.ts +13 -0
- package/dist/esm/generated/conversation/listMessagesByConversation.js +24 -0
- package/dist/esm/generated/cronjob/getCronjob.d.ts +16 -0
- package/dist/esm/generated/cronjob/getCronjob.js +25 -0
- package/dist/esm/generated/cronjob/getExecution.d.ts +16 -0
- package/dist/esm/generated/cronjob/getExecution.js +29 -0
- package/dist/esm/generated/cronjob/listCronjobs.d.ts +13 -0
- package/dist/esm/generated/cronjob/listCronjobs.js +24 -0
- package/dist/esm/generated/cronjob/listExecutions.d.ts +13 -0
- package/dist/esm/generated/cronjob/listExecutions.js +24 -0
- package/dist/esm/generated/customer/getCustomer.d.ts +16 -0
- package/dist/esm/generated/customer/getCustomer.js +25 -0
- package/dist/esm/generated/customer/getCustomerCategory.d.ts +16 -0
- package/dist/esm/generated/customer/getCustomerCategory.js +25 -0
- package/dist/esm/generated/customer/getCustomerInvite.d.ts +16 -0
- package/dist/esm/generated/customer/getCustomerInvite.js +25 -0
- package/dist/esm/generated/customer/getCustomerMembership.d.ts +16 -0
- package/dist/esm/generated/customer/getCustomerMembership.js +25 -0
- package/dist/esm/generated/customer/getCustomerTokenInvite.d.ts +14 -0
- package/dist/esm/generated/customer/getCustomerTokenInvite.js +16 -0
- package/dist/esm/generated/customer/isCustomerLegallyCompetent.d.ts +14 -0
- package/dist/esm/generated/customer/isCustomerLegallyCompetent.js +24 -0
- package/dist/esm/generated/customer/listCustomerInvites.d.ts +13 -0
- package/dist/esm/generated/customer/listCustomerInvites.js +17 -0
- package/dist/esm/generated/customer/listCustomerMemberships.d.ts +13 -0
- package/dist/esm/generated/customer/listCustomerMemberships.js +17 -0
- package/dist/esm/generated/customer/listCustomers.d.ts +13 -0
- package/dist/esm/generated/customer/listCustomers.js +17 -0
- package/dist/esm/generated/customer/listInvitesForCustomer.d.ts +13 -0
- package/dist/esm/generated/customer/listInvitesForCustomer.js +24 -0
- package/dist/esm/generated/customer/listMembershipsForCustomer.d.ts +13 -0
- package/dist/esm/generated/customer/listMembershipsForCustomer.js +24 -0
- package/dist/esm/generated/customer/listOfCustomerCategories.d.ts +13 -0
- package/dist/esm/generated/customer/listOfCustomerCategories.js +17 -0
- package/dist/esm/generated/database/getMysqlDatabase.d.ts +16 -0
- package/dist/esm/generated/database/getMysqlDatabase.js +25 -0
- package/dist/esm/generated/database/getMysqlUser.d.ts +16 -0
- package/dist/esm/generated/database/getMysqlUser.js +25 -0
- package/dist/esm/generated/database/getMysqlUserPhpMyAdminUrl.d.ts +14 -0
- package/dist/esm/generated/database/getMysqlUserPhpMyAdminUrl.js +24 -0
- package/dist/esm/generated/database/getRedisDatabase.d.ts +16 -0
- package/dist/esm/generated/database/getRedisDatabase.js +25 -0
- package/dist/esm/generated/database/listMysqlCharsets.d.ts +13 -0
- package/dist/esm/generated/database/listMysqlCharsets.js +17 -0
- package/dist/esm/generated/database/listMysqlDatabases.d.ts +13 -0
- package/dist/esm/generated/database/listMysqlDatabases.js +24 -0
- package/dist/esm/generated/database/listMysqlUsers.d.ts +13 -0
- package/dist/esm/generated/database/listMysqlUsers.js +24 -0
- package/dist/esm/generated/database/listMysqlVersions.d.ts +13 -0
- package/dist/esm/generated/database/listMysqlVersions.js +17 -0
- package/dist/esm/generated/database/listRedisDatabases.d.ts +13 -0
- package/dist/esm/generated/database/listRedisDatabases.js +24 -0
- package/dist/esm/generated/database/listRedisVersions.d.ts +13 -0
- package/dist/esm/generated/database/listRedisVersions.js +17 -0
- package/dist/esm/generated/domain/dnsZoneGetSpecific.d.ts +16 -0
- package/dist/esm/generated/domain/dnsZoneGetSpecific.js +25 -0
- package/dist/esm/generated/domain/dnsZonesForProject.d.ts +14 -0
- package/dist/esm/generated/domain/dnsZonesForProject.js +24 -0
- package/dist/esm/generated/domain/getDomain.d.ts +16 -0
- package/dist/esm/generated/domain/getDomain.js +25 -0
- package/dist/esm/generated/domain/getHandleFields.d.ts +16 -0
- package/dist/esm/generated/domain/getHandleFields.js +25 -0
- package/dist/esm/generated/domain/getSpecificDomainOwnership.d.ts +16 -0
- package/dist/esm/generated/domain/getSpecificDomainOwnership.js +25 -0
- package/dist/esm/generated/domain/getToplevelDomain.d.ts +16 -0
- package/dist/esm/generated/domain/getToplevelDomain.js +25 -0
- package/dist/esm/generated/domain/ingressGetSpecific.d.ts +16 -0
- package/dist/esm/generated/domain/ingressGetSpecific.js +25 -0
- package/dist/esm/generated/domain/ingressListAccessible.d.ts +13 -0
- package/dist/esm/generated/domain/ingressListAccessible.js +17 -0
- package/dist/esm/generated/domain/ingressListForProject.d.ts +13 -0
- package/dist/esm/generated/domain/ingressListForProject.js +24 -0
- package/dist/esm/generated/domain/listDomainOwnerships.d.ts +13 -0
- package/dist/esm/generated/domain/listDomainOwnerships.js +24 -0
- package/dist/esm/generated/domain/listDomains.d.ts +13 -0
- package/dist/esm/generated/domain/listDomains.js +24 -0
- package/dist/esm/generated/domain/listToplevelDomains.d.ts +13 -0
- package/dist/esm/generated/domain/listToplevelDomains.js +17 -0
- package/dist/esm/generated/file/getFile.d.ts +16 -0
- package/dist/esm/generated/file/getFile.js +25 -0
- package/dist/esm/generated/file/getFileMeta.d.ts +14 -0
- package/dist/esm/generated/file/getFileMeta.js +24 -0
- package/dist/esm/generated/file/getFileTokenRules.d.ts +16 -0
- package/dist/esm/generated/file/getFileTokenRules.js +25 -0
- package/dist/esm/generated/file/getFileTypeRules.d.ts +16 -0
- package/dist/esm/generated/file/getFileTypeRules.js +25 -0
- package/dist/esm/generated/mail/deliveryboxGetSpecific.d.ts +16 -0
- package/dist/esm/generated/mail/deliveryboxGetSpecific.js +25 -0
- package/dist/esm/generated/mail/deliveryboxList.d.ts +13 -0
- package/dist/esm/generated/mail/deliveryboxList.js +24 -0
- package/dist/esm/generated/mail/mailaddressGetSpecific.d.ts +16 -0
- package/dist/esm/generated/mail/mailaddressGetSpecific.js +25 -0
- package/dist/esm/generated/mail/mailaddressList.d.ts +13 -0
- package/dist/esm/generated/mail/mailaddressList.js +24 -0
- package/dist/esm/generated/mail/projectsettingGetSpecific.d.ts +14 -0
- package/dist/esm/generated/mail/projectsettingGetSpecific.js +24 -0
- package/dist/esm/generated/notification/newsletterGetInfo.d.ts +14 -0
- package/dist/esm/generated/notification/newsletterGetInfo.js +16 -0
- package/dist/esm/generated/notification/scountUnreadNotifications.d.ts +14 -0
- package/dist/esm/generated/notification/scountUnreadNotifications.js +16 -0
- package/dist/esm/generated/notification/slistNotifications.d.ts +13 -0
- package/dist/esm/generated/notification/slistNotifications.js +17 -0
- package/dist/esm/generated/project/getProject.d.ts +16 -0
- package/dist/esm/generated/project/getProject.js +25 -0
- package/dist/esm/generated/project/getProjectInvite.d.ts +16 -0
- package/dist/esm/generated/project/getProjectInvite.js +25 -0
- package/dist/esm/generated/project/getProjectMembership.d.ts +16 -0
- package/dist/esm/generated/project/getProjectMembership.js +25 -0
- package/dist/esm/generated/project/getProjectTokenInvite.d.ts +14 -0
- package/dist/esm/generated/project/getProjectTokenInvite.js +16 -0
- package/dist/esm/generated/project/getSelfMembershipForProject.d.ts +14 -0
- package/dist/esm/generated/project/getSelfMembershipForProject.js +24 -0
- package/dist/esm/generated/project/getServer.d.ts +16 -0
- package/dist/esm/generated/project/getServer.js +25 -0
- package/dist/esm/generated/project/listInvitesForProject.d.ts +13 -0
- package/dist/esm/generated/project/listInvitesForProject.js +24 -0
- package/dist/esm/generated/project/listMembershipsForProject.d.ts +13 -0
- package/dist/esm/generated/project/listMembershipsForProject.js +24 -0
- package/dist/esm/generated/project/listProjectInvites.d.ts +13 -0
- package/dist/esm/generated/project/listProjectInvites.js +17 -0
- package/dist/esm/generated/project/listProjectMemberships.d.ts +13 -0
- package/dist/esm/generated/project/listProjectMemberships.js +17 -0
- package/dist/esm/generated/project/listProjects.d.ts +13 -0
- package/dist/esm/generated/project/listProjects.js +17 -0
- package/dist/esm/generated/project/listServers.d.ts +13 -0
- package/dist/esm/generated/project/listServers.js +17 -0
- package/dist/esm/generated/projectFileSystem/getDirectories.d.ts +14 -0
- package/dist/esm/generated/projectFileSystem/getDirectories.js +24 -0
- package/dist/esm/generated/projectFileSystem/getDiskUsage.d.ts +14 -0
- package/dist/esm/generated/projectFileSystem/getDiskUsage.js +24 -0
- package/dist/esm/generated/projectFileSystem/getFileContent.d.ts +14 -0
- package/dist/esm/generated/projectFileSystem/getFileContent.js +24 -0
- package/dist/esm/generated/projectFileSystem/getJwt.d.ts +14 -0
- package/dist/esm/generated/projectFileSystem/getJwt.js +24 -0
- package/dist/esm/generated/projectFileSystem/listFiles.d.ts +13 -0
- package/dist/esm/generated/projectFileSystem/listFiles.js +24 -0
- package/dist/esm/generated/sshsftpUser/sftpUserGetSftpUser.d.ts +16 -0
- package/dist/esm/generated/sshsftpUser/sftpUserGetSftpUser.js +25 -0
- package/dist/esm/generated/sshsftpUser/sftpUserListSftpUsers.d.ts +13 -0
- package/dist/esm/generated/sshsftpUser/sftpUserListSftpUsers.js +24 -0
- package/dist/esm/generated/sshsftpUser/sshUserGetSshUser.d.ts +16 -0
- package/dist/esm/generated/sshsftpUser/sshUserGetSshUser.js +25 -0
- package/dist/esm/generated/sshsftpUser/sshUserListSshUsers.d.ts +13 -0
- package/dist/esm/generated/sshsftpUser/sshUserListSshUsers.js +24 -0
- package/dist/esm/generated/user/getApiToken.d.ts +16 -0
- package/dist/esm/generated/user/getApiToken.js +25 -0
- package/dist/esm/generated/user/getEmail.d.ts +14 -0
- package/dist/esm/generated/user/getEmail.js +16 -0
- package/dist/esm/generated/user/getMfaStatus.d.ts +14 -0
- package/dist/esm/generated/user/getMfaStatus.js +16 -0
- package/dist/esm/generated/user/getOwnProfile.d.ts +14 -0
- package/dist/esm/generated/user/getOwnProfile.js +16 -0
- package/dist/esm/generated/user/getPasswordUpdatedAt.d.ts +14 -0
- package/dist/esm/generated/user/getPasswordUpdatedAt.js +16 -0
- package/dist/esm/generated/user/getPersonalizedSettings.d.ts +14 -0
- package/dist/esm/generated/user/getPersonalizedSettings.js +24 -0
- package/dist/esm/generated/user/getSession.d.ts +16 -0
- package/dist/esm/generated/user/getSession.js +25 -0
- package/dist/esm/generated/user/getSshKey.d.ts +16 -0
- package/dist/esm/generated/user/getSshKey.js +25 -0
- package/dist/esm/generated/user/getUser.d.ts +14 -0
- package/dist/esm/generated/user/getUser.js +16 -0
- package/dist/esm/generated/user/listApiTokens.d.ts +13 -0
- package/dist/esm/generated/user/listApiTokens.js +17 -0
- package/dist/esm/generated/user/listFeedback.d.ts +13 -0
- package/dist/esm/generated/user/listFeedback.js +24 -0
- package/dist/esm/generated/user/listSessions.d.ts +13 -0
- package/dist/esm/generated/user/listSessions.js +17 -0
- package/dist/esm/generated/user/listSshKeys.d.ts +13 -0
- package/dist/esm/generated/user/listSshKeys.js +17 -0
- package/dist/esm/generated/user/supportCodeRequest.d.ts +14 -0
- package/dist/esm/generated/user/supportCodeRequest.js +16 -0
- package/dist/esm/lib/conversation/message_input.d.ts +10 -0
- package/dist/esm/lib/conversation/message_input.js +49 -0
- package/dist/esm/lib/handleError.d.ts +4 -0
- package/dist/esm/lib/handleError.js +17 -0
- package/dist/esm/lib/mergeObjects.d.ts +1 -0
- package/dist/esm/lib/mergeObjects.js +6 -0
- package/dist/esm/lib/notify.d.ts +2 -0
- package/dist/esm/lib/notify.js +5 -0
- package/dist/esm/lib/viewhelpers/date.d.ts +4 -0
- package/dist/esm/lib/viewhelpers/date.js +16 -0
- package/dist/esm/lib/viewhelpers/size.d.ts +1 -0
- package/dist/esm/lib/viewhelpers/size.js +4 -0
- package/dist/esm/lib/viewhelpers/tui.d.ts +2 -0
- package/dist/esm/lib/viewhelpers/tui.js +13 -0
- package/dist/esm/rendering/oclif/components/table.d.ts +11 -0
- package/dist/esm/rendering/oclif/components/table.js +49 -0
- package/dist/esm/rendering/react/RenderBaseCommand.d.ts +7 -0
- package/dist/esm/rendering/react/RenderBaseCommand.js +13 -0
- package/dist/esm/rendering/react/components/ConversationMessage.d.ts +8 -0
- package/dist/esm/rendering/react/components/ConversationMessage.js +12 -0
- package/dist/esm/rendering/react/components/ConversationMeta.d.ts +6 -0
- package/dist/esm/rendering/react/components/ConversationMeta.js +21 -0
- package/dist/esm/rendering/react/components/ConversationStatusUpdate.d.ts +8 -0
- package/dist/esm/rendering/react/components/ConversationStatusUpdate.js +6 -0
- package/dist/esm/rendering/react/components/Header.d.ts +6 -0
- package/dist/esm/rendering/react/components/Header.js +6 -0
- package/dist/esm/rendering/react/components/Table.d.ts +7 -0
- package/dist/esm/rendering/react/components/Table.js +4 -0
- package/dist/esm/rendering/react/context.d.ts +8 -0
- package/dist/esm/rendering/react/context.js +4 -0
- package/dist/esm/rendering/react/hooks/useMyUserProfile.d.ts +2 -0
- package/dist/esm/rendering/react/hooks/useMyUserProfile.js +11 -0
- package/dist/esm/rendering/setup/FlagSupportedSetup.d.ts +13 -0
- package/dist/esm/rendering/setup/FlagSupportedSetup.js +22 -0
- package/dist/esm/rendering/setup/TableRenderSetup.d.ts +13 -0
- package/dist/esm/rendering/setup/TableRenderSetup.js +11 -0
- package/dist/esm/rendering/setup/usePromiseSetup.d.ts +11 -0
- package/dist/esm/rendering/setup/usePromiseSetup.js +11 -0
- package/dist/esm/types.d.ts +8 -0
- package/dist/esm/types.js +1 -0
- package/package.json +126 -0
package/README.md
ADDED
|
@@ -0,0 +1,2716 @@
|
|
|
1
|
+
<center>
|
|
2
|
+
|
|
3
|
+
# `mw` -- the mittwald command-line tool
|
|
4
|
+
|
|
5
|
+

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