@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
38 lines (37 loc) • 1.43 kB
TypeScript
/**
* 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.
*/
/**
* The response for creating an index from a backup.
* @export
* @interface CreateIndexFromBackupResponse
*/
export interface CreateIndexFromBackupResponse {
/**
* The ID of the restore job that was created.
* @type {string}
* @memberof CreateIndexFromBackupResponse
*/
restoreJobId: string;
/**
* The ID of the index that was created from the backup.
* @type {string}
* @memberof CreateIndexFromBackupResponse
*/
indexId: string;
}
/**
* Check if a given object implements the CreateIndexFromBackupResponse interface.
*/
export declare function instanceOfCreateIndexFromBackupResponse(value: object): boolean;
export declare function CreateIndexFromBackupResponseFromJSON(json: any): CreateIndexFromBackupResponse;
export declare function CreateIndexFromBackupResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateIndexFromBackupResponse;
export declare function CreateIndexFromBackupResponseToJSON(value?: CreateIndexFromBackupResponse | null): any;