tableauserverclient 0.38__py3-none-any.whl → 0.40__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. _version.py +21 -0
  2. tableauserverclient/__init__.py +10 -5
  3. tableauserverclient/bin/__init__.py +3 -0
  4. tableauserverclient/bin/_version.py +3 -3
  5. tableauserverclient/models/__init__.py +9 -0
  6. tableauserverclient/models/collection_item.py +52 -0
  7. tableauserverclient/models/connection_item.py +16 -2
  8. tableauserverclient/models/custom_view_item.py +8 -0
  9. tableauserverclient/models/data_freshness_policy_item.py +3 -3
  10. tableauserverclient/models/datasource_item.py +3 -1
  11. tableauserverclient/models/extensions_item.py +186 -0
  12. tableauserverclient/models/favorites_item.py +21 -8
  13. tableauserverclient/models/flow_item.py +1 -1
  14. tableauserverclient/models/group_item.py +7 -1
  15. tableauserverclient/models/groupset_item.py +14 -0
  16. tableauserverclient/models/interval_item.py +2 -1
  17. tableauserverclient/models/oidc_item.py +82 -0
  18. tableauserverclient/models/permissions_item.py +2 -0
  19. tableauserverclient/models/project_item.py +3 -2
  20. tableauserverclient/models/property_decorators.py +2 -2
  21. tableauserverclient/models/reference_item.py +12 -6
  22. tableauserverclient/models/schedule_item.py +10 -1
  23. tableauserverclient/models/site_item.py +26 -0
  24. tableauserverclient/models/tableau_auth.py +13 -6
  25. tableauserverclient/models/user_item.py +10 -3
  26. tableauserverclient/models/workbook_item.py +2 -2
  27. tableauserverclient/server/endpoint/__init__.py +4 -0
  28. tableauserverclient/server/endpoint/datasources_endpoint.py +152 -22
  29. tableauserverclient/server/endpoint/extensions_endpoint.py +79 -0
  30. tableauserverclient/server/endpoint/flow_task_endpoint.py +1 -1
  31. tableauserverclient/server/endpoint/flows_endpoint.py +5 -4
  32. tableauserverclient/server/endpoint/oidc_endpoint.py +157 -0
  33. tableauserverclient/server/endpoint/projects_endpoint.py +12 -0
  34. tableauserverclient/server/endpoint/schedules_endpoint.py +48 -1
  35. tableauserverclient/server/endpoint/users_endpoint.py +274 -5
  36. tableauserverclient/server/endpoint/views_endpoint.py +23 -0
  37. tableauserverclient/server/endpoint/workbooks_endpoint.py +124 -9
  38. tableauserverclient/server/request_factory.py +281 -2
  39. tableauserverclient/server/request_options.py +12 -2
  40. tableauserverclient/server/server.py +4 -0
  41. {tableauserverclient-0.38.dist-info → tableauserverclient-0.40.dist-info}/METADATA +5 -26
  42. {tableauserverclient-0.38.dist-info → tableauserverclient-0.40.dist-info}/RECORD +45 -39
  43. {tableauserverclient-0.38.dist-info → tableauserverclient-0.40.dist-info}/WHEEL +1 -1
  44. tableauserverclient-0.38.dist-info/licenses/LICENSE.versioneer +0 -7
  45. {tableauserverclient-0.38.dist-info → tableauserverclient-0.40.dist-info}/licenses/LICENSE +0 -0
  46. {tableauserverclient-0.38.dist-info → tableauserverclient-0.40.dist-info}/top_level.txt +0 -0
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.7.1)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,7 +0,0 @@
1
- ## License
2
-
3
- To make Versioneer easier to embed, all its code is dedicated to the public
4
- domain. The `_version.py` that it creates is also in the public domain.
5
- Specifically, both are released under the Creative Commons "Public Domain
6
- Dedication" license (CC0-1.0), as described in
7
- https://creativecommons.org/publicdomain/zero/1.0/ .