updatePartition

@PATCH(value = "api/v2/depots/{depot}/collections/{collection}/datasets/{dataset}/partitions")
abstract fun updatePartition(    @Path(value = "depot") depot: String,     @Path(value = "collection") collection: String,     @Path(value = "dataset") dataset: String,     @Body request: String,     @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<Void>

Updates partitions for a dataset.

Return

A Call object with a Void response.

Parameters

depot

The depot name.

collection

The collection name.

dataset

The dataset name.

request

The partition update request as a String.

correlationId

(Optional) The correlation ID for tracking requests.