如何通过调用命令(REST API)获取Azure资源部署的供应状态

时间:2018-08-31 06:55:05

标签: azure powershell provisioning invoke-command

在Web应用程序中部署Web作业

$t=Invoke-RestMethod -Uri $Url -Headers $Headers -UserAgent $userAgent -Method PUT -InFile $f

1 个答案:

答案 0 :(得分: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-powershell https://blog.tekspace.io/access-azure-rest-api-using-powershell/

让我知道是否有帮助!