I've been looking at Google Cloud Storage. I upload files in my Java program by calling BlobstoreService.createUploadUrl with UploadOptions specifying the default bucket name for the cloud project. The files appear in the console under the default cloud storage bucket, but the delete button is always disabled. Obviously I'm missing something.
3 Answers
I've found a way that the buttons are not disabled. Using the storage browser from the regular project console the address is:
The buttons are disabled at that address. But this one seems to have the buttons working fine:
https://console.developers.google.com/storage/browser/projectid.appspot.com/
The files delete with gsutil, no billing enable required.
The disabled buttons referred to in the question are not consistent with this documentation which says:
"Each app can have a default Google Cloud Storage (GCS) bucket that is ready to use with no further activations, configurations, or permission settings required."
Or this which states:
"The bucket is simply there and ready to use, with a free quota. You do not need to make your app billable if you use this option.
Looks like the disabling is a mistake.