io.pinecone.proto.FetchRequestOrBuilder 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 FetchRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:FetchRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The vector IDs to fetch. Does not accept values containing spaces.
*
*
* repeated string ids = 1 [(.google.api.field_behavior) = REQUIRED];
* @return A list containing the ids.
*/
java.util.List
getIdsList();
/**
*
* The vector IDs to fetch. Does not accept values containing spaces.
*
*
* repeated string ids = 1 [(.google.api.field_behavior) = REQUIRED];
* @return The count of ids.
*/
int getIdsCount();
/**
*
* The vector IDs to fetch. Does not accept values containing spaces.
*
*
* repeated string ids = 1 [(.google.api.field_behavior) = REQUIRED];
* @param index The index of the element to return.
* @return The ids at the given index.
*/
java.lang.String getIds(int index);
/**
*
* The vector IDs to fetch. Does not accept values containing spaces.
*
*
* repeated string ids = 1 [(.google.api.field_behavior) = REQUIRED];
* @param index The index of the value to return.
* @return The bytes of the ids at the given index.
*/
com.google.protobuf.ByteString
getIdsBytes(int index);
/**
* string namespace = 2;
* @return The namespace.
*/
java.lang.String getNamespace();
/**
* string namespace = 2;
* @return The bytes for namespace.
*/
com.google.protobuf.ByteString
getNamespaceBytes();
}