-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #126 from Asana/openapi-sync
Generated from OpenAPI
- Loading branch information
Showing
6 changed files
with
335 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.10.4 | ||
0.10.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,210 @@ | ||
# coding=utf-8 | ||
class _Goals: | ||
|
||
def __init__(self, client=None): | ||
self.client = client | ||
|
||
def add_followers(self, params=None, **options): | ||
"""Add a collaborator to a goal | ||
: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 = "/goals/{goal_gid}/addFollowers" | ||
return self.client.post(path, params, **options) | ||
|
||
def add_subgoal(self, params=None, **options): | ||
"""Add a subgoal to a parent goal | ||
: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 = "/goals/{goal_gid}/addSubgoal" | ||
return self.client.post(path, params, **options) | ||
|
||
def add_supporting_work_for_goal(self, params=None, **options): | ||
"""Add a project/portfolio as supporting work for a goal. | ||
: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 = "/goals/{goal_gid}/addSupportingWork" | ||
return self.client.post(path, params, **options) | ||
|
||
def create_goal_metric(self, params=None, **options): | ||
"""Create a goal metric | ||
: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 = "/goals/{goal_gid}/setMetric" | ||
return self.client.post(path, params, **options) | ||
|
||
def delete_goal(self, goal_gid, params=None, **options): | ||
"""Delete a goal | ||
:param str goal_gid: (required) Globally unique identifier for the goal. | ||
: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 = "/goals/{goal_gid}".replace("{goal_gid}", goal_gid) | ||
return self.client.delete(path, params, **options) | ||
|
||
def get_goal(self, goal_gid, params=None, **options): | ||
"""Get a goal | ||
:param str goal_gid: (required) Globally unique identifier for the goal. | ||
: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 = "/goals/{goal_gid}".replace("{goal_gid}", goal_gid) | ||
return self.client.get(path, params, **options) | ||
|
||
def get_goals(self, params=None, **options): | ||
"""Get goals | ||
:param Object params: Parameters for the request | ||
- portfolio {str}: Globally unique identifier for supporting portfolio. | ||
- project {str}: Globally unique identifier for supporting project. | ||
- is_workspace_level {bool}: Filter to goals with is_workspace_level set to query value. Must be used with the workspace parameter. | ||
- team {str}: Globally unique identifier for the team. | ||
- workspace {str}: Globally unique identifier for the workspace. | ||
:param **options | ||
- offset {str}: Offset token. An offset to the next page returned by the API. A pagination request will return an offset token, which can be used as an input parameter to the next request. If an offset is not passed in, the API will return the first page of results. 'Note: You can only pass in an offset that was returned to you via a previously paginated request.' | ||
- limit {int}: Results per page. The number of objects to return per page. The value must be between 1 and 100. | ||
- 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 = "/goals" | ||
return self.client.get_collection(path, params, **options) | ||
|
||
def get_parent_goals_for_goal(self, params=None, **options): | ||
"""Get parent goals from a goal | ||
: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 = "/goals/{goal_gid}/parentGoals" | ||
return self.client.get_collection(path, params, **options) | ||
|
||
def get_subgoals_for_goal(self, params=None, **options): | ||
"""Get subgoals from a goal | ||
: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 = "/goals/{goal_gid}/subgoals" | ||
return self.client.get_collection(path, params, **options) | ||
|
||
def remove_followers(self, params=None, **options): | ||
"""Remove a collaborator from a goal | ||
: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 = "/goals/{goal_gid}/removeFollowers" | ||
return self.client.post(path, params, **options) | ||
|
||
def remove_subgoal(self, params=None, **options): | ||
"""Remove a subgoal from a goal | ||
: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 = "/goals/{goal_gid}/removeSubgoal" | ||
return self.client.post(path, params, **options) | ||
|
||
def remove_supporting_work_for_goal(self, params=None, **options): | ||
"""Remove a project/portfolio as supporting work for a goal. | ||
: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 = "/goals/{goal_gid}/removeSupportingWork" | ||
return self.client.post(path, params, **options) | ||
|
||
def supporting_work(self, params=None, **options): | ||
"""Get supporting work from a goal | ||
: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 = "/goals/{goal_gid}/supportingWork" | ||
return self.client.get_collection(path, params, **options) | ||
|
||
def update_goal(self, goal_gid, params=None, **options): | ||
"""Update a goal | ||
:param str goal_gid: (required) Globally unique identifier for the goal. | ||
: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 = "/goals/{goal_gid}".replace("{goal_gid}", goal_gid) | ||
return self.client.put(path, params, **options) | ||
|
||
def update_goal_metric(self, params=None, **options): | ||
"""Update a goal metric | ||
: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 = "/goals/{goal_gid}/setMetricCurrentValue" | ||
return self.client.post(path, params, **options) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION = '0.10.4' | ||
VERSION = '0.10.5' |
Oops, something went wrong.