Reputation: 3
I have accidentally deleted my application hosted in Google cloud app engine. IS there any way to restore it?
Upvotes: 0
Views: 843
Reputation:
Welcome to Stack Overflow. Thanks for asking your question on the Google App Engine topic.
To answer your question, no, it can't be restored if the Google App Engine service or the version you expect is deleted already.
The hierarchy is as follows - Account > Project > GAE Service > Versions
Whenever you deploy the app to a specific service, an additional new version is created for the service and the traffic is routed to that version. The old version is not deleted by default. In case you have not deleted it, you can select it under https://console.cloud.google.com/appengine/versions page and re-route traffic to it. In case you have deleted the old version manually, then poof - it's permanantly gone.
Note - If you're referring that you have deleted the GCP project itself, then you should be able to restore it within 30 days. Find the support documentation here - https://cloud.google.com/resource-manager/docs/creating-managing-projects#restoring_a_project
Upvotes: 2