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)
相关用法
- Python Tableau subscription.get_by_id用法及代码示例
- Python Tableau subscription.create用法及代码示例
- Python Tableau subscriptions.delete用法及代码示例
- Python subprocess.run用法及代码示例
- Python subprocess.Popen用法及代码示例
- Python subprocess.check_output用法及代码示例
- Python subprocess.getstatusoutput用法及代码示例
- Python subprocess.Popen.communicate用法及代码示例
- Python super()用法及代码示例
- Python sum()用法及代码示例
- Python super用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python scipy.ndimage.binary_opening用法及代码示例
- Python scipy.signal.windows.tukey用法及代码示例
- Python scipy.stats.mood用法及代码示例
- Python str.isidentifier用法及代码示例
- Python sklearn.metrics.fbeta_score用法及代码示例
- Python scipy.fft.ihfftn用法及代码示例
- Python scipy.stats.normaltest用法及代码示例
- Python scipy.ndimage.convolve1d用法及代码示例
- Python scipy.stats.arcsine用法及代码示例
- Python scipy.interpolate.UnivariateSpline.antiderivative用法及代码示例
- Python scipy.linalg.hadamard用法及代码示例
- Python socket.create_server用法及代码示例
- Python sklearn.linear_model.PassiveAggressiveRegressor用法及代码示例
注:本文由纯净天空筛选整理自tableau.github.io大神的英文原创作品 subscription.update。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。