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

io.milvus.grpc.CreateIndexRequestOrBuilder 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 CreateIndexRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:milvus.proto.milvus.CreateIndexRequest)
    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(); /** *
   * Not useful for now
   * 
* * string db_name = 2; * @return The dbName. */ java.lang.String getDbName(); /** *
   * Not useful for now
   * 
* * string db_name = 2; * @return The bytes for dbName. */ com.google.protobuf.ByteString getDbNameBytes(); /** *
   * The particular collection name you want to create index.
   * 
* * string collection_name = 3; * @return The collectionName. */ java.lang.String getCollectionName(); /** *
   * The particular collection name you want to create index.
   * 
* * string collection_name = 3; * @return The bytes for collectionName. */ com.google.protobuf.ByteString getCollectionNameBytes(); /** *
   * The vector field name in this particular collection
   * 
* * string field_name = 4; * @return The fieldName. */ java.lang.String getFieldName(); /** *
   * The vector field name in this particular collection
   * 
* * string field_name = 4; * @return The bytes for fieldName. */ com.google.protobuf.ByteString getFieldNameBytes(); /** *
   * Support keys: index_type,metric_type, params. Different index_type may has different params.
   * 
* * repeated .milvus.proto.common.KeyValuePair extra_params = 5; */ java.util.List getExtraParamsList(); /** *
   * Support keys: index_type,metric_type, params. Different index_type may has different params.
   * 
* * repeated .milvus.proto.common.KeyValuePair extra_params = 5; */ io.milvus.grpc.KeyValuePair getExtraParams(int index); /** *
   * Support keys: index_type,metric_type, params. Different index_type may has different params.
   * 
* * repeated .milvus.proto.common.KeyValuePair extra_params = 5; */ int getExtraParamsCount(); /** *
   * Support keys: index_type,metric_type, params. Different index_type may has different params.
   * 
* * repeated .milvus.proto.common.KeyValuePair extra_params = 5; */ java.util.List getExtraParamsOrBuilderList(); /** *
   * Support keys: index_type,metric_type, params. Different index_type may has different params.
   * 
* * repeated .milvus.proto.common.KeyValuePair extra_params = 5; */ io.milvus.grpc.KeyValuePairOrBuilder getExtraParamsOrBuilder( int index); /** *
   * Version before 2.0.2 doesn't contain index_name, we use default index name.
   * 
* * string index_name = 6; * @return The indexName. */ java.lang.String getIndexName(); /** *
   * Version before 2.0.2 doesn't contain index_name, we use default index name.
   * 
* * string index_name = 6; * @return The bytes for indexName. */ com.google.protobuf.ByteString getIndexNameBytes(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy