io.milvus.grpc.DescribeIndexResponseOrBuilder 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 DescribeIndexResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.DescribeIndexResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* Response status
*
*
* .milvus.proto.common.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
*
* Response status
*
*
* .milvus.proto.common.Status status = 1;
* @return The status.
*/
io.milvus.grpc.Status getStatus();
/**
*
* Response status
*
*
* .milvus.proto.common.Status status = 1;
*/
io.milvus.grpc.StatusOrBuilder getStatusOrBuilder();
/**
*
* All index informations, for now only return tha latest index you created for the collection.
*
*
* repeated .milvus.proto.milvus.IndexDescription index_descriptions = 2;
*/
java.util.List
getIndexDescriptionsList();
/**
*
* All index informations, for now only return tha latest index you created for the collection.
*
*
* repeated .milvus.proto.milvus.IndexDescription index_descriptions = 2;
*/
io.milvus.grpc.IndexDescription getIndexDescriptions(int index);
/**
*
* All index informations, for now only return tha latest index you created for the collection.
*
*
* repeated .milvus.proto.milvus.IndexDescription index_descriptions = 2;
*/
int getIndexDescriptionsCount();
/**
*
* All index informations, for now only return tha latest index you created for the collection.
*
*
* repeated .milvus.proto.milvus.IndexDescription index_descriptions = 2;
*/
java.util.List extends io.milvus.grpc.IndexDescriptionOrBuilder>
getIndexDescriptionsOrBuilderList();
/**
*
* All index informations, for now only return tha latest index you created for the collection.
*
*
* repeated .milvus.proto.milvus.IndexDescription index_descriptions = 2;
*/
io.milvus.grpc.IndexDescriptionOrBuilder getIndexDescriptionsOrBuilder(
int index);
}