io.pinecone.proto.ListRequestOrBuilder 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 ListRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:ListRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The vector IDs to fetch. Does not accept values containing spaces.
*
*
* optional string prefix = 1;
* @return Whether the prefix field is set.
*/
boolean hasPrefix();
/**
*
* The vector IDs to fetch. Does not accept values containing spaces.
*
*
* optional string prefix = 1;
* @return The prefix.
*/
java.lang.String getPrefix();
/**
*
* The vector IDs to fetch. Does not accept values containing spaces.
*
*
* optional string prefix = 1;
* @return The bytes for prefix.
*/
com.google.protobuf.ByteString
getPrefixBytes();
/**
*
* Max number of ids to return
*
*
* optional uint32 limit = 2;
* @return Whether the limit field is set.
*/
boolean hasLimit();
/**
*
* Max number of ids to return
*
*
* optional uint32 limit = 2;
* @return The limit.
*/
int getLimit();
/**
*
* Pagination token to continue a previous listing operation
*
*
* optional string pagination_token = 3;
* @return Whether the paginationToken field is set.
*/
boolean hasPaginationToken();
/**
*
* Pagination token to continue a previous listing operation
*
*
* optional string pagination_token = 3;
* @return The paginationToken.
*/
java.lang.String getPaginationToken();
/**
*
* Pagination token to continue a previous listing operation
*
*
* optional string pagination_token = 3;
* @return The bytes for paginationToken.
*/
com.google.protobuf.ByteString
getPaginationTokenBytes();
/**
* string namespace = 4;
* @return The namespace.
*/
java.lang.String getNamespace();
/**
* string namespace = 4;
* @return The bytes for namespace.
*/
com.google.protobuf.ByteString
getNamespaceBytes();
}