Package org.mlflow.api.proto
Interface ModelRegistry.ListRegisteredModelsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ModelRegistry.ListRegisteredModels
,ModelRegistry.ListRegisteredModels.Builder
- Enclosing class:
- ModelRegistry
public static interface ModelRegistry.ListRegisteredModelsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getMaxResults()
Maximum number of registered models desired.java.lang.String
getPageToken()
Pagination token to go to the next page based on a previous query.com.google.protobuf.ByteString
getPageTokenBytes()
Pagination token to go to the next page based on a previous query.boolean
hasMaxResults()
Maximum number of registered models desired.boolean
hasPageToken()
Pagination token to go to the next page based on a previous query.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasMaxResults
boolean hasMaxResults()
Maximum number of registered models desired. Max threshold is 1000.
optional int64 max_results = 1 [default = 100];
-
getMaxResults
long getMaxResults()
Maximum number of registered models desired. Max threshold is 1000.
optional int64 max_results = 1 [default = 100];
-
hasPageToken
boolean hasPageToken()
Pagination token to go to the next page based on a previous query.
optional string page_token = 2;
-
getPageToken
java.lang.String getPageToken()
Pagination token to go to the next page based on a previous query.
optional string page_token = 2;
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
Pagination token to go to the next page based on a previous query.
optional string page_token = 2;
-
-