Remove non-default module in Google engine

I tried to use the module after this tutorial

https://developers.google.com/appengine/docs/python/modules/

I need to remove the module quickly.

my cronjob-module.yaml

application: myappication
module: cronjob-module
version: uno
runtime: python27
api_version: 1
threadsafe: true

Please tell me how to do this?

+4
source share
3 answers

You can easily remove a non-default module in the developer console. Click on "Versions", then use the "Module:" drop-down menu to select the module name "cronjob-module", and then delete the versions you need.

, : " ". "" . "". , , .

+11

gcloud: . ,

gcloud preview app modules list

gcloud preview app modules delete your-module-name --version 0.0.0

: https://cloud.google.com/sdk/gcloud/reference/preview/app/modules/delete?hl=en

+2

API- gcloud . .

  • versions services ( default):

    gcloud preview app versions list
    
  • :

    gcloud preview app versions stop 20160421t052824
    
  • :

    gcloud preview app versions delete 20160421t052824
    
  • (* , ):

    gcloud preview app services delete api
    
0

Source: https://habr.com/ru/post/1544415/


All Articles