v2_fastly_integration_GetFastlyAccount/
v2_fastly-integration_GetFastlyAccount.rs

1// Get Fastly account returns "OK" response
2use datadog_api_client::datadog;
3use datadog_api_client::datadogV2::api_fastly_integration::FastlyIntegrationAPI;
4
5#[tokio::main]
6async fn main() {
7    // there is a valid "fastly_account" in the system
8    let fastly_account_data_id = std::env::var("FASTLY_ACCOUNT_DATA_ID").unwrap();
9    let configuration = datadog::Configuration::new();
10    let api = FastlyIntegrationAPI::with_config(configuration);
11    let resp = api.get_fastly_account(fastly_account_data_id.clone()).await;
12    if let Ok(value) = resp {
13        println!("{:#?}", value);
14    } else {
15        println!("{:#?}", resp.unwrap_err());
16    }
17}