admin管理员组文章数量:1345412
I'm working with SonarQube and Azure DevOps integration, and I need to retrieve the Project Name value that appears in the DevOps Platform Integration section for a given project.
I would like to achieve this using the SonarQube API, so I can later modify this value in bulk for multiple projects. However, after reviewing the API documentation, I couldn't find a clear way to get or update this specific field.
So far, I have tried using the following API call to retrieve project settings:
curl -s -u "$TOKEN:" "$SONAR_URL/api/settings/values?component=$PROJECT_KEY" | jq -r '.settings[] | select(.key == "sonar.projectName") | .value'
But this doesn't return the Project Name from the DevOps integration settings.
Is there a specific API endpoint that allows retrieving and updating this field? Or is there another approach to manage this setting programmatically?
Any help or guidance would be greatly appreciated!
Additional Context:
Azure DevOps is being used as the ALM
The goal is to automate the modification of this field for multiple projects
本文标签:
版权声明:本文标题:bash - How to retrieve and modify the Project Name from SonarQube's DevOps Platform Integration via API - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743813413a2543483.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论