Version
class Version
All datasets on Redivis are versioned. This interface allows you to view detailed information about the version history of a dataset and manage historic versions. However, if you want to get a dataset's contents at a particular version, construct the dataset with the version tag; e.g. user|organization.dataset(name, tag="1.0")
.
Constructors
| Returns the list of all versions of a dataset. |
| Construct a new version instance based on a specific version tag (e.g., |
Examples
Attributes
| A dict containing the API resource representation of the version. This will be fully populated after calling get(). This will also be partially populated for versions returned via the Dataset.list_versions method. |
Methods
Create a new dataset reference representing this particular version. | |
Delete an unreleased version, or mark an historic version as deleted. | |
Check whether the version exists. | |
Fetch the version, populating the | |
Return the version immediately before this version. If no previous version exists, will return | |
Return the version immediately after this version. If no next version exists, will return |
Last updated