io.pinecone.proto.UpdateRequestOrBuilder 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 UpdateRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:UpdateRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Vector's unique id.
*
*
* string id = 1 [(.google.api.field_behavior) = REQUIRED];
* @return The id.
*/
java.lang.String getId();
/**
*
* Vector's unique id.
*
*
* string id = 1 [(.google.api.field_behavior) = REQUIRED];
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
/**
*
* Vector data.
*
*
* repeated float values = 2;
* @return A list containing the values.
*/
java.util.List getValuesList();
/**
*
* Vector data.
*
*
* repeated float values = 2;
* @return The count of values.
*/
int getValuesCount();
/**
*
* Vector data.
*
*
* repeated float values = 2;
* @param index The index of the element to return.
* @return The values at the given index.
*/
float getValues(int index);
/**
* .SparseValues sparse_values = 5;
* @return Whether the sparseValues field is set.
*/
boolean hasSparseValues();
/**
* .SparseValues sparse_values = 5;
* @return The sparseValues.
*/
io.pinecone.proto.SparseValues getSparseValues();
/**
* .SparseValues sparse_values = 5;
*/
io.pinecone.proto.SparseValuesOrBuilder getSparseValuesOrBuilder();
/**
*
* Metadata to *set* for the vector.
*
*
* .google.protobuf.Struct set_metadata = 3;
* @return Whether the setMetadata field is set.
*/
boolean hasSetMetadata();
/**
*
* Metadata to *set* for the vector.
*
*
* .google.protobuf.Struct set_metadata = 3;
* @return The setMetadata.
*/
com.google.protobuf.Struct getSetMetadata();
/**
*
* Metadata to *set* for the vector.
*
*
* .google.protobuf.Struct set_metadata = 3;
*/
com.google.protobuf.StructOrBuilder getSetMetadataOrBuilder();
/**
*
* Namespace name where to update the vector.
*
*
* string namespace = 4;
* @return The namespace.
*/
java.lang.String getNamespace();
/**
*
* Namespace name where to update the vector.
*
*
* string namespace = 4;
* @return The bytes for namespace.
*/
com.google.protobuf.ByteString
getNamespaceBytes();
}