io.milvus.grpc.RenameCollectionRequestOrBuilder 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 RenameCollectionRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.RenameCollectionRequest)
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 oldName = 3;
* @return The oldName.
*/
java.lang.String getOldName();
/**
* string oldName = 3;
* @return The bytes for oldName.
*/
com.google.protobuf.ByteString
getOldNameBytes();
/**
* string newName = 4;
* @return The newName.
*/
java.lang.String getNewName();
/**
* string newName = 4;
* @return The bytes for newName.
*/
com.google.protobuf.ByteString
getNewNameBytes();
/**
* string newDBName = 5;
* @return The newDBName.
*/
java.lang.String getNewDBName();
/**
* string newDBName = 5;
* @return The bytes for newDBName.
*/
com.google.protobuf.ByteString
getNewDBNameBytes();
}