如何通过invoke命令获取azure资源部署的配置状态(REST API)

问题描述 投票:0回答:1

在web应用程序中部署webjobs

$t=Invoke-RestMethod -Uri $Url -Headers $Headers -UserAgent $userAgent -Method PUT -InFile $f
azure powershell provisioning invoke-command
1个回答
0
投票

您可以使用以下Azure Rest API来获取Azure Web App资源的部署状态。

https://docs.microsoft.com/en-us/rest/api/appservice/webapps/getdeployment

有一个很好的“试试”部分,您可以在其中播放此API,与您的订阅一起使用。

enter image description here

编辑1请按照此处的说明如何通过Powershell调用Azure Rest API:

https://blog.tekspace.io/access-azure-rest-api-using-powershellhttps://blog.tekspace.io/access-azure-rest-api-using-powershell/

如果有帮助,请告诉我!

© www.soinside.com 2019 - 2024. All rights reserved.