Tableau Server Client (TSC)
中groups.populate_users
的用法。
用法
groups.populate_users(group_item, req_options=None)
用用戶列表填充group_item
。
REST API:Get Users in Group
參數
名字 | 說明 |
---|---|
group_item |
group_item 指定要填充用戶信息的組。 |
req_options |
(可選)發送到端點的附加請求選項。 |
異常
Group item missing ID. Group must be retrieved from server first.
:如果未指定 group_item
,則會引發錯誤。
返回
沒有任何。 UserItem
對象列表添加到組 (group_item.users
)。
示例
# import tableauserverclient as TSC
# server = TSC.Server('https://SERVERURL')
#
...
# get the group
all_groups, pagination_item = server.groups.get()
mygroup = all_groups[1]
# get the user information
pagination_item = server.groups.populate_users(mygroup)
# print the names of the users
for user in mygroup.users :
print(user.name)
相關用法
- Python Tableau groups.update用法及代碼示例
- Python Tableau groups.delete用法及代碼示例
- Python Tableau groups.create用法及代碼示例
- Python Tableau groups.remove_user用法及代碼示例
- 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.populate_users。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。