UNPKG

@pinecone-database/pinecone

Version:

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

57 lines 2.42 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.CreateIndexFromBackupRequestToJSON = exports.CreateIndexFromBackupRequestFromJSONTyped = exports.CreateIndexFromBackupRequestFromJSON = exports.instanceOfCreateIndexFromBackupRequest = void 0; const runtime_1 = require("../runtime"); const DeletionProtection_1 = require("./DeletionProtection"); /** * Check if a given object implements the CreateIndexFromBackupRequest interface. */ function instanceOfCreateIndexFromBackupRequest(value) { let isInstance = true; isInstance = isInstance && "name" in value; return isInstance; } exports.instanceOfCreateIndexFromBackupRequest = instanceOfCreateIndexFromBackupRequest; function CreateIndexFromBackupRequestFromJSON(json) { return CreateIndexFromBackupRequestFromJSONTyped(json, false); } exports.CreateIndexFromBackupRequestFromJSON = CreateIndexFromBackupRequestFromJSON; function CreateIndexFromBackupRequestFromJSONTyped(json, ignoreDiscriminator) { if ((json === undefined) || (json === null)) { return json; } return { 'name': json['name'], 'tags': !(0, runtime_1.exists)(json, 'tags') ? undefined : json['tags'], 'deletionProtection': !(0, runtime_1.exists)(json, 'deletion_protection') ? undefined : (0, DeletionProtection_1.DeletionProtectionFromJSON)(json['deletion_protection']), }; } exports.CreateIndexFromBackupRequestFromJSONTyped = CreateIndexFromBackupRequestFromJSONTyped; function CreateIndexFromBackupRequestToJSON(value) { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'name': value.name, 'tags': value.tags, 'deletion_protection': (0, DeletionProtection_1.DeletionProtectionToJSON)(value.deletionProtection), }; } exports.CreateIndexFromBackupRequestToJSON = CreateIndexFromBackupRequestToJSON; //# sourceMappingURL=CreateIndexFromBackupRequest.js.map