@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
8 lines (7 loc) • 353 B
TypeScript
import { ManageIndexesApi, BackupModel } from '../pinecone-generated-ts-fetch/db_control';
import type { BackupId } from './types';
/**
* The string ID of the backup to describe.
*/
export type DescribeBackupOptions = BackupId;
export declare const describeBackup: (api: ManageIndexesApi) => (backupId: DescribeBackupOptions) => Promise<BackupModel>;