io.milvus.grpc.DeleteRequestOrBuilder 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 DeleteRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.DeleteRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .milvus.proto.common.MsgBase base = 1;
* @return Whether the base field is set.
*/
boolean hasBase();
/**
* .milvus.proto.common.MsgBase base = 1;
* @return The base.
*/
io.milvus.grpc.MsgBase getBase();
/**
* .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();
/**
* string collection_name = 3;
* @return The collectionName.
*/
java.lang.String getCollectionName();
/**
* string collection_name = 3;
* @return The bytes for collectionName.
*/
com.google.protobuf.ByteString
getCollectionNameBytes();
/**
* string partition_name = 4;
* @return The partitionName.
*/
java.lang.String getPartitionName();
/**
* string partition_name = 4;
* @return The bytes for partitionName.
*/
com.google.protobuf.ByteString
getPartitionNameBytes();
/**
* string expr = 5;
* @return The expr.
*/
java.lang.String getExpr();
/**
* string expr = 5;
* @return The bytes for expr.
*/
com.google.protobuf.ByteString
getExprBytes();
/**
* repeated uint32 hash_keys = 6;
* @return A list containing the hashKeys.
*/
java.util.List getHashKeysList();
/**
* repeated uint32 hash_keys = 6;
* @return The count of hashKeys.
*/
int getHashKeysCount();
/**
* repeated uint32 hash_keys = 6;
* @param index The index of the element to return.
* @return The hashKeys at the given index.
*/
int getHashKeys(int index);
/**
* .milvus.proto.common.ConsistencyLevel consistency_level = 7;
* @return The enum numeric value on the wire for consistencyLevel.
*/
int getConsistencyLevelValue();
/**
* .milvus.proto.common.ConsistencyLevel consistency_level = 7;
* @return The consistencyLevel.
*/
io.milvus.grpc.ConsistencyLevel getConsistencyLevel();
}