Skip to main content

Get

Returns the specified Redis backup.

To get the list of available Redis backups, make a List request.

import { cloudApi, serviceClients, Session } from "@yandex-cloud/nodejs-sdk";

const GetBackupRequest =
cloudApi.mdb.clickhouse_backup_service.GetBackupRequest;

(async () => {
const authToken = process.env["YC_OAUTH_TOKEN"];
const session = new Session({ oauthToken: authToken });
const client = session.client(serviceClients.BackupServiceClient);

const result = await client.get(
GetBackupRequest.fromPartial({
backupId: "backupId",
})
);
console.log(result);
})();

GetBackupRequest

backupId : string

ID of the Redis backup to return. To get the backup ID, use a ClusterService.ListBackups request.

Backup

Description of a Redis backup. For more information, see the Managed Service for Redis documentation.

id : string

ID of the backup.

folderId : string

ID of the folder that the backup belongs to.

createdAt : google.protobuf.Timestamp

Creation timestamp in RFC3339 text format (i.e. when the backup operation was completed).

sourceClusterId : string

ID of the Redis cluster that the backup was created for.

startedAt : google.protobuf.Timestamp

Start timestamp in RFC3339 text format (i.e. when the backup operation was started).

sourceShardNames : string

Shard names used as a source for backup.