能否使用 Azure DevOps Rest API 检索已删除的分支策略配置?
Can you retrieve deleted branch policy configurations using the Azure DevOps Rest APIs?
我正在使用 Azure DevOps REST APIs 来做一些分支策略审计工作。我想查看所有策略配置,活动的和已删除的。 API: https://dev.azure.com/organization/project/_apis/policy/configurations/?api-version=5.0 only returns active policy configurations. In-active ones should have the isDeleted flag as true. I can access those policy configurations if I already know the configuration ID and if it is included in the API call like this: https://dev.azure.com/organization/project/_apis/policy/configurations/7001?api-version=5.0
我想知道是否有办法列出与存储库或项目关联的已删除策略配置。
我正在使用 Azure DevOps REST APIs 来做一些分支策略审计工作。我想查看所有策略配置,活动的和已删除的。 API: https://dev.azure.com/organization/project/_apis/policy/configurations/?api-version=5.0 only returns active policy configurations. In-active ones should have the isDeleted flag as true. I can access those policy configurations if I already know the configuration ID and if it is included in the API call like this: https://dev.azure.com/organization/project/_apis/policy/configurations/7001?api-version=5.0
我想知道是否有办法列出与存储库或项目关联的已删除策略配置。