From 395bd0e8f5c1c2360c8111205da9f8dbd1c2f404 Mon Sep 17 00:00:00 2001 From: Xinyi Chen Date: Wed, 24 Apr 2024 09:04:15 -0700 Subject: [PATCH] change type to host_type --- temporal/api/cloud/cloudservice/v1/request_response.proto | 8 ++++---- temporal/api/cloud/identity/v1/message.proto | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/temporal/api/cloud/cloudservice/v1/request_response.proto b/temporal/api/cloud/cloudservice/v1/request_response.proto index b23c8d3..9cf3ea8 100644 --- a/temporal/api/cloud/cloudservice/v1/request_response.proto +++ b/temporal/api/cloud/cloudservice/v1/request_response.proto @@ -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; } diff --git a/temporal/api/cloud/identity/v1/message.proto b/temporal/api/cloud/identity/v1/message.proto index 41bb237..8bd45e7 100644 --- a/temporal/api/cloud/identity/v1/message.proto +++ b/temporal/api/cloud/identity/v1/message.proto @@ -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; }