io.pinecone.proto.UpsertRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinecone-client Show documentation
Show all versions of pinecone-client Show documentation
The Pinecone.io Java Client
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: vector_service.proto
// Protobuf Java Version: 3.25.3
package io.pinecone.proto;
public interface UpsertRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:UpsertRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* An array containing the vectors to upsert. Recommended batch limit is 100 vectors.
*
*
* repeated .Vector vectors = 1 [(.google.api.field_behavior) = REQUIRED];
*/
java.util.List
getVectorsList();
/**
*
* An array containing the vectors to upsert. Recommended batch limit is 100 vectors.
*
*
* repeated .Vector vectors = 1 [(.google.api.field_behavior) = REQUIRED];
*/
io.pinecone.proto.Vector getVectors(int index);
/**
*
* An array containing the vectors to upsert. Recommended batch limit is 100 vectors.
*
*
* repeated .Vector vectors = 1 [(.google.api.field_behavior) = REQUIRED];
*/
int getVectorsCount();
/**
*
* An array containing the vectors to upsert. Recommended batch limit is 100 vectors.
*
*
* repeated .Vector vectors = 1 [(.google.api.field_behavior) = REQUIRED];
*/
java.util.List extends io.pinecone.proto.VectorOrBuilder>
getVectorsOrBuilderList();
/**
*
* An array containing the vectors to upsert. Recommended batch limit is 100 vectors.
*
*
* repeated .Vector vectors = 1 [(.google.api.field_behavior) = REQUIRED];
*/
io.pinecone.proto.VectorOrBuilder getVectorsOrBuilder(
int index);
/**
*
* This is the namespace name where you upsert vectors.
*
*
* string namespace = 2;
* @return The namespace.
*/
java.lang.String getNamespace();
/**
*
* This is the namespace name where you upsert vectors.
*
*
* string namespace = 2;
* @return The bytes for namespace.
*/
com.google.protobuf.ByteString
getNamespaceBytes();
}