A few years ago GAE compelled everyone to migrate their apps from a master-slave datastore to a high-replication one. When that happened, an alias got created. My old project was named "myapp", the domain of the new project became "myapp-hrd" and the new URL "myapp-hrd.appspot.com" accesses the new project. But the old original URL "myapp.appspot.com" also points to it, thus the old URL is now an alias.
I have created a completely new project with a new version of my app, called "myapp-v2". Is there a way to redirect the existing "myapp.appspot.com" alias from the hrd app to the new v2 one? I could start using the new "myapp-v2.appspot.com" URL instead, but that's ugly, and I prefer to keep the old URL. I thought that there would be an easy way to modify the aliases using the Google Cloud Platform console, but if there is, I'm not finding it.
I could register a new domain, point it at the new one, and start using that, but my preference would be to be able to keep on using the same URL I always have.