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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。