v2_fastly_integration_ListFastlyAccounts/
v2_fastly-integration_ListFastlyAccounts.rs

1// List Fastly accounts 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    let configuration = datadog::Configuration::new();
8    let api = FastlyIntegrationAPI::with_config(configuration);
9    let resp = api.list_fastly_accounts().await;
10    if let Ok(value) = resp {
11        println!("{:#?}", value);
12    } else {
13        println!("{:#?}", resp.unwrap_err());
14    }
15}