@@ -470,6 +470,11 @@ def issues(self, **kwargs):
470
470
"""List issues related to this milestone.
471
471
472
472
Args:
473
+ all (bool): If True, return all the items, without pagination
474
+ per_page (int): Number of items to retrieve per request
475
+ page (int): ID of the page to return (starts with page 1)
476
+ as_list (bool): If set to False and no pagination option is
477
+ defined, return a generator instead of a list
473
478
**kwargs: Extra options to send to the server (e.g. sudo)
474
479
475
480
Raises:
@@ -494,6 +499,11 @@ def merge_requests(self, **kwargs):
494
499
"""List the merge requests related to this milestone.
495
500
496
501
Args:
502
+ all (bool): If True, return all the items, without pagination
503
+ per_page (int): Number of items to retrieve per request
504
+ page (int): ID of the page to return (starts with page 1)
505
+ as_list (bool): If set to False and no pagination option is
506
+ defined, return a generator instead of a list
497
507
**kwargs: Extra options to send to the server (e.g. sudo)
498
508
499
509
Raises:
@@ -1353,6 +1363,11 @@ def closes_issues(self, **kwargs):
1353
1363
"""List issues that will close on merge."
1354
1364
1355
1365
Args:
1366
+ all (bool): If True, return all the items, without pagination
1367
+ per_page (int): Number of items to retrieve per request
1368
+ page (int): ID of the page to return (starts with page 1)
1369
+ as_list (bool): If set to False and no pagination option is
1370
+ defined, return a generator instead of a list
1356
1371
**kwargs: Extra options to send to the server (e.g. sudo)
1357
1372
1358
1373
Raises:
@@ -1375,6 +1390,11 @@ def commits(self, **kwargs):
1375
1390
"""List the merge request commits.
1376
1391
1377
1392
Args:
1393
+ all (bool): If True, return all the items, without pagination
1394
+ per_page (int): Number of items to retrieve per request
1395
+ page (int): ID of the page to return (starts with page 1)
1396
+ as_list (bool): If set to False and no pagination option is
1397
+ defined, return a generator instead of a list
1378
1398
**kwargs: Extra options to send to the server (e.g. sudo)
1379
1399
1380
1400
Raises:
@@ -1477,6 +1497,11 @@ def issues(self, **kwargs):
1477
1497
"""List issues related to this milestone.
1478
1498
1479
1499
Args:
1500
+ all (bool): If True, return all the items, without pagination
1501
+ per_page (int): Number of items to retrieve per request
1502
+ page (int): ID of the page to return (starts with page 1)
1503
+ as_list (bool): If set to False and no pagination option is
1504
+ defined, return a generator instead of a list
1480
1505
**kwargs: Extra options to send to the server (e.g. sudo)
1481
1506
1482
1507
Raises:
@@ -1501,6 +1526,11 @@ def merge_requests(self, **kwargs):
1501
1526
"""List the merge requests related to this milestone.
1502
1527
1503
1528
Args:
1529
+ all (bool): If True, return all the items, without pagination
1530
+ per_page (int): Number of items to retrieve per request
1531
+ page (int): ID of the page to return (starts with page 1)
1532
+ as_list (bool): If set to False and no pagination option is
1533
+ defined, return a generator instead of a list
1504
1534
**kwargs: Extra options to send to the server (e.g. sudo)
1505
1535
1506
1536
Raises:
@@ -2135,6 +2165,11 @@ def repository_tree(self, path='', ref='', **kwargs):
2135
2165
Args:
2136
2166
path (str): Path of the top folder (/ by default)
2137
2167
ref (str): Reference to a commit or branch
2168
+ all (bool): If True, return all the items, without pagination
2169
+ per_page (int): Number of items to retrieve per request
2170
+ page (int): ID of the page to return (starts with page 1)
2171
+ as_list (bool): If set to False and no pagination option is
2172
+ defined, return a generator instead of a list
2138
2173
**kwargs: Extra options to send to the server (e.g. sudo)
2139
2174
2140
2175
Raises:
@@ -2229,6 +2264,11 @@ def repository_contributors(self, **kwargs):
2229
2264
"""Return a list of contributors for the project.
2230
2265
2231
2266
Args:
2267
+ all (bool): If True, return all the items, without pagination
2268
+ per_page (int): Number of items to retrieve per request
2269
+ page (int): ID of the page to return (starts with page 1)
2270
+ as_list (bool): If set to False and no pagination option is
2271
+ defined, return a generator instead of a list
2232
2272
**kwargs: Extra options to send to the server (e.g. sudo)
2233
2273
2234
2274
Raises:
0 commit comments