8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 391fdec commit 5cf4c19Copy full SHA for 5cf4c19
tableauserverclient/models/view_item.py
@@ -50,19 +50,7 @@ def total_views(self):
50
@property
51
def workbook_id(self):
52
return self._workbook_id
53
-
54
- # Add new tags to workbook
55
- def _add_tags(self, workbook_id, tag_set):
56
- url = "{0}/{1}/tags".format(self.baseurl, workbook_id)
57
- add_req = RequestFactory.Tag.add_req(tag_set)
58
- server_response = self.put_request(url, add_req)
59
- return TagItem.from_response(server_response.content)
60
61
- # Delete a workbook's tag by name
62
- def _delete_tag(self, workbook_id, tag_name):
63
- url = "{0}/{1}/tags/{2}".format(self.baseurl, workbook_id, tag_name)
64
- self.delete_request(url)
65
+
66
def _get_initial_tags(self):
67
return self._initial_tags
68
0 commit comments