-
Notifications
You must be signed in to change notification settings - Fork 520
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
new feature: List deleted objects that haven't been permanently removed #5138
Comments
There is a problem in #5106. when performing a simple |
Hi, I believe listing deleted objects is an orthogonal feature compared to listing versioned objects. Some services that don't enable versioning can still have features like "soft delete," such as Azure Blob Soft Delete. So all the following cases are possible:
|
Understood. I'll revise this issue accordingly. |
It will be solved by: #5496 |
Feature Description
When performing a
List
request, list all object versions, including the deleted ones.Problem and Solution
Add a
deleted
parameter to theList
operation, when set to true, return all active objects along with deleted objectsAdditional Context
In
S3
, whenversioning
is enabled, a simpleDELETE
cannot permanently remove an object. We can still retrieve the object using theversion
parameter. Therefore, it's useful if aList
request can return all object versions.Are you willing to contribute to the development of this feature?
The text was updated successfully, but these errors were encountered: