io.milvus.grpc.CheckHealthResponseOrBuilder 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 CheckHealthResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.CheckHealthResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .milvus.proto.common.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
* .milvus.proto.common.Status status = 1;
* @return The status.
*/
io.milvus.grpc.Status getStatus();
/**
* .milvus.proto.common.Status status = 1;
*/
io.milvus.grpc.StatusOrBuilder getStatusOrBuilder();
/**
* bool isHealthy = 2;
* @return The isHealthy.
*/
boolean getIsHealthy();
/**
* repeated string reasons = 3;
* @return A list containing the reasons.
*/
java.util.List
getReasonsList();
/**
* repeated string reasons = 3;
* @return The count of reasons.
*/
int getReasonsCount();
/**
* repeated string reasons = 3;
* @param index The index of the element to return.
* @return The reasons at the given index.
*/
java.lang.String getReasons(int index);
/**
* repeated string reasons = 3;
* @param index The index of the value to return.
* @return The bytes of the reasons at the given index.
*/
com.google.protobuf.ByteString
getReasonsBytes(int index);
/**
* repeated .milvus.proto.milvus.QuotaState quota_states = 4;
* @return A list containing the quotaStates.
*/
java.util.List getQuotaStatesList();
/**
* repeated .milvus.proto.milvus.QuotaState quota_states = 4;
* @return The count of quotaStates.
*/
int getQuotaStatesCount();
/**
* repeated .milvus.proto.milvus.QuotaState quota_states = 4;
* @param index The index of the element to return.
* @return The quotaStates at the given index.
*/
io.milvus.grpc.QuotaState getQuotaStates(int index);
/**
* repeated .milvus.proto.milvus.QuotaState quota_states = 4;
* @return A list containing the enum numeric values on the wire for quotaStates.
*/
java.util.List
getQuotaStatesValueList();
/**
* repeated .milvus.proto.milvus.QuotaState quota_states = 4;
* @param index The index of the value to return.
* @return The enum numeric value on the wire of quotaStates at the given index.
*/
int getQuotaStatesValue(int index);
}