io.milvus.grpc.ShowCollectionsResponseOrBuilder 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 search engine.
update grpc to 1.42.1
update protobuf to 3.19.1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: milvus.proto
package io.milvus.grpc;
public interface ShowCollectionsResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.ShowCollectionsResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* Contain error_code and reason
*
*
* .milvus.proto.common.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
*
* Contain error_code and reason
*
*
* .milvus.proto.common.Status status = 1;
* @return The status.
*/
io.milvus.grpc.Status getStatus();
/**
*
* Contain error_code and reason
*
*
* .milvus.proto.common.Status status = 1;
*/
io.milvus.grpc.StatusOrBuilder getStatusOrBuilder();
/**
*
* Collection name array
*
*
* repeated string collection_names = 2;
* @return A list containing the collectionNames.
*/
java.util.List
getCollectionNamesList();
/**
*
* Collection name array
*
*
* repeated string collection_names = 2;
* @return The count of collectionNames.
*/
int getCollectionNamesCount();
/**
*
* Collection name array
*
*
* repeated string collection_names = 2;
* @param index The index of the element to return.
* @return The collectionNames at the given index.
*/
java.lang.String getCollectionNames(int index);
/**
*
* Collection name array
*
*
* repeated string collection_names = 2;
* @param index The index of the value to return.
* @return The bytes of the collectionNames at the given index.
*/
com.google.protobuf.ByteString
getCollectionNamesBytes(int index);
/**
*
* Collection Id array
*
*
* repeated int64 collection_ids = 3;
* @return A list containing the collectionIds.
*/
java.util.List getCollectionIdsList();
/**
*
* Collection Id array
*
*
* repeated int64 collection_ids = 3;
* @return The count of collectionIds.
*/
int getCollectionIdsCount();
/**
*
* Collection Id array
*
*
* repeated int64 collection_ids = 3;
* @param index The index of the element to return.
* @return The collectionIds at the given index.
*/
long getCollectionIds(int index);
/**
*
* Hybrid timestamps in milvus
*
*
* repeated uint64 created_timestamps = 4;
* @return A list containing the createdTimestamps.
*/
java.util.List getCreatedTimestampsList();
/**
*
* Hybrid timestamps in milvus
*
*
* repeated uint64 created_timestamps = 4;
* @return The count of createdTimestamps.
*/
int getCreatedTimestampsCount();
/**
*
* Hybrid timestamps in milvus
*
*
* repeated uint64 created_timestamps = 4;
* @param index The index of the element to return.
* @return The createdTimestamps at the given index.
*/
long getCreatedTimestamps(int index);
/**
*
* The utc timestamp calculated by created_timestamp
*
*
* repeated uint64 created_utc_timestamps = 5;
* @return A list containing the createdUtcTimestamps.
*/
java.util.List getCreatedUtcTimestampsList();
/**
*
* The utc timestamp calculated by created_timestamp
*
*
* repeated uint64 created_utc_timestamps = 5;
* @return The count of createdUtcTimestamps.
*/
int getCreatedUtcTimestampsCount();
/**
*
* The utc timestamp calculated by created_timestamp
*
*
* repeated uint64 created_utc_timestamps = 5;
* @param index The index of the element to return.
* @return The createdUtcTimestamps at the given index.
*/
long getCreatedUtcTimestamps(int index);
/**
*
* Load percentage on querynode when type is InMemory
*
*
* repeated int64 inMemory_percentages = 6;
* @return A list containing the inMemoryPercentages.
*/
java.util.List getInMemoryPercentagesList();
/**
*
* Load percentage on querynode when type is InMemory
*
*
* repeated int64 inMemory_percentages = 6;
* @return The count of inMemoryPercentages.
*/
int getInMemoryPercentagesCount();
/**
*
* Load percentage on querynode when type is InMemory
*
*
* repeated int64 inMemory_percentages = 6;
* @param index The index of the element to return.
* @return The inMemoryPercentages at the given index.
*/
long getInMemoryPercentages(int index);
/**
*
* Indicate whether query service is available
*
*
* repeated bool query_service_available = 7;
* @return A list containing the queryServiceAvailable.
*/
java.util.List getQueryServiceAvailableList();
/**
*
* Indicate whether query service is available
*
*
* repeated bool query_service_available = 7;
* @return The count of queryServiceAvailable.
*/
int getQueryServiceAvailableCount();
/**
*
* Indicate whether query service is available
*
*
* repeated bool query_service_available = 7;
* @param index The index of the element to return.
* @return The queryServiceAvailable at the given index.
*/
boolean getQueryServiceAvailable(int index);
}