Tableau Server Client (TSC)
中groups.create_AD_group
的用法。
用法
create_AD_group(group_item, asJob=False)
在 Tableau Server 中創建活動目錄組。
REST API:Create Group
參數
名字 | 說明 |
---|---|
group_item |
group_item 指定要添加的組。您首先創建一個GroupItem 的新實例並將其傳遞給此方法。 |
asJob |
用於指定異步操作的布爾標誌。如果設置為 True ,則返回值將是包含排隊作業狀態的 JobItem。見JobItem class。 |
返回返回創建的GroupItem
或一個JobItem
如果 asJob 標誌設置為 True。
示例
# Create a new group
# import tableauserverclient as TSC
# tableau_auth = TSC.TableauAuth('USERNAME', 'PASSWORD')
# server = TSC.Server('https://SERVERURL')
# create a new instance with the group name
newgroup = TSC.GroupItem('AD_Group_Name', 'AD_Domain_Name')
newgroup.minimum_site_role = TSC.UserItem.Roles.SiteAdministratorExplorer
newgroup.license_mode = TSC.GroupItem.LicenseMode.onSync
# call the create method
newgroup = server.groups.create_AD_group(newgroup)
# call the create method asynchronously
newgroup_job = server.groups.create_AD_group(newgroup, asJob=True)
相關用法
- Python Tableau groups.create用法及代碼示例
- Python Tableau groups.update用法及代碼示例
- Python Tableau groups.delete用法及代碼示例
- Python Tableau groups.remove_user用法及代碼示例
- Python Tableau groups.populate_users用法及代碼示例
- Python Tableau groups.get用法及代碼示例
- 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.create_AD_group。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。