Skip to content

Commit 979af4b

Browse files
Google APIscopybara-github
authored andcommitted
feat: add filter to ListBuildTargetsRequest
docs: A comment for message `ListBuildTargetsRequest` is changed PiperOrigin-RevId: 820402157
1 parent ed1d7ff commit 979af4b

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

google/chromeos/moblab/v1beta1/build_service.proto

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,19 @@ message FindMostStableBuildResponse {
158158
}
159159

160160
// Request message for listing build targets.
161-
// -- NEXT_TAG: 3 --
161+
// -- NEXT_TAG: 4 --
162162
message ListBuildTargetsRequest {
163163
// Optional. The number of build targets to return in a page.
164164
int32 page_size = 1 [(google.api.field_behavior) = OPTIONAL];
165165

166166
// Optional. A page token, received from a previous `ListBuildTargets` call.
167167
// Provide this to retrieve the subsequent page.
168168
string page_token = 2 [(google.api.field_behavior) = OPTIONAL];
169+
170+
// Optional. Filter that specifies value constraints of fields. For example,
171+
// the filter can be set as "filter='model=modelName'" to only select build
172+
// targets associated with the given model.
173+
string filter = 3 [(google.api.field_behavior) = OPTIONAL];
169174
}
170175

171176
// Response message for listing build targets.

0 commit comments

Comments
 (0)