1

Google App Engine Flexible Environment에서 어떤 서비스 버전이 기본값인지보고 싶습니다.App Engine Flexible Environment에서 어떤 버전의 서비스가 기본값인지 어떻게 알 수 있습니까?

관리자 API의 목록 작업은 표시되지 않습니다 :

https://appengine.googleapis.com/v1/apps/myapp/services/myservice/versions 

을 어느 쪽도 아니 작동 얻을 않습니다 : 구글 앱 엔진 API에서

https://appengine.googleapis.com/v1/apps/myapp/services/myservice.versions/myverson 

, 내가 사용할 수 있습니다

ModulesService modulesService = ModulesServiceFactory.getModulesService(); 
String currentModuleName = modulesService.getCurrentModule(); 
String version = modulesService.getDefaultVersion(currentModuleName); 

하지만 유연한 환경에서는 사용할 수 없습니다.

Admin API에서 어떻게해야합니까?

답변