Skip to content

Commit

Permalink
support more filters for getUsers and getNamespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
anekkanti committed Nov 13, 2023
1 parent 95c5431 commit 3a42b37
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion temporal/api/cloud/cloudservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ message GetUsersRequest {
int32 page_size = 1;
// The page token if this is continuing from another response - optional.
string page_token = 2;
// Filter users by email address - optional
// Filter users by email address - optional.
string email = 3;
// Filter users by the namespace they have access to - optional.
string namespace = 4;
}

message GetUsersResponse {
Expand Down Expand Up @@ -134,6 +136,9 @@ message GetNamespacesRequest {
// The page token if this is continuing from another response.
// Optional, defaults to empty.
string page_token = 2;
// Filter namespaces by their name.
// Optional, defaults to empty.
string name = 3;
}

message GetNamespacesResponse {
Expand Down

0 comments on commit 3a42b37

Please sign in to comment.