public static interface ModelRegistry.SearchRegisteredModelsOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getFilter()
String filter condition, like "name LIKE 'my-model-name'".
|
com.google.protobuf.ByteString |
getFilterBytes()
String filter condition, like "name LIKE 'my-model-name'".
|
long |
getMaxResults()
Maximum number of models desired.
|
String |
getOrderBy(int index)
List of columns for ordering search results, which can include model name and last updated
timestamp with an optional "DESC" or "ASC" annotation, where "ASC" is the default.
|
com.google.protobuf.ByteString |
getOrderByBytes(int index)
List of columns for ordering search results, which can include model name and last updated
timestamp with an optional "DESC" or "ASC" annotation, where "ASC" is the default.
|
int |
getOrderByCount()
List of columns for ordering search results, which can include model name and last updated
timestamp with an optional "DESC" or "ASC" annotation, where "ASC" is the default.
|
List<String> |
getOrderByList()
List of columns for ordering search results, which can include model name and last updated
timestamp with an optional "DESC" or "ASC" annotation, where "ASC" is the default.
|
String |
getPageToken()
Pagination token to go to the next page based on a previous search query.
|
com.google.protobuf.ByteString |
getPageTokenBytes()
Pagination token to go to the next page based on a previous search query.
|
boolean |
hasFilter()
String filter condition, like "name LIKE 'my-model-name'".
|
boolean |
hasMaxResults()
Maximum number of models desired.
|
boolean |
hasPageToken()
Pagination token to go to the next page based on a previous search query.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasFilter()
String filter condition, like "name LIKE 'my-model-name'". Interpreted in the backend automatically as "name LIKE '%my-model-name%'". Single boolean condition, with string values wrapped in single quotes.
optional string filter = 1;
String getFilter()
String filter condition, like "name LIKE 'my-model-name'". Interpreted in the backend automatically as "name LIKE '%my-model-name%'". Single boolean condition, with string values wrapped in single quotes.
optional string filter = 1;
com.google.protobuf.ByteString getFilterBytes()
String filter condition, like "name LIKE 'my-model-name'". Interpreted in the backend automatically as "name LIKE '%my-model-name%'". Single boolean condition, with string values wrapped in single quotes.
optional string filter = 1;
boolean hasMaxResults()
Maximum number of models desired. Default is 100. Max threshold is 1000.
optional int64 max_results = 2 [default = 100];
long getMaxResults()
Maximum number of models desired. Default is 100. Max threshold is 1000.
optional int64 max_results = 2 [default = 100];
List<String> getOrderByList()
List of columns for ordering search results, which can include model name and last updated timestamp with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Tiebreaks are done by model name ASC.
repeated string order_by = 3;
int getOrderByCount()
List of columns for ordering search results, which can include model name and last updated timestamp with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Tiebreaks are done by model name ASC.
repeated string order_by = 3;
String getOrderBy(int index)
List of columns for ordering search results, which can include model name and last updated timestamp with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Tiebreaks are done by model name ASC.
repeated string order_by = 3;
com.google.protobuf.ByteString getOrderByBytes(int index)
List of columns for ordering search results, which can include model name and last updated timestamp with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Tiebreaks are done by model name ASC.
repeated string order_by = 3;
boolean hasPageToken()
Pagination token to go to the next page based on a previous search query.
optional string page_token = 4;
String getPageToken()
Pagination token to go to the next page based on a previous search query.
optional string page_token = 4;
com.google.protobuf.ByteString getPageTokenBytes()
Pagination token to go to the next page based on a previous search query.
optional string page_token = 4;
Copyright © 2021. All rights reserved.