Tableau Server Client (TSC)
中sites.create
的用法。
用法
sites.create(site_item)
在服務器上為指定的站點項對象創建一個新站點。
僅限 Tableau Server。
REST API:Create Site
參數
名字 | 說明 |
---|---|
site_item |
您要創建的站點的設置。您需要創建SiteItem 的實例並將其傳遞給create 方法。 |
返回
返回 SiteItem
的新實例。
示例
import tableauserverclient as TSC
# create an instance of server
server = TSC.Server('https://MY-SERVER')
# create shortcut for admin mode
content_users=TSC.SiteItem.AdminMode.ContentAndUsers
# create a new SiteItem
new_site = TSC.SiteItem(name='Tableau', content_url='tableau', admin_mode=content_users, user_quota=15, storage_quota=1000, disable_subscriptions=True)
# call the sites create method with the SiteItem
new_site = server.sites.create(new_site)
相關用法
- Python Tableau sites.delete用法及代碼示例
- Python Tableau sites.update用法及代碼示例
- Python Tableau sites.get_by_id用法及代碼示例
- Python Tableau sites.get用法及代碼示例
- Python Tableau sites.get_by_name用法及代碼示例
- Python Sympy sieve.search()用法及代碼示例
- Python scipy signal.windows.slepian用法及代碼示例
- Python simpy.prevprime()用法及代碼示例
- Python Sympy sieve.mobiusrange()用法及代碼示例
- Python Sympy sieve.totientrange()用法及代碼示例
- Python Sympy sieve.extend_to_no()用法及代碼示例
- Python Sympy sieve.primerange()用法及代碼示例
- Python Sympy sieve.extend()用法及代碼示例
- Python simpy.nextprime()用法及代碼示例
- Python simpy.primerange()用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自tableau.github.io大神的英文原創作品 sites.create。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。