我知道您可以使用以下命令从Azure CLI启动/停止容器实例 az容器停止--name mycontainer-资源组myResourceGroupVM
但是由于在我的组织中,azure cli给出了“访问被拒绝”错误,所以我想知道如何使用Powershell或ARM进行相同的操作。我无法从文档中获取任何Powershell cmdlet来启动或停止Conrainer实例。请帮忙。
还有谁能告诉我为什么我得到“访问被拒绝”的信息。所有az(CLI)命令?
答案 0 :(得分:3)
要使用更新的Powershell“ Az”模块执行此操作,请执行以下操作:
$cg = Get-AzContainerGroup -ResourceGroupName <yourResourceGroupName> -Name <yourContainerGroupName>
Invoke-AzResourceAction -ResourceId $cg.Id -Action start -Force
Action
参数可以是start
,stop
,restart
。
我从Azure资源浏览器获得了这些可能的值:https://resources.azure.com/providers/Microsoft.ContainerInstance/operations
答案 1 :(得分:0)