RunbookParameter
Represents parameters defined for automation runbooks (not an ARM resource itself).
Labels: :RunbookParameter
Properties:
id- Parameter ID (primary key)name- Parameter namedefaultValue- Default value for the parameterisMandatory- Whether the parameter is mandatoryposition- Parameter positiontype- Parameter type
Relationships
Incoming
- AutomationRunbook →
HAS_PARAMETER→ RunbookParameter - Parent runbook
Examples
// Find all mandatory parameters
MATCH (p:RunbookParameter)
WHERE p.isMandatory = true
RETURN p.name, p.type, p.defaultValue
// Find runbooks with the most parameters
MATCH (rb:AutomationRunbook)-[:HAS_PARAMETER]->(p:RunbookParameter)
RETURN rb.name, count(p) AS parameterCount
ORDER BY parameterCount DESC