Hello @Ana , I got a response back from the team, below are the obtained details.
- For PowerShell durable function apps invoking an activity function without
NoWait
is equivalent to invoking it withawait
in C# and other languages: the orchestrator invocation stops and billing stops. Please refer to this document for additional details and implementation. - If you are planning to use
Start-Sleep
it is recommended to use durable timer instead, for PowerShell please refer to this example for implementation. (see theStart-DurableTimer
call) - For using
Start-Sleep 700
which is equivalent 700,000 milliseconds, you will be charged according to this pricing guide for Function Apps.
Please let me know if there are any additional concerns. Thank you!