I'm looking to deploy a rest API to Google Cloud Functions, however the deployment docs seem to indicate that it is only possible to use POST requests:
Every HTTP POST request to the function's endpoint (web_trigger.url parameter of the deploy output) will trigger function execution. Result of the function execution will be returned in response body. - https://cloud.google.com/functions/docs/deploying/
Ideally I'd be looking to associate paths with wildcards and across different HTTP methods for example
POST /user
GET /user/:id
PUT /user/:id
DEL /user/:id
with the wildcard values populating some params object in the function context like in Rails, Hapijs, etc.
Wondering if something like the above is possible with Cloud Functions and if not whether it will be in the future?