Skip to content

Commit d92336b

Browse files
committed
1 parent c5379dc commit d92336b

File tree

4 files changed

+24
-19
lines changed

4 files changed

+24
-19
lines changed

cs3/identity/group/v1beta1/group_api_pb2.py

Lines changed: 10 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cs3/identity/group/v1beta1/group_api_pb2_grpc.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ def HasMember(self, request, context):
109109
raise NotImplementedError('Method not implemented!')
110110

111111
def FindGroups(self, request, context):
112-
"""Finds groups whose names match the specified filter.
112+
"""Finds groups whose names match the specified filters.
113+
MAY return CODE_RESOURCE_EXHAUSTED if the filters return too many responses.
113114
"""
114115
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
115116
context.set_details('Method not implemented!')

cs3/identity/user/v1beta1/user_api_pb2.py

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cs3/identity/user/v1beta1/user_api_pb2_grpc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ def GetUserGroups(self, request, context):
9797
raise NotImplementedError('Method not implemented!')
9898

9999
def FindUsers(self, request, context):
100-
"""Finds users by any attribute of the user.
101-
TODO(labkode): to define the filters that make more sense.
100+
"""Finds users that match the specified filters.
101+
MAY return CODE_RESOURCE_EXHAUSTED if the filters return too many responses.
102102
"""
103103
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
104104
context.set_details('Method not implemented!')

0 commit comments

Comments
 (0)