Tableau Server Client (TSC)
中subscriptions.delete
的用法。
用法
subscriptions.delete(subscription_id)
从站点中删除指定的订阅。
REST API:Delete Subscription
参数
名字 | 说明 |
---|---|
subscription_id |
要从站点中删除的订阅的标识符 (id )。 |
异常
错误 | 说明 |
---|---|
Subscription ID undefined |
如果未提供有效的 subscription_id ,则引发异常。 |
示例
# Remove a subscription from the site
# import tableauserverclient as TSC
# tableau_auth = TSC.TableauAuth('USERNAME', 'PASSWORD', site_id='SITE')
# server = TSC.Server('https://SERVERURL')
with server.auth.sign_in(tableau_auth):
server.subscriptions.delete('9f9e9d9c-8b8a-8f8e-7d7c-7b7a6f6d6e6d')
相关用法
- Python Tableau subscription.get_by_id用法及代码示例
- Python Tableau subscription.update用法及代码示例
- Python Tableau subscription.create用法及代码示例
- 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大神的英文原创作品 subscriptions.delete。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。