UNPKG

@pinecone-database/pinecone

Version:

This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.

40 lines (39 loc) 1.26 kB
/** * Pinecone Control Plane API * Pinecone is a vector database that makes it easy to search and retrieve billions of high-dimensional vectors. * * The version of the OpenAPI document: 2025-04 * Contact: support@pinecone.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { BackupModel } from './BackupModel'; import type { PaginationResponse } from './PaginationResponse'; /** * The list of backups that exist in the project. * @export * @interface BackupList */ export interface BackupList { /** * * @type {Array<BackupModel>} * @memberof BackupList */ data?: Array<BackupModel>; /** * * @type {PaginationResponse} * @memberof BackupList */ pagination?: PaginationResponse; } /** * Check if a given object implements the BackupList interface. */ export declare function instanceOfBackupList(value: object): boolean; export declare function BackupListFromJSON(json: any): BackupList; export declare function BackupListFromJSONTyped(json: any, ignoreDiscriminator: boolean): BackupList; export declare function BackupListToJSON(value?: BackupList | null): any;