How to remove ALL objects in Google Cloud Storage bucket using gsutil
You can remove all the files / objects in a Google Cloud Storage bucket using gsutil like this:
gsutil -m rm -r gs://my-bucket/\*
This will delete all the data in the bucket and there is usually no way to recover the data!