当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。