@@ -201,6 +201,7 @@ class GroupManager(CRUDMixin, RESTManager):
201
201
"owned" ,
202
202
"with_custom_attributes" ,
203
203
"min_access_level" ,
204
+ "top_level_only" ,
204
205
)
205
206
_create_attrs = RequiredOptional (
206
207
required = ("name" , "path" ),
@@ -221,6 +222,8 @@ class GroupManager(CRUDMixin, RESTManager):
221
222
"request_access_enabled" ,
222
223
"parent_id" ,
223
224
"default_branch_protection" ,
225
+ "shared_runners_minutes_limit" ,
226
+ "extra_shared_runners_minutes_limit" ,
224
227
),
225
228
)
226
229
_update_attrs = RequiredOptional (
@@ -242,6 +245,11 @@ class GroupManager(CRUDMixin, RESTManager):
242
245
"lfs_enabled" ,
243
246
"request_access_enabled" ,
244
247
"default_branch_protection" ,
248
+ "file_template_project_id" ,
249
+ "shared_runners_minutes_limit" ,
250
+ "extra_shared_runners_minutes_limit" ,
251
+ "prevent_forking_outside_group" ,
252
+ "shared_runners_setting" ,
245
253
),
246
254
)
247
255
_types = {"avatar" : types .ImageAttribute }
@@ -292,4 +300,5 @@ class GroupSubgroupManager(ListMixin, RESTManager):
292
300
"statistics" ,
293
301
"owned" ,
294
302
"with_custom_attributes" ,
303
+ "min_access_level" ,
295
304
)
0 commit comments