v2_actions_datastores_GetDatastore/
v2_actions-datastores_GetDatastore.rs1use datadog_api_client::datadog;
3use datadog_api_client::datadogV2::api_actions_datastores::ActionsDatastoresAPI;
4
5#[tokio::main]
6async fn main() {
7 let datastore_data_id = std::env::var("DATASTORE_DATA_ID").unwrap();
9 let configuration = datadog::Configuration::new();
10 let api = ActionsDatastoresAPI::with_config(configuration);
11 let resp = api.get_datastore(datastore_data_id.clone()).await;
12 if let Ok(value) = resp {
13 println!("{:#?}", value);
14 } else {
15 println!("{:#?}", resp.unwrap_err());
16 }
17}