From the document, it seems like to create endpoints service API, I need to create gRPC remote service and decorated with OpenAPI doc properties. Is it the only way to create endpoint API.
I have an existing python flask based service with OpenAPI interface, using connexion library to load swagger.yaml to connect to simple flask services. I can deploy the swagger.yaml file and see the API show up in endpoint portal. My flask service API deploys successfully to standard app engine. But the endpoint API can't connect to my app engine service.
Is it possible to have endpoints API point to existing OpenAPI flask service?
Any suggestions to migrate existing OpenAPI flask service into endpoint without too much or rewrite the code?
Thanks,
Tong