Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
1.6.0
Hi,
I want to do a reindex and set slices to auto but I don’t see how in the .net library as slices is set to a nullable long so not sure how I set that to ‘auto’
///<summary>The number of slices this task should be divided into. Defaults to 1, meaning the task isn't sliced into subtasks. Can be set to `auto`.</summary>
public long? Slices
{
get => Q<long? >("slices");
set => Q("slices", value);
}