你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzResourceGroupDeployment
获取资源组中的部署。
语法
Get-AzResourceGroupDeployment
[-ResourceGroupName] <String>
[[-Name] <String>]
[-Pre]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzResourceGroupDeployment
-Id <String>
[-Pre]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Get-AzResourceGroupDeployment cmdlet 获取 Azure 资源组中的部署。 指定 名称 或 ID 参数以筛选结果。 默认情况下,Get-AzResourceGroupDeployment 获取指定资源组的所有部署。 Azure 资源是用户管理的 Azure 实体,例如数据库服务器、数据库或网站。 Azure 资源组是部署为单元的 Azure 资源的集合。 部署是使资源组中的资源可供使用的操作。 有关 Azure 资源和 Azure 资源组的详细信息,请参阅 New-AzResourceGroup cmdlet。 可以使用此 cmdlet 进行跟踪。 若要进行调试,请使用此 cmdlet 和 Get-AzLog cmdlet。
示例
示例 1:获取资源组的所有部署
Get-AzResourceGroupDeployment -ResourceGroupName "ContosoLabsRG"
此命令获取 ContosoLabsRG 资源组的所有部署。 输出显示了使用库模板的 WordPress 博客的部署。
示例 2:按名称获取部署
Get-AzResourceGroupDeployment -ResourceGroupName "ContosoLabsRG" -Name "DeployWebsite01"
此命令获取 ContosoLabsRG 资源组的 DeployWebsite01 部署。 使用 New-AzResourceGroup 或 New-AzResourceGroupDeployment cmdlet 创建部署时,可以为其分配名称。 如果未分配名称,则 cmdlet 会根据用于创建部署的模板提供默认名称。
示例 3:获取所有资源组的部署
Get-AzResourceGroup | Get-AzResourceGroupDeployment | Format-Table ResourceGroupName, DeploymentName, ProvisioningState
此命令使用 Get-AzResourceGroup cmdlet 获取订阅中的所有资源组。 该命令使用管道运算符将资源组传递到当前 cmdlet。 当前 cmdlet 获取订阅中所有资源组的所有部署,并将结果传递给 Format-Table cmdlet 以显示其 ResourceGroupName、DeploymentName,以及 ProvisioningState 属性值。
参数
-DefaultProfile
用于与 azure 通信的凭据、帐户、租户和订阅
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Id
指定要获取的资源组部署的 ID。
类型: | String |
别名: | DeploymentId, ResourceId |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Name
指定要获取的部署的名称。 不允许使用通配符。
类型: | String |
别名: | DeploymentName |
Position: | 1 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Pre
指示此 cmdlet 在自动确定要使用的版本时会考虑预发布 API 版本。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ResourceGroupName
指定资源组的名称。 该 cmdlet 获取此参数指定的资源组的部署。 不允许使用通配符。 此参数是必需的,每个命令中只能指定一个资源组。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |