<PackageReference Include="Azure.Storage.Files.DataLake" Version="12.26.0-beta.1" />

Azure.Storage.Files.DataLake.Models.AccessControlChangeOptions

AccessControlChangeOptions contain knobs used to customize recursive Access Control operations.
public int? BatchSize { get; set; }

Optional. If data set size exceeds batch size then operation will be split into multiple requests so that progress can be tracked. Batch size should be between 1 and 2000. The default when unspecified is 2000.

public bool? ContinueOnFailure { get; set; }

Optional. If set to false, the operation will terminate quickly on encountering user failures. If true, the operation will ignore user failures and proceed with the operation on other sub-entities of the directory.

public int? MaxBatches { get; set; }

Optional. Defines maximum number of batches that single change Access Control operation can execute. If maximum is reached before all subpaths are processed then continuation token can be used to resume operation. Empty value indicates that maximum number of batches in unbound and operation continues till end.

public IProgress<Response<AccessControlChanges>> ProgressHandler { get; set; }

Optional. Progress<T> callback where caller can track progress of the operation as well as collect paths that failed to change Access Control.