Tableau Server Client (TSC)
中SiteItem
的用法。
用法
SiteItem(name, content_url, admin_mode=None, user_quota=None, storage_quota=None,
disable_subscriptions=False, subscribe_others_enabled=True, revision_history_enabled=False)
SiteItem
類包含 Tableau Server 或 Tableau Online 上站點資源的成員或屬性。 SiteItem
類定義您可以從 Tableau Server 或 Tableau Online 請求或查詢的信息。類成員對應於服務器請求或響應負載的屬性。
屬性
屬性 | 說明 |
---|---|
name |
站點的名稱。默認站點的名稱是“”。 |
content_url |
站點的路徑。 |
admin_mode |
(可選)僅適用於 Tableau Server。指定ContentAndUsers 允許站點管理員使用服務器接口和選項卡命令添加和刪除用戶的命令。 (指定此選項不會授予站點管理員使用 REST API 管理用戶的權限。)指定ContentOnly 以防止站點管理員添加或刪除用戶。 (服務器管理員可以隨時添加或刪除用戶。) |
user_quota |
(可選)指定站點的最大用戶數。如果不指定此值,則限製取決於為服務器配置的許可類型。對於基於用戶的許可證,最大用戶數由許可證設置。對於基於內核的許可,用戶數量沒有限製。如果您指定最大值,則僅計算許可用戶,而排除服務器管理員。 |
storage_quota |
(可選)指定新站點的最大空間量,以兆字節為單位。如果您設置了配額並且網站超過了配額,則將阻止發布者上傳新內容,直到網站再次低於限製。 |
disable_subscriptions |
(可選)指定true 以防止用戶能夠訂閱指定站點上的工作簿。默認值為 false 。 |
subscribe_others_enabled |
(可選)指定 false 以防止服務器管理員、站點管理員以及項目或內容所有者能夠為其他用戶訂閱指定站點上的工作簿。默認值為 true 。 |
revision_history_enabled |
(可選)指定 true 以啟用內容資源(工作簿和數據源)的修訂曆史記錄。默認值為 false 。 |
revision_limit |
(可選)指定允許的內容源(工作簿或數據源)的修訂數量。在 Tableau Server 上,默認值為 25。 |
state |
顯示站點的當前狀態(Active 或 Suspended )。 |
示例
# create a new instance of a SiteItem
new_site = TSC.SiteItem(name='Tableau', content_url='tableau', admin_mode='ContentAndUsers', user_quota=15, storage_quota=1000, disable_subscriptions=True)
源文件:models/site_item.py
相關用法
- Python Scipy integrate.quadrature()用法及代碼示例
- Python Scipy stats.hypsecant.moment()用法及代碼示例
- Python String Center()用法及代碼示例
- Python Scipy stats.hypsecant.median()用法及代碼示例
- Python Sympy Ellipse.equation()用法及代碼示例
- Python String decode()用法及代碼示例
- Python String轉Binary用法及代碼示例
- Python String count()用法及代碼示例
- Python Scipy stats.halfgennorm.fit()用法及代碼示例
- Python Tableau Server用法及代碼示例
- Python Sympy encloses_point()用法及代碼示例
- Python String join()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python Scipy stats.halfgennorm.stats()用法及代碼示例
- Python Set issubset()用法及代碼示例
- Python Sympy Plane.perpendicular_plane()用法及代碼示例
- Python Scipy stats.halfgennorm.moment()用法及代碼示例
- Python Scipy stats.halfgennorm.std()用法及代碼示例
- Python Scipy stats.halfgennorm.logcdf()用法及代碼示例
- Python String轉Long用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python Set issuperset()用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python Sympy Segment.perpendicular_bisector()用法及代碼示例
- Python SymPy Permutation.commutator()用法及代碼示例
注:本文由純淨天空篩選整理自tableau.github.io大神的英文原創作品 SiteItem class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。