I'm planning to call all cloud function periodically from a function. Current functions are implemented by using http, pubsub, firestore, analytics, onCall trigger.
In my investigation, projects.locations.functions API on Cloud API is good for list all function. https://cloud.google.com/functions/docs/reference/rest/v1/projects.locations.functions#HttpsTrigger
But this API cannot distinguish http trigger and onCall trigger function. Both function(http and onCall) is recognized as http trigger function by the API.
Is there any way to distinguish both trigger?