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


Python Tableau workbooks.populate_connections用法及代码示例


Tableau Server Client (TSC)workbooks.populate_connections的用法。

用法

workbooks.populate_connections(workbook_item)

填充指定工作簿的数据源连接列表。

您必须先填充连接,然后才能迭代连接。

此方法检索指定工作簿的数据源连接信息。 REST API 旨在仅返回您明确要求的信息。查询所有工作簿时,不包括数据源连接信息。使用此方法检索工作簿使用的任何数据源的连接信息。该方法将数据连接列表添加到工作簿项 (workbook_item.connections)。这是 ConnectionItem 的列表。

REST API:Query Workbook Connections

参数

名字 说明
workbook_item workbook_item 指定要使用数据连接信息填充的工作簿。

异常

错误 说明
Workbook item missing ID. Workbook must be retrieved from server first. 如果未指定 workbook_item,则会引发错误。

返回

没有任何。 ConnectionItem 对象列表添加到数据源 (workbook_item.connections)。

示例

# import tableauserverclient as TSC

# server = TSC.Server('https://SERVERURL')
#
   ...

# get the workbook item
  workbook = server.workbooks.get_by_id('1a1b1c1d-2e2f-2a2b-3c3d-3e3f4a4b4c4d')


# get the connection information
  server.workbooks.populate_connections(workbook)

# print information about the data connections for the workbook item
  print("\nThe connections for {0}: ".format(workbook.name))
  print([connection.id for connection in workbook.connections])


  ...



相关用法


注:本文由纯净天空筛选整理自tableau.github.io大神的英文原创作品 workbooks.populate_connections。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。