File tree 2 files changed +15
-0
lines changed
raystack/frontier/v1beta1
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -1783,6 +1783,9 @@ message ListOrganizationGroupsRequest {
1783
1783
min_len : 3
1784
1784
}];
1785
1785
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 ;
1786
1789
}
1787
1790
1788
1791
message ListOrganizationGroupsResponse {
@@ -2210,10 +2213,17 @@ message ListProjectServiceUsersResponse {
2210
2213
2211
2214
message ListProjectGroupsRequest {
2212
2215
string id = 1 [(validate.rules ) .string.min_len = 3 ];
2216
+ bool with_roles = 2 ;
2213
2217
}
2214
2218
2215
2219
message ListProjectGroupsResponse {
2216
2220
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 ;
2217
2227
}
2218
2228
2219
2229
message EnableProjectRequest {
@@ -2373,6 +2383,7 @@ message CreateGroupRequest {
2373
2383
message GetGroupRequest {
2374
2384
string id = 1 ;
2375
2385
string org_id = 2 ;
2386
+ bool with_members = 3 ;
2376
2387
}
2377
2388
2378
2389
message CreateGroupResponse {
Original file line number Diff line number Diff line change @@ -88,6 +88,10 @@ message Group {
88
88
description : "The time the group was last updated." ,
89
89
example : "\"2023-06-07T05:39:56.961Z\""
90
90
}];
91
+
92
+ repeated User users = 10 [
93
+ (google.api.field_behavior ) = OUTPUT_ONLY
94
+ ];
91
95
}
92
96
93
97
message Role {
You can’t perform that action at this time.
0 commit comments