Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Section for Bucket Versioning Statuses #415

Merged
merged 1 commit into from
Jul 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion app/(docs)/dcs/buckets/object-versioning/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,15 @@ Storj's S3 Compatible Object Versioning supports a range of S3 API methods, allo
- **PUT Object**: Adds an object to a bucket. If versioning is enabled, a unique version ID is assigned to the object.
- **GET Object**: Retrieves the current version of an object or a specific version if the version ID is specified.
- **DELETE Object**: Permanently deletes a version of an object if the version ID is provided, or marks the current version as deleted by adding a delete marker.
- **LIST Versions**: Lists all the versions of all objects in a bucket, including delete markers.
- **LIST Versions**: Lists all the versions of all objects in a bucket, including delete markers.

### Bucket Versioning Status

The following are the possible versioning statuses a bucket can be in:

| Status | Description |
| ------------ | ----------------------------------------------------------------------------------------------- |
| Not Supported| The bucket was created prior to the release of object versioning, and versioning cannot be enabled. Create a new bucket to enable versioning. |
| Unversioned | Versioning has not been set on the bucket. |
| Enabled | Versioning is enabled for the bucket. |
| Suspended | Versioning was previously enabled, but is currently suspended. You may re-enable versioning at any time. |
Loading