资源组的provisioningstate 属性有什么作用
What is the role of provisioningstate property of a resource group
使用 powershell 我 运行 下面的命令
获取 AzureRmResourceGroup
并获得了有关我的资源组的一些信息。提到的属性之一是 Provisioningstate,在我的例子中是成功的,我认为也可能失败。
1- 何时以及如何为资源组设置此 属性?
2 - 我可以在 Azure Web 门户的什么地方看到它?这与 Web 门户上的 Last-deployment 属性 相同吗?
When and how is this property set for a resource group?
只要您对资源组本身执行某些操作,属性 就会由 Azure Resource Manager (ARM) API
自动设置。因此,例如,当您删除资源组时,在删除资源组及其中的资源时,状态变为 Deleting
.
Where can I see this in Azure Web portal? Is this the same as
Last-deployment property on the web portal?
默认情况下,这在 Azure 门户上不可见。要查看状态,在查看资源组时,首先单击 Columns
按钮,然后单击 select Status
列,然后您应该能够看到资源组状态。
使用 powershell 我 运行 下面的命令 获取 AzureRmResourceGroup 并获得了有关我的资源组的一些信息。提到的属性之一是 Provisioningstate,在我的例子中是成功的,我认为也可能失败。
1- 何时以及如何为资源组设置此 属性?
2 - 我可以在 Azure Web 门户的什么地方看到它?这与 Web 门户上的 Last-deployment 属性 相同吗?
When and how is this property set for a resource group?
只要您对资源组本身执行某些操作,属性 就会由 Azure Resource Manager (ARM) API
自动设置。因此,例如,当您删除资源组时,在删除资源组及其中的资源时,状态变为 Deleting
.
Where can I see this in Azure Web portal? Is this the same as Last-deployment property on the web portal?
默认情况下,这在 Azure 门户上不可见。要查看状态,在查看资源组时,首先单击 Columns
按钮,然后单击 select Status
列,然后您应该能够看到资源组状态。