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


Python Tableau subscription.update用法及代码示例


Tableau Server Client (TSC)subscription.update的用法。

用法

subscription.update(subscription_item)

更新特定订阅。要更新订阅,您必须首先使用 subscriptions.get()subscriptions.get_by_id() 方法从服务器查询它。

REST API:Update Subscription

参数

名字 说明
subscription_item 指定要订阅的用户、要订阅的内容、与订阅相关联的计划以及订阅的其他元数据。

返回

返回更新后的 SubscriptionItem 对象。

示例

# Fetch an existing subscription from server. You can also use the subscriptions.get() method
sub = server.subscriptions.get_by_id('59cec1ec-15a0-4eb3-bc9d-056b87aa0a18')

# Set update-able fields. Any of these can be added or removed.
sub.subject = "Updated subject"
sub.attach_image = True
sub.attach_pdf = True
sub.page_orientation = TSC.PDFRequestOptions.Orientation.Landscape
sub.page_size_option = TSC.PDFRequestOptions.PageType.Folio
sub.suspended = True
sub.schedule_id = 'cf2f4465-9c4b-4536-b7cc-59994e9b7dde'
sub.send_if_view_empty = True

# Create the new subscription on the site you are logged in.
sub = server.subscriptions.update(sub)
print(new_sub.subject)



相关用法


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