A batch centroid provides an easy way to compute a centroid for each instance in a dataset in only one request. To create a new batch centroid you need a cluster/id and a dataset/id. The complete and updated reference with all available parameters is in our documentation website.
Inheritance: Response
 /// <summary>
 /// Create a Batch Centroid
 /// </summary>
 /// <param name="cluster">A Cluster instance</param>
 /// <param name="name">The name you want to give to the new batch centroid. </param>
 /// <param name="arguments">Specifies other arguments for the batch centroid.</param>
 public Task<BatchCentroid> CreateBatchCentroid(Cluster cluster, string name = null,
                                     BatchCentroid.Arguments arguments = null)
 {
     arguments = arguments ?? new BatchCentroid.Arguments();
     if (!string.IsNullOrWhiteSpace(name))
         arguments.Name = name;
     arguments.Cluster = cluster.Resource;
     return Create<BatchCentroid>(arguments);
 }
 /// <summary>
 /// Create a BatchCentroid using supplied arguments.
 /// </summary>
 public Task<BatchCentroid> CreateBatchCentroid(BatchCentroid.Arguments arguments)
 {
     return Create<BatchCentroid>(arguments);
 }