Skip to content

Commit

Permalink
Add filter and update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
codemonkeycxy committed Apr 22, 2024
1 parent fc2f6e1 commit a50075d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 6 additions & 3 deletions temporal/api/cloud/cloudservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -241,14 +241,17 @@ message GetUserGroupsRequest {
int32 page_size = 1;
// The page token if this is continuing from another response - optional.
string page_token = 2;
// Filter groups by their connection type - optional.
// Allowed values ["google-workspace"].
string connection_type = 3;
// Only return groups that grant access to the specified namespace - optional.
string namespace = 3;
string namespace = 4;
// Filter groups by their name - optional.
string name = 4;
string name = 5;
}

message GetUserGroupsResponse {
// The list of groups in ascending name order.
// The list of groups in ascending ids order.
repeated temporal.api.cloud.identity.v1.UserGroup groups = 1;
// The next page's token.
string next_page_token = 2;
Expand Down
1 change: 1 addition & 0 deletions temporal/api/cloud/identity/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ message UserGroupSpec {
string name = 1;
// The type of the group. e.g. "googleworkspace"
// This field is immutable. Once set, it cannot be changed
// Allowed values ["google-workspace"].
string type = 2;
// The access assigned to the group
Access access = 3;
Expand Down

0 comments on commit a50075d

Please sign in to comment.