listDatasetVersions

@GET(value = "/v1/namespaces/{namespace}/datasets/{dataset}/versions")
abstract fun listDatasetVersions(@Path(value = "namespace") namespace: String, @Path(value = "dataset") dataset: String, @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<List<DatasetVersion>>

Retrieves a list of versions for a specific dataset.

Return

A Call object representing the API call that can be executed asynchronously.

Parameters

namespace

The namespace of the dataset.

dataset

The name of the dataset.

correlationId

The correlation ID for tracking the request (optional, defaults to a random UUID).