use anyhow::Result;
use azure_devops_rust_api::policy;
use std::env;
mod utils;
#[tokio::main]
async fn main() -> Result<()> {
let credential = utils::get_credential()?;
let organization = env::var("ADO_ORGANIZATION").expect("Must define ADO_ORGANIZATION");
let project = env::var("ADO_PROJECT").expect("Must define ADO_PROJECT");
let policy_client = policy::ClientBuilder::new(credential).build();
let policy_types = policy_client
.types_client()
.list(&organization, &project)
.await?
.value;
for policy_type in policy_types.iter() {
let type_ref = &policy_type.policy_type_ref;
println!(
"{} {:32} {}",
type_ref.id, type_ref.display_name, policy_type.description
);
}
println!("{} policy types found", policy_types.len());
let work_item_linking_policy_id = policy_types
.iter()
.find_map(|pt| {
if pt.policy_type_ref.display_name == "Work item linking" {
Some(pt.policy_type_ref.id.clone())
} else {
None
}
})
.unwrap();
println!("Work item linking policy id: {work_item_linking_policy_id}");
let configs = policy_client
.configurations_client()
.list(&organization, &project)
.policy_type(work_item_linking_policy_id)
.await?
.value;
println!("{} work item policy configurations found", configs.len());
if let Some(config) = configs.first() {
println!("Example config:\n{config:#?}");
}
Ok(())
}