io.milvus.grpc.DescribeAliasResponseOrBuilder 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 DescribeAliasResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.DescribeAliasResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* Response status
*
*
* .milvus.proto.common.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
*
* Response status
*
*
* .milvus.proto.common.Status status = 1;
* @return The status.
*/
io.milvus.grpc.Status getStatus();
/**
*
* Response status
*
*
* .milvus.proto.common.Status status = 1;
*/
io.milvus.grpc.StatusOrBuilder getStatusOrBuilder();
/**
* 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 alias = 3;
* @return The alias.
*/
java.lang.String getAlias();
/**
* string alias = 3;
* @return The bytes for alias.
*/
com.google.protobuf.ByteString
getAliasBytes();
/**
* string collection = 4;
* @return The collection.
*/
java.lang.String getCollection();
/**
* string collection = 4;
* @return The bytes for collection.
*/
com.google.protobuf.ByteString
getCollectionBytes();
}