@@ -3997,6 +3997,16 @@ class ProjectImportManager(GetWithoutIdMixin, RESTManager):
3997
3997
_from_parent_attrs = {"project_id" :"id" }
3998
3998
3999
3999
4000
+ class ProjectAdditionalStatistics (RefreshMixin ,RESTObject ):
4001
+ _id_attr = None
4002
+
4003
+
4004
+ class ProjectAdditionalStatisticsManager (GetWithoutIdMixin ,RESTManager ):
4005
+ _path = "/projects/%(project_id)s/statistics"
4006
+ _obj_cls = ProjectAdditionalStatistics
4007
+ _from_parent_attrs = {"project_id" :"id" }
4008
+
4009
+
4000
4010
class Project (SaveMixin ,ObjectDeleteMixin ,RESTObject ):
4001
4011
_short_print_attr = "path"
4002
4012
_managers = (
@@ -4042,6 +4052,7 @@ class Project(SaveMixin, ObjectDeleteMixin, RESTObject):
4042
4052
("variables" ,"ProjectVariableManager" ),
4043
4053
("wikis" ,"ProjectWikiManager" ),
4044
4054
("clusters" ,"ProjectClusterManager" ),
4055
+ ("additionalstatistics" ,"ProjectAdditionalStatisticsManager" ),
4045
4056
)
4046
4057
4047
4058
@cli .register_custom_action ("Project" , ("submodule" ,"branch" ,"commit_sha" ))