0

有没有办法通过 Azure RM powershell 模块获取 API 产品列表?

在 Az powershell 模块中,可以通过将 -ApiId 传递给命令 Get-AzApiManagementProduct 来完成。

4

1 回答 1

2

您可以使用Get-AzureRmApiManagementProductwithNew-AzureRmApiManagementContext获取 api 产品列表。

$ApiMgmtContext = New-AzureRmApiManagementContext -ResourceGroupName "yourresourcegroup" -ServiceName "yourapimname"
Get-AzureRmApiManagementProduct -Context $ApiMgmtContext -ApiId $apiname

在此处输入图像描述

于 2019-10-22T08:56:11.090 回答