deleteMeta

@DELETE(value = "api/v2/depots/{depot}/meta")
abstract fun deleteMeta(@Path(value = "depot") depotString: String, @Query(value = "key") keys: String, @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<Void>

Deletes metadata for the specified depot.

Return

A Call object representing the API call.

Parameters

depotString

The name of the depot.

keys

The metadata key to delete.

correlationId

A unique identifier for correlating logs and metrics.