當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Tableau groups.create用法及代碼示例


Tableau Server Client (TSC)groups.create的用法。

用法

create(group_item)

在 Tableau Server 中創建一個新的本地組。

REST API:Create Group

參數

名字 說明
group_item group_item 指定要添加的組。您首先創建一個GroupItem 的新實例並將其傳遞給此方法。

返回添加新的GroupItem.

示例


# 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('My Group')
  newgroup.minimum_site_role = TSC.UserItem.Roles.ExplorerCanPublish

# call the create method
  newgroup = server.groups.create(newgroup)

# print the names of the groups on the server
  all_groups, pagination_item = server.groups.get()
  for group in all_groups :
      print(group.name, group.id)



相關用法


注:本文由純淨天空篩選整理自tableau.github.io大神的英文原創作品 groups.create。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。