io.milvus.grpc.DescribeCollectionRequestOrBuilder 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 database.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: milvus.proto
package io.milvus.grpc;
public interface DescribeCollectionRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.DescribeCollectionRequest)
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();
/**
* string db_name = 2;
* @return The dbName.
*/
java.lang.String getDbName();
/**
* 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 you want to describe
*
*
* int64 collectionID = 4;
* @return The collectionID.
*/
long getCollectionID();
/**
*
* If time_stamp is not zero, will describe collection success when time_stamp >= created collection timestamp, otherwise will throw error.
*
*
* uint64 time_stamp = 5;
* @return The timeStamp.
*/
long getTimeStamp();
}