Describe Backup
List the information about the specified backup in detail. Note that this API only applies to dedicated clusters.
The base URL for this API is in the following format:
https://api.cloud.zilliz.com
export BASE_URL="https://api.cloud.zilliz.com"
The authentication token should be an API key with appropriate privileges.
The ID of the cluster whose backup is in concern.
The ID of the backup in concern.
export TOKEN="YOUR_API_KEY"
export CLUSTER_ID="inxx-xxxxxxxxxxxxxxx"
export BACKUP_ID="Dedicated-01_backup3"
curl --request GET \
--url "${BASE_URL}/v2/clusters/${CLUSTER_ID}/backups/${BACKUP_ID}" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Content-Type: application/json"
Response code.
Response payload which is the information about the backup in detail.
The ID of the cluster that holds the backup.
The name of the cluster that holds the backup.
The ID of the project that holds the backed-up cluster.
The ID of the backup.
The name of the backup.
The type of resources backed up.
Whether the backup was created manually or automatically.
The current status of the backup.
The size of the backup in bytes.
The ID of the cloud region where the backup is located.
The expiration time of the backup.
The collections that are included in the backup.
The collection information.
The name of the collection.
The description of the collection.
The loading status of the collection.
The time at which the backup was created.
Returns an error message.
Response code.
Error message.
{
"code": 0,
"data": {
"clusterId": "in01-31a6b840e50b72d",
"clusterName": "Dediacted-01",
"projectId": "proj-b44a39b0c51cf21791a841",
"backupId": "backup0_1e3c0988ecb7f0d",
"backupName": "Dedicated-01_backup1",
"backupType": "CLUSTER",
"creationMethod": "MANUAL",
"status": "AVAILABLE",
"size": 112,
"regionId": "aws-us-west-2",
"expireTime": "2024-08-30T16:49:50Z",
"collections": [
{
"collectionName": "medium_articles",
"description": "Sample collection",
"status": "LOADED"
}
],
"createTime": "2024-07-30T16:49:50Z"
}
}