BackupsApi
BackupsApi
All URIs are relative to https://mariadb.de-txl.ionos.com
GET /backups/{backupId}
Fetch a cluster's backups
GET /backups
List of cluster's backups.
GET /clusters/{clusterId}/backups
List backups of cluster
backups_find_by_id
BackupResponse backups_find_by_id(backup_id)
Fetch a cluster's backups
Retrieve a MariaDB cluster's backups by using its ID. This value can be found when you GET the list of MariaDB cluster backups.
Example
Parameters
backup_id
str
The unique ID of the backup.
Return type
Authorization
tokenAuth
HTTP request headers
Content-Type: Not defined
Accept: application/json
backups_get
BackupList backups_get(limit=limit, offset=offset)
List of cluster's backups.
Retrieves all lists of backups for all MariaDB clusters in this contract.
Example
Parameters
limit
int
The maximum number of elements to return. Use together with 'offset' for pagination.
[optional] [default to 100]
offset
int
The first element to return. Use together with 'limit' for pagination.
[optional] [default to 0]
Return type
Authorization
tokenAuth
HTTP request headers
Content-Type: Not defined
Accept: application/json
cluster_backups_get
BackupList cluster_backups_get(cluster_id, limit=limit, offset=offset)
List backups of cluster
Retrieves a list of all backups of the given MariaDB cluster.
Example
Parameters
cluster_id
str
The unique ID of the cluster.
limit
int
The maximum number of elements to return. Use together with 'offset' for pagination.
[optional] [default to 100]
offset
int
The first element to return. Use together with 'limit' for pagination.
[optional] [default to 0]
Return type
Authorization
tokenAuth
HTTP request headers
Content-Type: Not defined
Accept: application/json
Last updated