io.milvus.grpc.DescribeIndexRequestOrBuilder 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 DescribeIndexRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.DescribeIndexRequest)
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 particular collection name in Milvus
*
*
* string collection_name = 3;
* @return The collectionName.
*/
java.lang.String getCollectionName();
/**
*
* The particular collection name in Milvus
*
*
* string collection_name = 3;
* @return The bytes for collectionName.
*/
com.google.protobuf.ByteString
getCollectionNameBytes();
/**
*
* The vector field name in this particular collection
*
*
* string field_name = 4;
* @return The fieldName.
*/
java.lang.String getFieldName();
/**
*
* The vector field name in this particular collection
*
*
* string field_name = 4;
* @return The bytes for fieldName.
*/
com.google.protobuf.ByteString
getFieldNameBytes();
/**
*
* No need to set up for now @2021.06.30
*
*
* string index_name = 5;
* @return The indexName.
*/
java.lang.String getIndexName();
/**
*
* No need to set up for now @2021.06.30
*
*
* string index_name = 5;
* @return The bytes for indexName.
*/
com.google.protobuf.ByteString
getIndexNameBytes();
}