@@ -7,7 +7,7 @@ See this documentation for details about the APIs:
7
7
8
8
- [ Legacy APIs] ( https://dominodatalab.github.io/api-docs/ )
9
9
10
- The latest released version of ` python-domino ` is ` 1.4.6 ` .
10
+ The latest released version of ` python-domino ` is ` 1.4.7 ` .
11
11
12
12
# Version compatibility matrix
13
13
@@ -22,7 +22,7 @@ Domino:
22
22
| 5.5.0 or higher | [ 1.2.2] ( https://github.com/dominodatalab/python-domino/archive/refs/tags/Release-1.2.2.zip ) or Higher |
23
23
| 5.10.0 or higher | [ 1.3.1] ( https://github.com/dominodatalab/python-domino/archive/refs/tags/Release-1.3.1.zip ) or Higher |
24
24
| 5.11.0 or higher | [ 1.4.1] ( https://github.com/dominodatalab/python-domino/archive/refs/tags/Release-1.4.1.zip ) or Higher |
25
- | 6.0.0 or higher | [ 1.4.6 ] ( https://github.com/dominodatalab/python-domino/archive/refs/tags/Release-1.4.6 .zip ) or Higher |
25
+ | 6.0.0 or higher | [ 1.4.7 ] ( https://github.com/dominodatalab/python-domino/archive/refs/tags/Release-1.4.7 .zip ) or Higher |
26
26
27
27
# Development
28
28
112
112
# Budgets and Billing Tags
113
113
114
114
See
115
- [ ` example_budget_manager.py ` ] ( https://github.com/dominodatalab/python-domino/blob/release-1.4.6 /examples/example_budget_manager.py )
115
+ [ ` example_budget_manager.py ` ] ( https://github.com/dominodatalab/python-domino/blob/release-1.4.7 /examples/example_budget_manager.py )
116
116
for example code.
117
117
118
118
### budget_defaults_list()
@@ -604,13 +604,25 @@ Stop the Job (execution) in the project.
604
604
- * commit_results (boolean):* (Defaults to ` true ` ) If ` false ` , the
605
605
job results are not committed.
606
606
607
- ### jobs_list(project_id, page_size= None):
607
+ ### jobs_list(self, project_id: str, order_by: str = "number", sort_by: str = "desc", page_size: Optional [ int ] = None, page_no: int = 1, show_archived: str = "false", status: str = "all", tag: Optional [ str ] = None):
608
608
609
609
Lists job history for a given project_id
610
610
611
- - * project_id (string):* The project to query.
611
+ - * project_id (string):* The project to query
612
612
613
- - * page_size (string):* How many results to return (default: 3).
613
+ - * order_by (string):* Field on which sort has to be applied– e.g. "title" (default "number")
614
+
615
+ - * sort_by (string):* Sort "desc" (default) or "asc"
616
+
617
+ - * page_size (integer):* The number of jobs to return (default: 3)
618
+
619
+ - * page_no (integer):* Page number to fetch (default: 1).
620
+
621
+ - * show_archived (string):* Show archived jobs in results (default: false)
622
+
623
+ - * status (string):* Status of jobs to fetch– e.g. "completed" (default: "all")
624
+
625
+ - * tag (string):* Optional tag filter
614
626
615
627
### job_status(job_id):
616
628
0 commit comments