Great news!
In that case, I'll continue with a comment from my sources:
* v2 'onSchedule' (as of 27-Oct-22) lacks these options (that Cloud Task options has):
* <<
* maxInstances: 1, // make sure that tasks should never run in parallel: important for moving the "marker"
* concurrency: 1,
*
* cpu: 0.5, // (what would be the default, here???)
* memory: '512MiB',
*
* region: region_v2,
*
* secrets: ["METRICS_API_KEY"] // tbd. when would we use a secret like so? Where is it placed?????
* <<
*
I would like to:
- be able to decide where the scheduled function runs (region)
- be able to feed it a secret (secrets)
- be able to advice, how powerful job I'm thinking of running (cpu, memory)
- be able to restrict to just one simultaneous job, even if the earlier one takes longer than intended
With `firebase-functions` 4.0.1, `ScheduleOptions` does not provide these. Is there a way?