From 4ff62774f6390a890eb694c48be7514cd9c0ffe6 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Tue, 3 Mar 2026 14:41:41 +0000 Subject: [PATCH] Regenerate client from commit 07005dd of spec repo --- .generator/schemas/v1/openapi.yaml | 15 +++++++++++++++ .../model/model_usage_summary_date.rs | 18 ++++++++++++++++++ .../model/model_usage_summary_date_org.rs | 18 ++++++++++++++++++ .../model/model_usage_summary_response.rs | 18 ++++++++++++++++++ 4 files changed, 69 insertions(+) diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 48f45d0bc..bdd4c6538 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -21924,6 +21924,11 @@ components: current date for all organizations. format: int64 type: integer + infra_edge_monitoring_devices_top99p: + description: Shows the 99th percentile of all Edge Devices Monitoring devices + over all hours in the current date for all organizations. + format: int64 + type: integer infra_host_top99p: description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations. @@ -23076,6 +23081,11 @@ components: current date for the given org (To be deprecated on October 1st, 2024). format: int64 type: integer + infra_edge_monitoring_devices_top99p: + description: Shows the 99th percentile of all Edge Devices Monitoring devices + over all hours in the current date for the given org. + format: int64 + type: integer infra_host_top99p: description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org. @@ -24229,6 +24239,11 @@ components: 2024). format: int64 type: integer + infra_edge_monitoring_devices_top99p_sum: + description: Shows the 99th percentile of all Edge Devices Monitoring devices + over all hours in the current month for all organizations. + format: int64 + type: integer infra_host_top99p_sum: description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations. diff --git a/src/datadogV1/model/model_usage_summary_date.rs b/src/datadogV1/model/model_usage_summary_date.rs index e31c059a4..508588a2c 100644 --- a/src/datadogV1/model/model_usage_summary_date.rs +++ b/src/datadogV1/model/model_usage_summary_date.rs @@ -329,6 +329,9 @@ pub struct UsageSummaryDate { /// Shows the sum of all log events indexed over all hours in the current date for all organizations. #[serde(rename = "indexed_events_count_sum")] pub indexed_events_count_sum: Option, + /// Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current date for all organizations. + #[serde(rename = "infra_edge_monitoring_devices_top99p")] + pub infra_edge_monitoring_devices_top99p: Option, /// Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations. #[serde(rename = "infra_host_top99p")] pub infra_host_top99p: Option, @@ -777,6 +780,7 @@ impl UsageSummaryDate { incident_management_monthly_active_users_hwm: None, incident_management_seats_hwm: None, indexed_events_count_sum: None, + infra_edge_monitoring_devices_top99p: None, infra_host_top99p: None, ingested_events_bytes_sum: None, iot_device_sum: None, @@ -1522,6 +1526,12 @@ impl UsageSummaryDate { self } + #[allow(deprecated)] + pub fn infra_edge_monitoring_devices_top99p(mut self, value: i64) -> Self { + self.infra_edge_monitoring_devices_top99p = Some(value); + self + } + #[allow(deprecated)] pub fn infra_host_top99p(mut self, value: i64) -> Self { self.infra_host_top99p = Some(value); @@ -2329,6 +2339,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDate { let mut incident_management_monthly_active_users_hwm: Option = None; let mut incident_management_seats_hwm: Option = None; let mut indexed_events_count_sum: Option = None; + let mut infra_edge_monitoring_devices_top99p: Option = None; let mut infra_host_top99p: Option = None; let mut ingested_events_bytes_sum: Option = None; let mut iot_device_sum: Option = None; @@ -3085,6 +3096,12 @@ impl<'de> Deserialize<'de> for UsageSummaryDate { } indexed_events_count_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); }, + "infra_edge_monitoring_devices_top99p" => { + if v.is_null() { + continue; + } + infra_edge_monitoring_devices_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?); + }, "infra_host_top99p" => { if v.is_null() { continue; @@ -3842,6 +3859,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDate { incident_management_monthly_active_users_hwm, incident_management_seats_hwm, indexed_events_count_sum, + infra_edge_monitoring_devices_top99p, infra_host_top99p, ingested_events_bytes_sum, iot_device_sum, diff --git a/src/datadogV1/model/model_usage_summary_date_org.rs b/src/datadogV1/model/model_usage_summary_date_org.rs index 0ee5ce220..530df39da 100644 --- a/src/datadogV1/model/model_usage_summary_date_org.rs +++ b/src/datadogV1/model/model_usage_summary_date_org.rs @@ -342,6 +342,9 @@ pub struct UsageSummaryDateOrg { #[deprecated] #[serde(rename = "indexed_events_count_sum")] pub indexed_events_count_sum: Option, + /// Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current date for the given org. + #[serde(rename = "infra_edge_monitoring_devices_top99p")] + pub infra_edge_monitoring_devices_top99p: Option, /// Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org. #[serde(rename = "infra_host_top99p")] pub infra_host_top99p: Option, @@ -800,6 +803,7 @@ impl UsageSummaryDateOrg { incident_management_monthly_active_users_hwm: None, incident_management_seats_hwm: None, indexed_events_count_sum: None, + infra_edge_monitoring_devices_top99p: None, infra_host_top99p: None, ingested_events_bytes_sum: None, iot_device_agg_sum: None, @@ -1571,6 +1575,12 @@ impl UsageSummaryDateOrg { self } + #[allow(deprecated)] + pub fn infra_edge_monitoring_devices_top99p(mut self, value: i64) -> Self { + self.infra_edge_monitoring_devices_top99p = Some(value); + self + } + #[allow(deprecated)] pub fn infra_host_top99p(mut self, value: i64) -> Self { self.infra_host_top99p = Some(value); @@ -2394,6 +2404,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg { let mut incident_management_monthly_active_users_hwm: Option = None; let mut incident_management_seats_hwm: Option = None; let mut indexed_events_count_sum: Option = None; + let mut infra_edge_monitoring_devices_top99p: Option = None; let mut infra_host_top99p: Option = None; let mut ingested_events_bytes_sum: Option = None; let mut iot_device_agg_sum: Option = None; @@ -3176,6 +3187,12 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg { } indexed_events_count_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); }, + "infra_edge_monitoring_devices_top99p" => { + if v.is_null() { + continue; + } + infra_edge_monitoring_devices_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?); + }, "infra_host_top99p" => { if v.is_null() { continue; @@ -3949,6 +3966,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg { incident_management_monthly_active_users_hwm, incident_management_seats_hwm, indexed_events_count_sum, + infra_edge_monitoring_devices_top99p, infra_host_top99p, ingested_events_bytes_sum, iot_device_agg_sum, diff --git a/src/datadogV1/model/model_usage_summary_response.rs b/src/datadogV1/model/model_usage_summary_response.rs index 86b8c0e3a..6fac339d9 100644 --- a/src/datadogV1/model/model_usage_summary_response.rs +++ b/src/datadogV1/model/model_usage_summary_response.rs @@ -339,6 +339,9 @@ pub struct UsageSummaryResponse { #[deprecated] #[serde(rename = "indexed_events_count_agg_sum")] pub indexed_events_count_agg_sum: Option, + /// Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current month for all organizations. + #[serde(rename = "infra_edge_monitoring_devices_top99p_sum")] + pub infra_edge_monitoring_devices_top99p_sum: Option, /// Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations. #[serde(rename = "infra_host_top99p_sum")] pub infra_host_top99p_sum: Option, @@ -816,6 +819,7 @@ impl UsageSummaryResponse { incident_management_monthly_active_users_hwm_sum: None, incident_management_seats_hwm_sum: None, indexed_events_count_agg_sum: None, + infra_edge_monitoring_devices_top99p_sum: None, infra_host_top99p_sum: None, ingested_events_bytes_agg_sum: None, iot_device_agg_sum: None, @@ -1587,6 +1591,12 @@ impl UsageSummaryResponse { self } + #[allow(deprecated)] + pub fn infra_edge_monitoring_devices_top99p_sum(mut self, value: i64) -> Self { + self.infra_edge_monitoring_devices_top99p_sum = Some(value); + self + } + #[allow(deprecated)] pub fn infra_host_top99p_sum(mut self, value: i64) -> Self { self.infra_host_top99p_sum = Some(value); @@ -2467,6 +2477,7 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { let mut incident_management_monthly_active_users_hwm_sum: Option = None; let mut incident_management_seats_hwm_sum: Option = None; let mut indexed_events_count_agg_sum: Option = None; + let mut infra_edge_monitoring_devices_top99p_sum: Option = None; let mut infra_host_top99p_sum: Option = None; let mut ingested_events_bytes_agg_sum: Option = None; let mut iot_device_agg_sum: Option = None; @@ -3252,6 +3263,12 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { } indexed_events_count_agg_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); }, + "infra_edge_monitoring_devices_top99p_sum" => { + if v.is_null() { + continue; + } + infra_edge_monitoring_devices_top99p_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); + }, "infra_host_top99p_sum" => { if v.is_null() { continue; @@ -4060,6 +4077,7 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { incident_management_monthly_active_users_hwm_sum, incident_management_seats_hwm_sum, indexed_events_count_agg_sum, + infra_edge_monitoring_devices_top99p_sum, infra_host_top99p_sum, ingested_events_bytes_agg_sum, iot_device_agg_sum,