How do I completely uninstall an App Engine instance?

I decided to go with Google Compute Engine instead of App Engine.

I want to completely disable App Engine.

I have already deployed an empty project (app.yaml + empty index.php) instead of the old one to save it to disk, but the url (* .appspot.com) is still available and it will instantiate on access.

How can I disable this?

+3


source to share


4 answers


If you go to application settings

the console and then Disable or Delete Application

, you can stop the instances by starting them, shutting down the application, or queuing it up for actual deletion.

You may need to switch to the "original" console, as I'm not sure if this option is still available on the new cloud console.



This link can help in getting this source console if needed:

https://appengine.google.com/settings?&app_id=s~YOUR_APP_ID

+3


source


For the Cloud Developer Console, you need to select the app project that you want to delete. Then you need to go to Billing & Settings. Then click "Delete Project" to delete the application project.



0


source


Use console to uninstall your application.

Click the Uninstall icon to uninstall your applications.

You can see all of these removed applications by clicking "Projects Pending Removal".

You will receive an email the next day, whose title is "Project Deletion Notice".

The Google Developers Console team will permanently delete your project within one week of your request.

0


source


You need to close the project and it will be queued for deletion.

To do this go to IAM and admin > Settings for that particular project. https://console.cloud.google.com/iam-admin/settings/project?project=%appengine_id%

Then press SHUT DOWN .

enter image description here

The appengine project will take 30 days to complete.

0


source







All Articles