io.milvus.grpc.ListResourceGroupsResponseOrBuilder 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 ListResourceGroupsResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.ListResourceGroupsResponse)
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();
/**
* repeated string resource_groups = 2;
* @return A list containing the resourceGroups.
*/
java.util.List
getResourceGroupsList();
/**
* repeated string resource_groups = 2;
* @return The count of resourceGroups.
*/
int getResourceGroupsCount();
/**
* repeated string resource_groups = 2;
* @param index The index of the element to return.
* @return The resourceGroups at the given index.
*/
java.lang.String getResourceGroups(int index);
/**
* repeated string resource_groups = 2;
* @param index The index of the value to return.
* @return The bytes of the resourceGroups at the given index.
*/
com.google.protobuf.ByteString
getResourceGroupsBytes(int index);
}