io.milvus.grpc.AlterIndexRequestOrBuilder 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 AlterIndexRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.AlterIndexRequest)
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 index_name = 4;
* @return The indexName.
*/
java.lang.String getIndexName();
/**
* string index_name = 4;
* @return The bytes for indexName.
*/
com.google.protobuf.ByteString
getIndexNameBytes();
/**
* repeated .milvus.proto.common.KeyValuePair extra_params = 5;
*/
java.util.List
getExtraParamsList();
/**
* repeated .milvus.proto.common.KeyValuePair extra_params = 5;
*/
io.milvus.grpc.KeyValuePair getExtraParams(int index);
/**
* repeated .milvus.proto.common.KeyValuePair extra_params = 5;
*/
int getExtraParamsCount();
/**
* repeated .milvus.proto.common.KeyValuePair extra_params = 5;
*/
java.util.List extends io.milvus.grpc.KeyValuePairOrBuilder>
getExtraParamsOrBuilderList();
/**
* repeated .milvus.proto.common.KeyValuePair extra_params = 5;
*/
io.milvus.grpc.KeyValuePairOrBuilder getExtraParamsOrBuilder(
int index);
}