1
votes

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

3 Answers

1
votes

You have to enable the billing to delete file on GCS. When you will enable billing, delete button will be enable. Hope I can help you..

1
votes

I've found a way that the buttons are not disabled. Using the storage browser from the regular project console the address is:

https://console.developers.google.com/project/projectname/storage/browser/projectid.appspot.com/?authuser=0

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/

1
votes

answer is here

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.