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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。