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