core.bulk ========= Will sequentially call `method` with arguments from the `params` list. For example, running call("core.bulk", "zfs.snapshot.delete", [["tank@snap-1", true], ["tank@snap-2", false]]) will call call("zfs.snapshot.delete", "tank@snap-1", true) call("zfs.snapshot.delete", "tank@snap-2", false) If the first call fails and the seconds succeeds (returning `true`), the result of the overall call will be: [ {"result": null, "error": "Error deleting snapshot"}, {"result": true, "error": null} ] Important note: the execution status of `core.bulk` will always be a `SUCCESS` (unless an unlikely internal error occurs). Caller must check for individual call results to ensure the absence of any call errors. This method is a job. .. raw:: html
Method name to execute for each parameter set.
Array of parameter arrays, each representing one method call.
No Additional ItemsFormat string for job progress (e.g. "Deleting snapshot {0[dataset]}@{0[name]}").
Array of results for each bulk operation item.
No Additional ItemsJob ID for this bulk operation item or null if it failed to start.
Error message if this item failed or null on success.
Result data returned by this bulk operation item.