Recovering a Deleted Object Version
On Compute Cloud@Customer, recovering a deleted object version is as simple as deleting the delete marker that was created when you deleted the latest version of an object. The previous version of the object listed just below the delete marker is recovered and becomes the latest version of the object.
To perform this task, you need to know which object is marked for deletion. To obtain
that information, list the objects in the bucket. See Viewing Object Versions and Details. In the output, locate the object
version that has "is-delete-marker": true
.
Use the version-id of that object with the delete command to delete the delete marker.
If an object has a version-id
of null
, there is
only one version of the object. To delete this object marker, omit the
--version-id
argument.
This task isn't available in the Console.
Use the oci os object delete command and required parameters to remove the delete marker from an object.
Syntax:
oci os object delete --namespace-name <object_storage_namespace> --bucket-name <bucket_name> --object-name <object_name> --version-id <bucket_version_id> [OPTIONS]
Example:
oci os object delete --namespace-name examplenamespace \ --bucket-name MyBucket --object-name application.log --version-id 6ce3eb93-8850-4732-8949-uniqueID Are you sure you want to delete this resource? [y/N]: y
For a complete list of CLI commands, flags, and options, see the Command Line Reference.
Use the DeleteObject operation to remove the delete marker from an object.
For information about using the API and signing requests, see REST APIs and Security Credentials. For information about SDKs, see Software Development Kits and Command Line Interface.