Skip to content

AutomationAccount

Represents Azure Automation accounts.

Labels: :ArmResource:AutomationAccount

Properties:

  • id - Automation account resource ID (primary key)
  • creationTime - Account creation timestamp
  • lastModifiedTime - Last modification timestamp
  • registrationUrl - Registration URL for the automation account
  • automationHybridServiceUrl - Automation hybrid service URL

Relationships

Outgoing

  • AutomationAccountHAS_RUNBOOKAutomationRunbook - Runbooks in this automation account

Examples

// Find all automation accounts
MATCH (aa:AutomationAccount)
RETURN aa.name, aa.creationTime, aa.registrationUrl
// Find automation accounts and their runbooks
MATCH (aa:AutomationAccount)-[:HAS_RUNBOOK]->(rb:AutomationRunbook)
RETURN aa.name, rb.name, rb.runbookType