在Web应用程序中部署Web作业
$t=Invoke-RestMethod -Uri $Url -Headers $Headers -UserAgent $userAgent -Method PUT -InFile $f
答案 0 :(得分:0)
您可以使用以下Azure Rest API来获取Azure Web App资源的部署状态。
https://docs.microsoft.com/en-us/rest/api/appservice/webapps/getdeployment
有一个不错的“试用”部分,您可以在其中使用该API,并随订阅一起使用。
编辑1 请遵循此处有关如何通过Powershell调用Azure Rest API的信息:
https://blog.tekspace.io/access-azure-rest-api-using-powershell https://blog.tekspace.io/access-azure-rest-api-using-powershell/
让我知道是否有帮助!