In Google App Engine Flexible Environment, I'd like to see which Version of my Service is the default.
The list operation of the Admin API does not show it:
https://appengine.googleapis.com/v1/apps/myapp/services/myservice/versions
Neither does the get operation:
https://appengine.googleapis.com/v1/apps/myapp/services/myservice.versions/myverson
In the Google App Engine API, I can use
ModulesService modulesService = ModulesServiceFactory.getModulesService();
String currentModuleName = modulesService.getCurrentModule();
String version = modulesService.getDefaultVersion(currentModuleName);
But that is not available in Flexible Environment.
How do I do this in the Admin API?