All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.milvus.grpc.ImportRequestOrBuilder Maven / Gradle / Ivy

Go to download

Java SDK for Milvus, a distributed high-performance vector search engine. update grpc to 1.42.1 update protobuf to 3.19.1

There is a newer version: 2.2.2.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: milvus.proto

package io.milvus.grpc;

public interface ImportRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:milvus.proto.milvus.ImportRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * target collection
   * 
* * string collection_name = 1; * @return The collectionName. */ java.lang.String getCollectionName(); /** *
   * target collection
   * 
* * string collection_name = 1; * @return The bytes for collectionName. */ com.google.protobuf.ByteString getCollectionNameBytes(); /** *
   * target partition
   * 
* * string partition_name = 2; * @return The partitionName. */ java.lang.String getPartitionName(); /** *
   * target partition
   * 
* * string partition_name = 2; * @return The bytes for partitionName. */ com.google.protobuf.ByteString getPartitionNameBytes(); /** *
   * channel names for the collection
   * 
* * repeated string channel_names = 3; * @return A list containing the channelNames. */ java.util.List getChannelNamesList(); /** *
   * channel names for the collection
   * 
* * repeated string channel_names = 3; * @return The count of channelNames. */ int getChannelNamesCount(); /** *
   * channel names for the collection
   * 
* * repeated string channel_names = 3; * @param index The index of the element to return. * @return The channelNames at the given index. */ java.lang.String getChannelNames(int index); /** *
   * channel names for the collection
   * 
* * repeated string channel_names = 3; * @param index The index of the value to return. * @return The bytes of the channelNames at the given index. */ com.google.protobuf.ByteString getChannelNamesBytes(int index); /** *
   * the file is row-based or column-based
   * 
* * bool row_based = 4; * @return The rowBased. */ boolean getRowBased(); /** *
   * file paths to be imported
   * 
* * repeated string files = 5; * @return A list containing the files. */ java.util.List getFilesList(); /** *
   * file paths to be imported
   * 
* * repeated string files = 5; * @return The count of files. */ int getFilesCount(); /** *
   * file paths to be imported
   * 
* * repeated string files = 5; * @param index The index of the element to return. * @return The files at the given index. */ java.lang.String getFiles(int index); /** *
   * file paths to be imported
   * 
* * repeated string files = 5; * @param index The index of the value to return. * @return The bytes of the files at the given index. */ com.google.protobuf.ByteString getFilesBytes(int index); /** *
   * import options, bucket, etc.
   * 
* * repeated .milvus.proto.common.KeyValuePair options = 6; */ java.util.List getOptionsList(); /** *
   * import options, bucket, etc.
   * 
* * repeated .milvus.proto.common.KeyValuePair options = 6; */ io.milvus.grpc.KeyValuePair getOptions(int index); /** *
   * import options, bucket, etc.
   * 
* * repeated .milvus.proto.common.KeyValuePair options = 6; */ int getOptionsCount(); /** *
   * import options, bucket, etc.
   * 
* * repeated .milvus.proto.common.KeyValuePair options = 6; */ java.util.List getOptionsOrBuilderList(); /** *
   * import options, bucket, etc.
   * 
* * repeated .milvus.proto.common.KeyValuePair options = 6; */ io.milvus.grpc.KeyValuePairOrBuilder getOptionsOrBuilder( int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy