我正在编写脚本以从 Azure DevOps 为选定的 Azure DevOps 部署组和选定的目标机器进行部署
以下使用的 rest api url 未提供所需的数据 -
$connectionToken = ""
$Url1 = "https://dev.azure.com/{Org Name}{Project Name}/_apis/distributedtask/deploymentgroups?
name={name}&api-version=6.0-preview.1"
$base64AuthInfo=
[System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes(":$($connectionToken)"))
$json = Invoke-RestMethod -Uri $Url1 -Headers @{authorization = "Basic $base64AuthInfo"} -Method Get
$data = $json | ConvertTo-Json -Depth 100
$data
为了获取所需的数据,我需要做哪些 rest api url 更改?