@@ -37,7 +37,7 @@ class Environments(BaseModel):
37
37
exclude : Optional [tuple [str , ...]] = None
38
38
include : Optional [tuple [Union [str , MappingProxyType [str , Any ]], ...]] = None
39
39
interval : Optional [int ] = None
40
- limit : Optional [int ] = Field (None , description = 'Maximum number of environments to be processed.\n ' )
40
+ limit : Optional [int ] = Field (None , description = 'Maximum number of environments processed.\n ' )
41
41
42
42
43
43
class MetricPatterns (BaseModel ):
@@ -57,7 +57,7 @@ class ProjectGroups(BaseModel):
57
57
exclude : Optional [tuple [str , ...]] = None
58
58
include : Optional [tuple [Union [str , MappingProxyType [str , Any ]], ...]] = None
59
59
interval : Optional [int ] = None
60
- limit : Optional [int ] = Field (None , description = 'Maximum number of project groups to be processed.\n ' )
60
+ limit : Optional [int ] = Field (None , description = 'Maximum number of project groups processed.\n ' )
61
61
62
62
63
63
class Projects (BaseModel ):
@@ -68,7 +68,7 @@ class Projects(BaseModel):
68
68
exclude : Optional [tuple [str , ...]] = None
69
69
include : Optional [tuple [Union [str , MappingProxyType [str , Any ]], ...]] = None
70
70
interval : Optional [int ] = None
71
- limit : Optional [int ] = Field (None , description = 'Maximum number of projects to be processed.\n ' )
71
+ limit : Optional [int ] = Field (None , description = 'Maximum number of projects processed.\n ' )
72
72
73
73
74
74
class Proxy (BaseModel ):
0 commit comments