问题标签 [azure-runbook]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
azure - Azure 门户自定义磁贴 - Markdown 磁贴
是否可以在 azure 仪表板中显示自定义信息?我正在搜索如何在 azure 仪表板中添加自定义内容,但没有找到任何内容。唯一关闭的是允许显示 html 的 markdown tile。
azure - Runbook 无法使用命令 New-AzureRmSqlDatabaseExport(对象引用未设置为对象的实例)
当我尝试New-AzureRmSqlDatabaseExport
在 PowerShell Runbook 中运行命令时,它会失败并显示错误消息:
我已经验证所有模块都已更新,AzureRM.Sql
在我写这篇文章时版本为 4.12.1。New-AzureRmSqlDatabaseExport
是 Runbook 编辑器的一部分,AzureRM.Sql
也可以在 Runbook 编辑器中使用。
我错过了什么?
更新:我尝试运行的代码如下所示:
它确实适用于 Azure Cloud Shell。
c# - 如何在 C# 中使用 Microsoft.Azure.Management.Automation AutomationClient 启动 Azure Runbook/webhook?
我正在使用 .NET SDK 构建将触发 Azure 自动化运行手册的应用程序。我尝试使用 webhook 启动 runbook,但找不到将启动 webhook 并返回作业 ID 的方法。
我正在使用命名空间中的AutomationClient:
Microsoft.Azure.Management.Automation版本:3.8.0 预览版。
azure - 如何在 Azure Runbook 中多次执行自定义脚本执行?
实际上,我正在尝试使用自定义脚本执行创建 Azure Runbook。Runbook 针对 Linux VM 运行。我构建了一个简单的脚本,它在 VM 上创建一个目录。如果我第一次执行 runbook,则将立即创建目录。然后,我删除了该目录,再次运行 Runbook 并没有再次创建该目录。在网上搜索了一番后,我发现了一个提示,您只能在虚拟机上运行具有相同参数的脚本一次。所以我在我的 SettingString 中添加了一个时间戳。不幸的是,要么这不能解决问题,要么我的代码中有错误。
希望您能帮助我找出我的错误或给我一个提示,如何针对同一个 VM 多次执行脚本。
非常感谢!
powershell - powershell RSA加密通过提供模数和指数
我试图通过提供模数和指数在我的 powershell 脚本中进行 RSA 加密,并且我已将其部署在 azure 自动化 Runbook 中。
当我运行相同时,我收到以下错误
捕获的异常:System.Management.Automation.MethodInvocationException:使用“1”参数调用“ImportParameters”的异常:“错误数据。
" ---> System.Security.Cryptography.CryptographicException:错误数据。
在 System.Security.Cryptography.CryptographicException.ThrowCryptographicException(Int32 小时)
在 System.Security.Cryptography.Utils._ImportKey(SafeProvHandle hCSP,Int32 keyNumber,CspProviderFlags 标志,对象 cspObject,SafeKeyHandle & hKey)
在 System.Security.Cryptography.RSACryptoServiceProvider.ImportParameters(RSAParameters 参数)
在 CallSite.Target(闭包,CallSite,对象,对象)
--- 内部异常堆栈跟踪结束 ---
在 System.Management.Automation.ExceptionHandlingOps.CheckActionPreference(FunctionContext funcContext,异常异常)
在 System.Management.Automation.Interpreter.ActionCallInstruction`2.Run(InterpretedFrame 框架)
在 System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame 框架)
在 System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame 框架)
azure - 使用 Azure Runbook 将文件从本地计算机或网络驱动器上传到 Azure 文件共享或 Blob 存储
因此,我正在尝试创建一个 PowerShell 运行手册,以自动将文件从本地计算机和网络驱动器上传到 Azure 存储帐户。我尝试使用 Set-AzureStorageFileContent 执行此操作,但是得到目录不存在的错误。
任何帮助都会受到极大的欢迎。
谢谢你。
powershell - Get-AzureKeyVaultSecret : Unable to retrieve service key for ServicePrincipal account
I was doing Get-AzureKeyVaultSecret
in azure automation runbook. But I am getting the following error. How I can fix this error in azure automation runbook? where to login and where to supply credentials?
Get-AzureKeyVaultSecret : Unable to retrieve service key for ServicePrincipal account xxxxxxxxxxxxxxxxxxx. Please log in again to supply the credentials for this service principal
powershell - Azure 自动化 Runbook 无法将 webhookdata 解析为 JSON 对象
我对这个问题感到非常震惊。我请求你回答或给出提示。我的选择已经不多了。
我通过 WebHook 调用高 CPU 利用率的 azure Runbook。我的问题是内部运行手册数据未正确解码。例如,下面的行没有打印任何东西。
Wheras 如果我尝试将数据显式转换为 JSON,就像这样
那么这是一个抛出错误。
ConvertFrom-Json:无效的 JSON 原语:。在 line:6 char:31 + $WebhookData = $WebhookData | ConvertFrom-Json
顺便说一句,我正在尝试使用 Azure 库中提供的运行手册 {Vertically scale up an Azure Resource Manager VM with Azure Automation}
我的 Webhook 是从 VM 上创建的警报中调用的。
一个非常奇怪的观察:
工作 WebHood 示例(在示例中找到) {"WebhookName":"test1","RequestBody":" [ \r\n {\r\n \"Message\": \"Test Message\"\r\n } \r\n****]****"
不工作(从 VM 调用 runbook 时发送的数据):
{"WebhookName":"test2","RequestBody":" { \"schemaId\":\"AzureMonitorMetricAlert\" } }
谢谢