io.milvus.grpc.UpsertRequestOrBuilder 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 UpsertRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.UpsertRequest)
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();
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
java.util.List
getFieldsDataList();
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
io.milvus.grpc.FieldData getFieldsData(int index);
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
int getFieldsDataCount();
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
java.util.List extends io.milvus.grpc.FieldDataOrBuilder>
getFieldsDataOrBuilderList();
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
io.milvus.grpc.FieldDataOrBuilder getFieldsDataOrBuilder(
int index);
/**
* 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);
/**
* uint32 num_rows = 7;
* @return The numRows.
*/
int getNumRows();
}