io.pinecone.proto.ListResponseOrBuilder 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 ListResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:ListResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* A list of ids
*
*
* repeated .ListItem vectors = 1;
*/
java.util.List
getVectorsList();
/**
*
* A list of ids
*
*
* repeated .ListItem vectors = 1;
*/
io.pinecone.proto.ListItem getVectors(int index);
/**
*
* A list of ids
*
*
* repeated .ListItem vectors = 1;
*/
int getVectorsCount();
/**
*
* A list of ids
*
*
* repeated .ListItem vectors = 1;
*/
java.util.List extends io.pinecone.proto.ListItemOrBuilder>
getVectorsOrBuilderList();
/**
*
* A list of ids
*
*
* repeated .ListItem vectors = 1;
*/
io.pinecone.proto.ListItemOrBuilder getVectorsOrBuilder(
int index);
/**
*
* Pagination token to continue past this listing
*
*
* optional .Pagination pagination = 2;
* @return Whether the pagination field is set.
*/
boolean hasPagination();
/**
*
* Pagination token to continue past this listing
*
*
* optional .Pagination pagination = 2;
* @return The pagination.
*/
io.pinecone.proto.Pagination getPagination();
/**
*
* Pagination token to continue past this listing
*
*
* optional .Pagination pagination = 2;
*/
io.pinecone.proto.PaginationOrBuilder getPaginationOrBuilder();
/**
*
* The namespace of the vectors.
*
*
* string namespace = 3;
* @return The namespace.
*/
java.lang.String getNamespace();
/**
*
* The namespace of the vectors.
*
*
* string namespace = 3;
* @return The bytes for namespace.
*/
com.google.protobuf.ByteString
getNamespaceBytes();
/**
*
* The usage for this operation.
*
*
* optional .Usage usage = 4;
* @return Whether the usage field is set.
*/
boolean hasUsage();
/**
*
* The usage for this operation.
*
*
* optional .Usage usage = 4;
* @return The usage.
*/
io.pinecone.proto.Usage getUsage();
/**
*
* The usage for this operation.
*
*
* optional .Usage usage = 4;
*/
io.pinecone.proto.UsageOrBuilder getUsageOrBuilder();
}