gpt4 book ai didi

azure - 使用 powershell 获取 Azure DevOps 服务连接服务主体 ID

转载 作者:行者123 更新时间:2023-12-02 23:39:06 24 4
gpt4 key购买 nike

我正在致力于自动化 Azure Active Directory 应用程序注册和 Azure Devops 服务连接,但遇到了困难。

我想通过服务主体 ID(或至少获取 ID)查询 Azure DevOps 服务连接(服务端点)。使用 Azure CLI 时可以实现这一点:

az devops service-endpoint list --query "[?authorization.parameters.serviceprincipalid=='xxx']"

但由于我在 Azure 自动化帐户中将其作为 powershell Runbook 运行,因此不支持 Azure CLI。

然后我尝试了 Azure DevOps REST API,并从 powershell 调用它,但响应不包含服务主体 ID,而只是这样:

authorization : @{parameters=; scheme=ServicePrincipal}

有人知道如何解决这个问题吗?

更新

我像这样调用其余 API:

$uriAccount = $UriOrg + "_apis/serviceendpoint/endpoints?endpointNames={name}&api-version=6.1-preview.4"
$result = Invoke-RestMethod -Uri $uriAccount -Method get -Headers $AzureDevOpsAuthenicationHeader

$result.value 给了我这个:

authorization : @{parameters=; scheme=ServicePrincipal}

最佳答案

您可以尝试 REST API Endpoints - Get Service Endpoints By Names .

GET https://dev.azure.com/{organization}/{project}/_apis/serviceendpoint/endpoints?endpointNames={endpointNames}&api-version=6.0-preview.4

在此 REST API 中,您可以通过服务连接的名称找到 ID 和详细信息。

以下是在 PowerShell 中使用 REST API 的示例:

$token = "{pat}"
$token = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes(":$($token)"))
$url="https://dev.azure.com/{organization}/{project}/_apis/serviceendpoint/endpoints?endpointNames={endpointNames}&api-version=6.0-preview.4"
$head = @{ Authorization =" Basic $token" }
Invoke-RestMethod -Uri $url -Method GET -Headers $head

更新:

出现这个问题的原因是你输出结果的方式不对。

对于 JSON 响应体,如果不指定最后一层,就没有直观的方法来获取结果。这是我修改后的代码,请注意我如何打印结果:

$token = "{pat}"
$token = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes(":$($token)"))
$url="https://dev.azure.com/{organization}/{project}/_apis/serviceendpoint/endpoints?endpointNames={endpointNames}&api-version=6.0-preview.4"
$head = @{ Authorization =" Basic $token" }
$reslut = Invoke-RestMethod -Uri $url -Method GET -Headers $head
echo $result.value.authorization.parameters

关于azure - 使用 powershell 获取 Azure DevOps 服务连接服务主体 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65513609/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com