io.milvus.grpc.ShowPartitionsRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milvus-sdk-java Show documentation
Show all versions of milvus-sdk-java Show documentation
Java SDK for Milvus, a distributed high-performance vector search engine.
update grpc to 1.42.1
update protobuf to 3.19.1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: milvus.proto
package io.milvus.grpc;
public interface ShowPartitionsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.ShowPartitionsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
* @return Whether the base field is set.
*/
boolean hasBase();
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
* @return The base.
*/
io.milvus.grpc.MsgBase getBase();
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder();
/**
*
* Not useful for now
*
*
* string db_name = 2;
* @return The dbName.
*/
java.lang.String getDbName();
/**
*
* Not useful for now
*
*
* string db_name = 2;
* @return The bytes for dbName.
*/
com.google.protobuf.ByteString
getDbNameBytes();
/**
*
* The collection name you want to describe, you can pass collection_name or collectionID
*
*
* string collection_name = 3;
* @return The collectionName.
*/
java.lang.String getCollectionName();
/**
*
* The collection name you want to describe, you can pass collection_name or collectionID
*
*
* string collection_name = 3;
* @return The bytes for collectionName.
*/
com.google.protobuf.ByteString
getCollectionNameBytes();
/**
*
* The collection id in milvus
*
*
* int64 collectionID = 4;
* @return The collectionID.
*/
long getCollectionID();
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @return A list containing the partitionNames.
*/
java.util.List
getPartitionNamesList();
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @return The count of partitionNames.
*/
int getPartitionNamesCount();
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @param index The index of the element to return.
* @return The partitionNames at the given index.
*/
java.lang.String getPartitionNames(int index);
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @param index The index of the value to return.
* @return The bytes of the partitionNames at the given index.
*/
com.google.protobuf.ByteString
getPartitionNamesBytes(int index);
/**
*
* Decide return Loaded partitions or All partitions(Optional)
*
*
* .milvus.proto.milvus.ShowType type = 6;
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
*
* Decide return Loaded partitions or All partitions(Optional)
*
*
* .milvus.proto.milvus.ShowType type = 6;
* @return The type.
*/
io.milvus.grpc.ShowType getType();
}