From afc9326a560b03c57c0b5691c6990b2f0ee21692 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 18 May 2026 08:24:12 +0000 Subject: [PATCH] Publish proto files from b8d1722cb --- nebius/iam/v1/session_management_service.proto | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/nebius/iam/v1/session_management_service.proto b/nebius/iam/v1/session_management_service.proto index 4c1eb50..591cfef 100644 --- a/nebius/iam/v1/session_management_service.proto +++ b/nebius/iam/v1/session_management_service.proto @@ -12,16 +12,20 @@ option java_package = "ai.nebius.pub.iam.v1"; service SessionManagementService { option (api_service_name) = "cpl.iam"; + // Revoke sessions/tokens rpc Revoke(RevokeSessionRequest) returns (RevokeSessionResponse); } message RevokeSessionRequest { oneof revoke { - string service_account_id = 3; // revoke all for specific service account - to revoke logout from all sessions for user + // Revoke all tokens for a service account. + string service_account_id = 3; - bool all_my_active = 6; // revoke all active session of current user + // Revoke all active sessions and access tokens for the current user. + bool all_my_active = 6; - string tenant_user_account_id = 7; // revoke all for specific tenant user - to revoke logout from all sessions for user + // Revoke all active sessions and tokens for a tenant user. + string tenant_user_account_id = 7; } }