你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzApiManagementAuthorizationServer
获取API 管理授权服务器。
语法
Get-AzApiManagementAuthorizationServer
-Context <PsApiManagementContext>
[-ServerId <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzApiManagementAuthorizationServer
[-ServerId <String>]
-ResourceId <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Get-AzApiManagementAuthorizationServer cmdlet 获取所有 Azure API 管理授权服务器或指定的授权服务器。 不会将 ClientSecret 包含在结果详细信息中。 若要获取客户端机密,请使用 Get-AzApiManagementAuthorizationServerClientSecret。
示例
示例 1:获取所有授权服务器
$ApiMgmtContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
Get-AzApiManagementAuthorizationServer -Context $ApiMgmtContext
此命令获取所有API 管理授权服务器。
示例 2:获取指定的授权服务器
$ApiMgmtContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
Get-AzApiManagementAuthorizationServer -Context $ApiMgmtContext -ServerId "0123456789"
此命令获取指定的授权服务器。
参数
-Context
类型: | PsApiManagementContext |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ResourceId
授权服务器的 Arm 资源标识符。 如果指定,将尝试按标识符查找授权服务器。 此参数是必需的。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ServerId
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
输入
输出
PsApiManagementOAuth2AuthorizationServer