Skip to content

Commit

Permalink
Generated from OpenAPI
Browse files Browse the repository at this point in the history
  • Loading branch information
rossgrambo-zz committed Aug 13, 2020
1 parent 0fbd78e commit d219926
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
16 changes: 16 additions & 0 deletions asana/resources/gen/tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,22 @@ def create_tag_for_workspace(self, workspace_gid, params=None, **options):
path = "/workspaces/{workspace_gid}/tags".replace("{workspace_gid}", workspace_gid)
return self.client.post(path, params, **options)

def delete_tag(self, tag_gid, params=None, **options):
"""Delete a tag
:param str tag_gid: (required) Globally unique identifier for the tag.
:param Object params: Parameters for the request
: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 = "/tags/{tag_gid}".replace("{tag_gid}", tag_gid)
return self.client.delete(path, params, **options)

def get_tag(self, tag_gid, params=None, **options):
"""Get a tag
:param str tag_gid: (required) Globally unique identifier for the tag.
Expand Down
8 changes: 8 additions & 0 deletions samples/tags_sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ tags:
result = client.tags.create_tag_for_workspace(workspace_gid, {'field': 'value', 'field': 'value'}, opt_pretty=True)
delete_tag: >-
import asana
client = asana.Client.access_token('PERSONAL_ACCESS_TOKEN')
result = client.tags.delete_tag(tag_gid, opt_pretty=True)
get_tag: >-
import asana
Expand Down

0 comments on commit d219926

Please sign in to comment.