Tableau Server Client (TSC)
中groups.update
的用法。
用法
groups.update(group_item, as_job=False)
更新 Tableau Server 中的組。
REST API:Update Group
參數
名字 | 說明 |
---|---|
group_item |
group_item 指定要更新的組。 |
as_job |
(可選)如果此值設置為 True ,更新操作將是異步的並返回一個 JobItem。這僅支持 Active Directory 組。默認情況下,此值設置為 False 。 |
異常
錯誤 | 說明 |
---|---|
Group item missing ID. |
如果 group_item 缺少 id 屬性,則會引發錯誤。 |
Local groups cannot be updated asynchronously. |
對於本地組,as_job 屬性設置為 True 。 |
返回
更新的GroupItem
對象。如果 as_job
設置為 True
,則將返回 JobItem
。
示例
# Fetch an existing group from server.
groups, pagination = server.groups.get()
group = groups[0]
# Set update-able fields. Any of these can be added or removed.
## Local group
group.name = "new group name"
group.minimum_site_role = TSC.UserItem.Roles.SiteAdministratorExplorer
## Active Directory group
group.minimum_site_role = TSC.UserItem.Roles.SiteAdministratorExplorer
group.license_mode = TSC.GroupItem.LicenseMode.onLogin
# Update group - synchronous
group = server.groups.update(group)
# Update group - asynchronous (only for Active Directory groups)
job = server.groups.update(group, as_job=True)
相關用法
- Python Tableau groups.delete用法及代碼示例
- Python Tableau groups.create用法及代碼示例
- Python Tableau groups.remove_user用法及代碼示例
- Python Tableau groups.populate_users用法及代碼示例
- Python Tableau groups.get用法及代碼示例
- Python Tableau groups.create_AD_group用法及代碼示例
- Python Tableau groups.add_user用法及代碼示例
- Python numpy string greater_equal()用法及代碼示例
- Python graphlib.TopologicalSorter用法及代碼示例
- Python graphlib.TopologicalSorter.static_order用法及代碼示例
- Python Tkinter grid()用法及代碼示例
- Python graphlib.TopologicalSorter.is_active用法及代碼示例
- Python PIL getbands() and getextrema()用法及代碼示例
- Python PIL getpixel()用法及代碼示例
- Python getattr()用法及代碼示例
- Python OpenCV getTrackbarPos()用法及代碼示例
- Python OpenCV getgaussiankernel()用法及代碼示例
- Python gzip.compress(s)用法及代碼示例
- Python globals()用法及代碼示例
- Python OpenCV getRotationMatrix2D()用法及代碼示例
- Python gcd()用法及代碼示例
- Python PIL getbands()用法及代碼示例
- Python gettext.GNUTranslations.ngettext用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python PIL getcolors()用法及代碼示例
注:本文由純淨天空篩選整理自tableau.github.io大神的英文原創作品 groups.update。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。