We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 510f512 commit 0a04770Copy full SHA for 0a04770
examples/v2_security-monitoring_GetHistoricalJob.rs
@@ -7,8 +7,8 @@ async fn main() {
7
// there is a valid "historical_job" in the system
8
let historical_job_data_id = std::env::var("HISTORICAL_JOB_DATA_ID").unwrap();
9
let mut configuration = datadog::Configuration::new();
10
- configuration.set_unstable_operation_enabled("v2.RunHistoricalJob", true);
11
configuration.set_unstable_operation_enabled("v2.GetHistoricalJob", true);
+ configuration.set_unstable_operation_enabled("v2.RunHistoricalJob", true);
12
let api = SecurityMonitoringAPI::with_config(configuration);
13
let resp = api.get_historical_job(historical_job_data_id.clone()).await;
14
if let Ok(value) = resp {
0 commit comments