Logo

Command Palette

Search for a command to run...

Backups represent database backup snapshots that are managed by Cloud 66. These backups can be created automatically on a schedule or manually, and support various database types including MySQL, PostgreSQL, Redis, and MongoDB.

Model
idinteger

The unique identifier of the backup.

server_uidstring

The UID of the server where this backup was created.

db_typestring

The type of database backed up (mysql, postgresql, redis, or mongodb).

database_namestring

The name of the database that was backed up.

file_basestring

The base filename for the backup files.

backup_date_isodatetime

The date and time when the backup was taken, in ISO 8601 format.

backup_statusinteger

The status code of the backup operation (0 for success).

backup_resultstring

The result message from the backup operation.

restore_statusinteger

The status code of any restore operation performed with this backup.

restore_resultstring

The result message from any restore operation.

created_at_isodatetime

The date and time the backup record was created, in ISO 8601 format.

updated_at_isodatetime

The date and time the backup record was last updated, in ISO 8601 format.

verify_statusinteger

The status code of the backup verification process.

verify_resultstring

The result message from the backup verification.

storage_pathstring

The storage location path where the backup files are stored.

skip_tablesstring

Comma-separated list of database tables that were excluded from the backup.

backup_sizeinteger

The size of the backup in bytes.

Example

{
  "id": 54321,
  "server_uid": "server-abc123",
  "db_type": "postgresql",
  "database_name": "myapp_production",
  "file_base": "backup_20240115_103000",
  "backup_date_iso": "2024-01-15T10:30:00Z",
  "backup_status": 0,
  "backup_result": "Backup completed successfully",
  "restore_status": 0,
  "restore_result": "Not restored",
  "created_at_iso": "2024-01-15T10:30:00Z",
  "updated_at_iso": "2024-01-15T10:35:00Z",
  "verify_status": 0,
  "verify_result": "Backup verified successfully",
  "storage_path": "/backups/postgresql/myapp_production/",
  "skip_tables": "temp_logs,cache_data",
  "backup_size": 1024000000
}