From 46db0037e1ceda80ce292248f1de615988e78170 Mon Sep 17 00:00:00 2001 From: Michal Skrivanek Date: Wed, 15 Oct 2025 11:24:08 +0200 Subject: [PATCH] add "only_active" field to ListLeaseRequest defaults to true, pass "false" to get the ended leases as well --- proto/jumpstarter/client/v1/client.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/proto/jumpstarter/client/v1/client.proto b/proto/jumpstarter/client/v1/client.proto index 92ed008..0b5fb4b 100644 --- a/proto/jumpstarter/client/v1/client.proto +++ b/proto/jumpstarter/client/v1/client.proto @@ -140,6 +140,7 @@ message ListLeasesRequest { int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL]; string page_token = 3 [(google.api.field_behavior) = OPTIONAL]; string filter = 4 [(google.api.field_behavior) = OPTIONAL]; + optional bool only_active = 5 [(google.api.field_behavior) = OPTIONAL]; } message ListLeasesResponse {