我正在尝试使用Powershell类型的自动化运行手册中的以下代码打印 Azure 自动化帐户的自动化变量的值的类型。
$var1 = ((Get-AzureRmAutomationVariable -Name "ArrayVar" -ResourceGroupName "automation-ps-rg" -AutomationAccountName "automation-ps-aa").Value).GetType()
$var1
我看到这会导致 Runbook 失败并重试 3 次,最终失败并显示以下消息。
Suspended
The runbook job was attempted 3 times, but it failed each time.
为什么这可能会失败?
谢谢!