v2_reference_tables_GetRowsByID/
v2_reference-tables_GetRowsByID.rs

1// Get rows by id returns "Some or all requested rows were found." response
2use datadog_api_client::datadog;
3use datadog_api_client::datadogV2::api_reference_tables::ReferenceTablesAPI;
4
5#[tokio::main]
6async fn main() {
7    let configuration = datadog::Configuration::new();
8    let api = ReferenceTablesAPI::with_config(configuration);
9    let resp = api.get_rows_by_id("id".to_string(), vec![]).await;
10    if let Ok(value) = resp {
11        println!("{:#?}", value);
12    } else {
13        println!("{:#?}", resp.unwrap_err());
14    }
15}