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
@Deprecated public static interface ModelRegistry.ListRegisteredModelsOrBuilder extends com.google.protobuf.MessageOrBuilder
Deprecated.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description long
getMaxResults()
Deprecated.Maximum number of registered models desired.java.lang.String
getPageToken()
Deprecated.Pagination token to go to the next page based on a previous query.com.google.protobuf.ByteString
getPageTokenBytes()
Deprecated.Pagination token to go to the next page based on a previous query.boolean
hasMaxResults()
Deprecated.Maximum number of registered models desired.boolean
hasPageToken()
Deprecated.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()
Deprecated.Maximum number of registered models desired. Max threshold is 1000.
optional int64 max_results = 1 [default = 100];
- Returns:
- Whether the maxResults field is set.
-
getMaxResults
long getMaxResults()
Deprecated.Maximum number of registered models desired. Max threshold is 1000.
optional int64 max_results = 1 [default = 100];
- Returns:
- The maxResults.
-
hasPageToken
boolean hasPageToken()
Deprecated.Pagination token to go to the next page based on a previous query.
optional string page_token = 2;
- Returns:
- Whether the pageToken field is set.
-
getPageToken
java.lang.String getPageToken()
Deprecated.Pagination token to go to the next page based on a previous query.
optional string page_token = 2;
- Returns:
- The pageToken.
-
getPageTokenBytes
com.google.protobuf.ByteString getPageTokenBytes()
Deprecated.Pagination token to go to the next page based on a previous query.
optional string page_token = 2;
- Returns:
- The bytes for pageToken.
-
-