File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
raystack/frontier/v1beta1 Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -1783,6 +1783,9 @@ message ListOrganizationGroupsRequest {
17831783 min_len : 3
17841784 }];
17851785 string state = 3 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field ) = {description : "The state of the group to filter by. It can be enabled or disabled." }];
1786+
1787+ repeated string group_ids = 4 ;
1788+ bool with_members = 5 ;
17861789}
17871790
17881791message ListOrganizationGroupsResponse {
@@ -2210,10 +2213,17 @@ message ListProjectServiceUsersResponse {
22102213
22112214message ListProjectGroupsRequest {
22122215 string id = 1 [(validate.rules ) .string.min_len = 3 ];
2216+ bool with_roles = 2 ;
22132217}
22142218
22152219message ListProjectGroupsResponse {
22162220 repeated Group groups = 1 ;
2221+
2222+ message RolePair {
2223+ string group_id = 1 ;
2224+ repeated Role roles = 2 ;
2225+ }
2226+ repeated RolePair role_pairs = 2 ;
22172227}
22182228
22192229message EnableProjectRequest {
@@ -2373,6 +2383,7 @@ message CreateGroupRequest {
23732383message GetGroupRequest {
23742384 string id = 1 ;
23752385 string org_id = 2 ;
2386+ bool with_members = 3 ;
23762387}
23772388
23782389message CreateGroupResponse {
Original file line number Diff line number Diff line change @@ -88,6 +88,10 @@ message Group {
8888 description : "The time the group was last updated." ,
8989 example : "\"2023-06-07T05:39:56.961Z\""
9090 }];
91+
92+ repeated User users = 10 [
93+ (google.api.field_behavior ) = OUTPUT_ONLY
94+ ];
9195}
9296
9397message Role {
You can’t perform that action at this time.
0 commit comments