Tableau Server Client (TSC)
中tasks.run
的用法。
用法
tasks.run(task_item)
运行指定的数据提取刷新任务。
要运行数据提取刷新任务,您需要首先查找任务task_item
(TaskItem
类)。
REST API:Run Extract Refresh Task
参数
名字 | 说明 |
---|---|
task_item |
您可以将方法传递给任务对象。 |
返回
返回 REST API 响应。
示例
# import tableauserverclient as TSC
# server = TSC.Server('server')
# login, etc.
task = server.tasks.get_by_id('9f9e9d9c-8b8a-8f8e-7d7c-7b7a6f6d6e6d')
server.tasks.run(task)
相关用法
- Python Tableau tasks.delete用法及代码示例
- Python Tableau tasks.get用法及代码示例
- Python Tableau tasks.get_by_id用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python torchaudio.transforms.Fade用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.summary.scalar用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代码示例
- Python tf.raw_ops.TPUReplicatedInput用法及代码示例
- Python tf.raw_ops.Bitcast用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
- Python Pandas tseries.offsets.CustomBusinessHour.onOffset用法及代码示例
- Python torch.special.gammaincc用法及代码示例
- Python typing.get_type_hints用法及代码示例
- Python tensorflow.math.xlog1py()用法及代码示例
- Python tf.compat.v1.Variable.eval用法及代码示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代码示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代码示例
- Python tf.math.special.fresnel_cos用法及代码示例
- Python torch.optim.lr_scheduler.ConstantLR用法及代码示例
- Python tf.keras.applications.inception_resnet_v2.preprocess_input用法及代码示例
注:本文由纯净天空筛选整理自tableau.github.io大神的英文原创作品 tasks.run。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。