getMeta

@GET(value = "api/v2/depots/{depot}/meta")
abstract fun getMeta(@Path(value = "depot") depot: String, @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<Map<String, Any>>

Retrieves the metadata for the specified depot.

Return

A Call object representing the API call.

Parameters

depot

The name of the depot.

correlationId

A unique identifier for correlating logs and metrics.