v2_cloud_cost_management_DeleteCustomCostsFile_372970393/
v2_cloud-cost-management_DeleteCustomCostsFile_372970393.rs1use datadog_api_client::datadog;
3use datadog_api_client::datadogV2::api_cloud_cost_management::CloudCostManagementAPI;
4
5#[tokio::main]
6async fn main() {
7 let configuration = datadog::Configuration::new();
8 let api = CloudCostManagementAPI::with_config(configuration);
9 let resp = api
10 .delete_custom_costs_file("9d055d22-a838-4e9f-bc34-a4f9ab66280c".to_string())
11 .await;
12 if let Ok(value) = resp {
13 println!("{:#?}", value);
14 } else {
15 println!("{:#?}", resp.unwrap_err());
16 }
17}