quantcdn/Quant Cloud Environment Backup
Creates and manages backups of environments in Quant Cloud
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Activelast commit Mar 21, 2026
- License
- MIT
Pinned Snippet
uses: quantcdn/quant-cloud-environment-backup-action@246fa2c2c5f13a07c387f3b092b419f440ff3951 # v4.4.0tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| api_key | Quant API key | yes | — |
| organization | Quant organisation ID | yes | — |
| app_name | Name of your application | yes | — |
| environment_name | Name of the environment to backup | yes | — |
| base_url | Quant Cloud API URL | no | https://dashboard.quantcdn.io/api/v3 |
| operation | Operation to perform: create, list, download, or delete | no | create |
| backup_name | Name for the backup (for create operation) | no | — |
| backup_id | ID of the backup to download/delete. Use "latest" for most recent (download), or specify backup ID (download/delete). | no | — |
| older_than_days | For delete operation: Delete backups older than this many days | no | — |
| sort_order | For list operation: Sort order by creation date (asc or desc) | no | desc |
| filter_status | For list operation: Filter by backup status (e.g., completed, failed, in_progress) | no | — |
| wait | Whether to wait for the backup to complete | no | false |
| wait_interval | Interval in seconds to wait for the backup to complete | no | 10 |
| max_retries | Maximum number of retries before timing out | no | 30 |
| type | Type of data to backup | no | database |
Outputs
| name | description |
|---|---|
| backup_id | ID of the created backup (create operation) |
| backup_list | JSON array of available backups (list operation) |
| download_url | Download URL for the backup (download operation) |
| resolved_backup_id | Actual backup ID when using "latest" (download operation) |
| resolved_backup_name | Name of the resolved backup when using "latest" (download operation) |
| resolved_backup_created_at | Creation timestamp of the resolved backup when using "latest" (download operation) |
| deleted_count | Number of backups deleted (delete operation) |
| deleted_backups | JSON array of deleted backup IDs (delete operation) |
| success | Whether the operation was successful |