1.0 KiB
1.0 KiB
Phase 5 Implementation: Platform Operations
Delivered Modules
File Manager
- API:
POST /api/v1/files/listPOST /api/v1/files/readPOST /api/v1/files/write
- Command types:
FILE_LIST,FILE_READ,FILE_WRITE
Cron Manager
- API:
GET /api/v1/cron/jobsPOST /api/v1/cron/jobsDELETE /api/v1/cron/jobs
- Command types:
CRON_LIST,CRON_CREATE,CRON_DELETE
Firewall
- API:
GET /api/v1/firewall/rulesPOST /api/v1/firewall/rulesDELETE /api/v1/firewall/rules
- Command types:
FIREWALL_RULE_LIST,FIREWALL_RULE_ADD,FIREWALL_RULE_DELETE
Backup and Restore
- API:
POST /api/v1/backups/runPOST /api/v1/backups/restore
- Command types:
BACKUP_RUN,BACKUP_RESTORE
Implementation Notes
OpsCommandFactorycentralizes operation command envelope construction.OpsWorkflowServiceensures all operations route throughCommandOrchestrator.- Operation endpoints are now tenant-context aware and dispatch-ready.