如何在Azure Powershell中获取角色实例的状态?我正在使用以下命令,但它没有显示角色的状态
Get-AzureRole -ServiceName serviceNameHere
这是输出:
RoleName : Role Name
InstanceCount : 1
DeploymentID : ***deployment id*******
OSVersion : ***OSVersion*******
ServiceName : ***service name*******
OperationDescription : Get-AzureRole
OperationId : ***operation id*******
OperationStatus : Succeeded
任何人都可以提供帮助?谢谢!
答案 0 :(得分:0)
想出来。我用过:
Get-AzureRole -ServiceName "serviceNameHere" -Slot "Production" -InstanceDetails | Format-Table -Auto "InstanceName", "InstanceSize", "InstanceStatus"
如果有人很快遇到此事。