io.milvus.grpc.ListImportTasksRequestOrBuilder 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 ListImportTasksRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.ListImportTasksRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* target collection, list all tasks if the name is empty
*
*
* string collection_name = 1;
* @return The collectionName.
*/
java.lang.String getCollectionName();
/**
*
* target collection, list all tasks if the name is empty
*
*
* string collection_name = 1;
* @return The bytes for collectionName.
*/
com.google.protobuf.ByteString
getCollectionNameBytes();
/**
*
* maximum number of tasks returned, list all tasks if the value is 0
*
*
* int64 limit = 2;
* @return The limit.
*/
long getLimit();
/**
* string db_name = 3;
* @return The dbName.
*/
java.lang.String getDbName();
/**
* string db_name = 3;
* @return The bytes for dbName.
*/
com.google.protobuf.ByteString
getDbNameBytes();
}