Anthony Kong
Anthony Kong

Reputation: 40754

How to selectively delete Google App Engine data backup set in google cloud storage via the admin console?

I want to delete old backup in Google Cloud Storage.

The 'delete' button is not enabled after items are selected

enter image description here

Why 'delete' is disabled?

Upvotes: 0

Views: 88

Answers (1)

dprobhat
dprobhat

Reputation: 152

The web interface is not working (still now). But you can use "gsutil". It is a command line tool to access the cloud storage. For this you have to download and install the Google Cloud SDK. Perform gcloud init and gcloud auth login. Select your project and login into the cloud platform.

Now from command line you can use these commands-

 gsutil rm gs://<bucket-url>/<file-name> .........to delete a file
 gsutil rm -r gs://<bucket-url>...................to delete a bucket 

Upvotes: 1

Related Questions