listDataset

@GET(value = "api/v2/depots/{depot}/collections/{collection}/datasets")
abstract fun listDataset(@Path(value = "depot") depot: String, @Path(value = "collection") collection: String, @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<List<String>>

Lists datasets in a collection.

Return

A Call object with a List of String response.

Parameters

depot

The depot name.

collection

The collection name.

correlationId

(Optional) The correlation ID for tracking requests.