Managed Service for Elasticsearch API, gRPC: BackupService.Get
Written by
Updated at November 26, 2024
Returns the specified backup of Elasticsearch cluster.
gRPC request
rpc Get (GetBackupRequest) returns (Backup)
GetBackupRequest
{
"backup_id": "string"
}
Field |
Description |
backup_id |
string Required field. Required. ID of the backup to return. |
Backup
{
"id": "string",
"folder_id": "string",
"source_cluster_id": "string",
"started_at": "google.protobuf.Timestamp",
"created_at": "google.protobuf.Timestamp",
"indices": [
"string"
],
"elasticsearch_version": "string",
"size_bytes": "int64",
"indices_total": "int64"
}
Field |
Description |
id |
string Required. ID of the backup. |
folder_id |
string ID of the folder that the backup belongs to. |
source_cluster_id |
string ID of the associated Elasticsearch cluster. |
started_at |
The time when the backup operation was started. |
created_at |
The time when the backup was created (i.e. when the backup operation completed). |
indices[] |
string Indices names. (max 100) |
elasticsearch_version |
string Elasticsearch version used to create the snapshot |
size_bytes |
int64 Total size of all indices in backup. in bytes |
indices_total |
int64 Total count of indices in backup |