gpt4 book ai didi

azure - 检查是否使用 Powershell 启用了 Azure Function

转载 作者:行者123 更新时间:2023-12-03 01:41:26 25 4
gpt4 key购买 nike

From this question ,我可以使用以下脚本获取所有已部署功能(启用或未启用)的列表,但是有没有办法知道哪些功能被禁用?

$Params = @{
ResourceGroupName = $ResourceGroupName
ResourceType = 'Microsoft.Web/sites/functions'
ResourceName = $AppName
ApiVersion = '2015-08-01'
}
Get-AzureRmResource @Params

enter image description here

最佳答案

在 Azure Functions v2 中,当存在名称为 AzureWebJobs.{functionName}.Disabled 且值为 true 的环境变量时,函数将被禁用(请参阅 https://learn.microsoft.com/en-us/azure/azure-functions/disable-function#functions-2x---all-languages )。

您可以使用以下方式在 Azure Powershell 中获取函数应用的环境变量

(Get-AzureRmWebApp -ResourceGroupName {resourceGroupName} -Name {appName}).SiteConfig.AppSettings

然后进行相应的过滤。

关于azure - 检查是否使用 Powershell 启用了 Azure Function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52897291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com