listTableSnapshots

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

Retrieves the list of table snapshots for a dataset.

Return

A Call object with an Iterable of SnapshotResponse.

Parameters

depot

The depot name.

collection

The collection name.

dataset

The dataset name.

correlationId

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