Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Prepare Azure environments for new workloads—subscriptions, networking, identity, and landing zones
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/services/functions/templates/recipes/timer/eval/python.md
1# Timer Recipe - Python Eval23## MCP Template Validation45| Criteria | Expected | Status |6|----------|----------|--------|7| Template discovery | `functions_template_get(language: "python")` returns list | ✅ PASS |8| Filter by resource | `resource == "timer"` finds matches | ✅ PASS |9| Template scaffolded | `timer-trigger-python-azd` | ✅ PASS |10| Has trigger code | `@app.timer_trigger` decorator in output | ✅ PASS |11| Has IaC | `projectFiles[]` includes Bicep | ✅ PASS |1213## Agent Behavior Validation1415```text161. Agent calls: functions_template_get(language: "python")172. Agent scans templateList.triggers[] descriptions and resource field183. Agent selects: template where resource == "timer" → timer-trigger-python-azd194. Agent calls: functions_template_get(language: "python", template: "timer-trigger-python-azd")205. Agent writes: functionFiles[] + projectFiles[]21```2223## Code Indicators Verified2425- `@app.timer_trigger` with schedule parameter26- `TIMER_SCHEDULE` app setting reference (`%TIMER_SCHEDULE%`)27- 6-part cron expression (with seconds)2829## Test Date30312026-04-223233## Verdict3435**PASS** - MCP template provides complete timer trigger with configurable schedule and IaC.36