addMetadataProperties

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

Adds metadata properties to a dataset.

Return

A Call object with a Void response.

Parameters

depot

The depot name.

collection

The collection name.

dataset

The dataset name.

properties

A Map of properties to add, where the key is the property name and the value is the property value.

correlationId

The correlation ID header (optional, defaults to a random UUID).