-
Notifications
You must be signed in to change notification settings - Fork 20
/
policy.rs
68 lines (57 loc) · 1.89 KB
/
policy.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// policy.rs
// Policy example.
use anyhow::Result;
use azure_devops_rust_api::policy;
use std::env;
mod utils;
#[tokio::main]
async fn main() -> Result<()> {
// Get authentication credential
let credential = utils::get_credential()?;
// Get ADO server configuration via environment variables
let organization = env::var("ADO_ORGANIZATION").expect("Must define ADO_ORGANIZATION");
let project = env::var("ADO_PROJECT").expect("Must define ADO_PROJECT");
// Create a policy client
let policy_client = policy::ClientBuilder::new(credential).build();
// Get all policy configurations in the specified organization/project
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(())
}