use datadog_api_client::datadog;
use datadog_api_client::datadogV2::api_incident_teams::IncidentTeamsAPI;
use datadog_api_client::datadogV2::model::IncidentTeamCreateAttributes;
use datadog_api_client::datadogV2::model::IncidentTeamCreateData;
use datadog_api_client::datadogV2::model::IncidentTeamCreateRequest;
use datadog_api_client::datadogV2::model::IncidentTeamType;
#[tokio::main]
async fn main() {
let body = IncidentTeamCreateRequest::new(
IncidentTeamCreateData::new(IncidentTeamType::TEAMS).attributes(
IncidentTeamCreateAttributes::new("Example-Incident-Team".to_string()),
),
);
let mut configuration = datadog::Configuration::new();
configuration.set_unstable_operation_enabled("v2.CreateIncidentTeam", true);
let api = IncidentTeamsAPI::with_config(configuration);
let resp = api.create_incident_team(body).await;
if let Ok(value) = resp {
println!("{:#?}", value);
} else {
println!("{:#?}", resp.unwrap_err());
}
}