forked from Asana/python-asana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjobs.py
19 lines (17 loc) · 1.35 KB
/
jobs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# coding=utf-8
class _Jobs:
def __init__(self, client=None):
self.client = client
def get_job(self, job_gid, params=None, **options):
"""Get a job by id
:param str job_gid: (required) Globally unique identifier for the job.
:param Object params: Parameters for the request
:param **options
- opt_fields {list[str]}: Defines fields to return. Some requests return *compact* representations of objects in order to conserve resources and complete the request more efficiently. Other times requests return more information than you may need. This option allows you to list the exact set of fields that the API should be sure to return for the objects. The field names should be provided as paths, described below. The id of included objects will always be returned, regardless of the field options.
- opt_pretty {bool}: Provides “pretty” output. Provides the response in a “pretty” format. In the case of JSON this means doing proper line breaking and indentation to make it readable. This will take extra time and increase the response size so it is advisable only to use this during debugging.
:return: Object
"""
if params is None:
params = {}
path = "/jobs/{job_gid}".replace("{job_gid}", job_gid)
return self.client.get(path, params, **options)