1 Answers
It is not like in AWS, where you delete only the delete flag. You need to copy to a non-versioned URL
gsutil cp gs://storage-lab-zoltan-cli/README-cloudshell.txt#1547219983492482 gs://storage-lab-zoltan-cli/README-cloudshell.txt
and then remove the versioned one
gsutil rm gs://storage-lab-zoltan-cli/README-cloudshell.txt#1547219983492482
or with move in one step:
gsutil mv gs://storage-lab-zoltan-cli/README-cloudshell.txt#1547219983492482 gs://storage-lab-zoltan-cli/README-cloudshell.txt
Good on you for figuring this out and thanks for reporting back so others can learn, too! 😃👍