Skip to content

Commit

Permalink
change type to host_type
Browse files Browse the repository at this point in the history
  • Loading branch information
codemonkeycxy committed Apr 24, 2024
1 parent f6da1b5 commit 395bd0e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions temporal/api/cloud/cloudservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -241,11 +241,11 @@ 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 = 4;
string namespace = 3;
// Filter groups by their host type - optional.
// Allowed values ["google-workspace"].
string host_type = 4;
// Filter groups by their name - optional.
string name = 5;
}
Expand Down
4 changes: 2 additions & 2 deletions temporal/api/cloud/identity/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ message UserGroupSpec {
// The name of the group as defined in the customer's IdP (e.g. Google group name in Google Workspace)
// The name is immutable. Once set, it cannot be changed
string name = 1;
// The type of the group.
// The type of the service that hosts the group.
// This field is immutable. Once set, it cannot be changed
// Allowed values ["google-workspace"].
string type = 2;
string host_type = 2;
// The access assigned to the group
Access access = 3;
}
Expand Down

0 comments on commit 395bd0e

Please sign in to comment.