From 10cbf3a12b33d7b1c0eb42d9a7a25a682a2bc03f Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Tue, 3 Mar 2026 14:48:32 +0000 Subject: [PATCH] Regenerate client from commit 4c7bafd 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..78cb683bb 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -22026,6 +22026,11 @@ components: wireless devices over all hours in the current date for all organizations. format: int64 type: integer + network_path_sum: + description: Shows the sum of all Network Path scheduled tests over all + hours in the current date for all organizations. + format: int64 + type: integer npm_host_top99p: description: Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current @@ -23178,6 +23183,11 @@ components: wireless devices over all hours in the current date for the given org. format: int64 type: integer + network_path_sum: + description: Shows the sum of all Network Path scheduled tests over all + hours in the current date for the given org. + format: int64 + type: integer npm_host_top99p: description: Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current @@ -24351,6 +24361,11 @@ components: wireless devices over all hours in the current month for all organizations. format: int64 type: integer + network_path_sum_sum: + description: Shows the sum of all Network Path scheduled tests over all + hours in the current month for all organizations. + format: int64 + type: integer npm_host_top99p_sum: description: Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current diff --git a/src/datadogV1/model/model_usage_summary_date.rs b/src/datadogV1/model/model_usage_summary_date.rs index e31c059a4..741fcee2d 100644 --- a/src/datadogV1/model/model_usage_summary_date.rs +++ b/src/datadogV1/model/model_usage_summary_date.rs @@ -389,6 +389,9 @@ pub struct UsageSummaryDate { /// Shows the 99th percentile of all Network Device Monitoring wireless devices over all hours in the current date for all organizations. #[serde(rename = "network_device_wireless_top99p")] pub network_device_wireless_top99p: Option, + /// Shows the sum of all Network Path scheduled tests over all hours in the current date for all organizations. + #[serde(rename = "network_path_sum")] + pub network_path_sum: Option, /// Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current date for all organizations. #[serde(rename = "npm_host_top99p")] pub npm_host_top99p: Option, @@ -794,6 +797,7 @@ impl UsageSummaryDate { ndm_netflow_events_sum: None, netflow_indexed_events_count_sum: None, network_device_wireless_top99p: None, + network_path_sum: None, npm_host_top99p: None, observability_pipelines_bytes_processed_sum: None, oci_host_sum: None, @@ -1624,6 +1628,12 @@ impl UsageSummaryDate { self } + #[allow(deprecated)] + pub fn network_path_sum(mut self, value: i64) -> Self { + self.network_path_sum = Some(value); + self + } + #[allow(deprecated)] pub fn npm_host_top99p(mut self, value: i64) -> Self { self.npm_host_top99p = Some(value); @@ -2346,6 +2356,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDate { let mut ndm_netflow_events_sum: Option = None; let mut netflow_indexed_events_count_sum: Option = None; let mut network_device_wireless_top99p: Option = None; + let mut network_path_sum: Option = None; let mut npm_host_top99p: Option = None; let mut observability_pipelines_bytes_processed_sum: Option = None; let mut oci_host_sum: Option = None; @@ -3187,6 +3198,12 @@ impl<'de> Deserialize<'de> for UsageSummaryDate { } network_device_wireless_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?); }, + "network_path_sum" => { + if v.is_null() { + continue; + } + network_path_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); + }, "npm_host_top99p" => { if v.is_null() { continue; @@ -3859,6 +3876,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDate { ndm_netflow_events_sum, netflow_indexed_events_count_sum, network_device_wireless_top99p, + network_path_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, oci_host_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..edb543649 100644 --- a/src/datadogV1/model/model_usage_summary_date_org.rs +++ b/src/datadogV1/model/model_usage_summary_date_org.rs @@ -405,6 +405,9 @@ pub struct UsageSummaryDateOrg { /// Shows the 99th percentile of all Network Device Monitoring wireless devices over all hours in the current date for the given org. #[serde(rename = "network_device_wireless_top99p")] pub network_device_wireless_top99p: Option, + /// Shows the sum of all Network Path scheduled tests over all hours in the current date for the given org. + #[serde(rename = "network_path_sum")] + pub network_path_sum: Option, /// Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current date for the given org. #[serde(rename = "npm_host_top99p")] pub npm_host_top99p: Option, @@ -818,6 +821,7 @@ impl UsageSummaryDateOrg { ndm_netflow_events_sum: None, netflow_indexed_events_count_sum: None, network_device_wireless_top99p: None, + network_path_sum: None, npm_host_top99p: None, observability_pipelines_bytes_processed_sum: None, oci_host_sum: None, @@ -1679,6 +1683,12 @@ impl UsageSummaryDateOrg { self } + #[allow(deprecated)] + pub fn network_path_sum(mut self, value: i64) -> Self { + self.network_path_sum = Some(value); + self + } + #[allow(deprecated)] pub fn npm_host_top99p(mut self, value: i64) -> Self { self.npm_host_top99p = Some(value); @@ -2412,6 +2422,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg { let mut ndm_netflow_events_sum: Option = None; let mut netflow_indexed_events_count_sum: Option = None; let mut network_device_wireless_top99p: Option = None; + let mut network_path_sum: Option = None; let mut npm_host_top99p: Option = None; let mut observability_pipelines_bytes_processed_sum: Option = None; let mut oci_host_sum: Option = None; @@ -3284,6 +3295,12 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg { } network_device_wireless_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?); }, + "network_path_sum" => { + if v.is_null() { + continue; + } + network_path_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); + }, "npm_host_top99p" => { if v.is_null() { continue; @@ -3967,6 +3984,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg { ndm_netflow_events_sum, netflow_indexed_events_count_sum, network_device_wireless_top99p, + network_path_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, oci_host_sum, diff --git a/src/datadogV1/model/model_usage_summary_response.rs b/src/datadogV1/model/model_usage_summary_response.rs index 86b8c0e3a..4a071924a 100644 --- a/src/datadogV1/model/model_usage_summary_response.rs +++ b/src/datadogV1/model/model_usage_summary_response.rs @@ -412,6 +412,9 @@ pub struct UsageSummaryResponse { /// Shows the 99th percentile of all Network Device Monitoring wireless devices over all hours in the current month for all organizations. #[serde(rename = "network_device_wireless_top99p_sum")] pub network_device_wireless_top99p_sum: Option, + /// Shows the sum of all Network Path scheduled tests over all hours in the current month for all organizations. + #[serde(rename = "network_path_sum_sum")] + pub network_path_sum_sum: Option, /// Shows the 99th percentile of all distinct Cloud Network Monitoring hosts (formerly known as Network hosts) over all hours in the current month for all organizations. #[serde(rename = "npm_host_top99p_sum")] pub npm_host_top99p_sum: Option, @@ -837,6 +840,7 @@ impl UsageSummaryResponse { ndm_netflow_events_agg_sum: None, netflow_indexed_events_count_agg_sum: None, network_device_wireless_top99p_sum: None, + network_path_sum_sum: None, npm_host_top99p_sum: None, observability_pipelines_bytes_processed_agg_sum: None, oci_host_agg_sum: None, @@ -1713,6 +1717,12 @@ impl UsageSummaryResponse { self } + #[allow(deprecated)] + pub fn network_path_sum_sum(mut self, value: i64) -> Self { + self.network_path_sum_sum = Some(value); + self + } + #[allow(deprecated)] pub fn npm_host_top99p_sum(mut self, value: i64) -> Self { self.npm_host_top99p_sum = Some(value); @@ -2488,6 +2498,7 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { let mut ndm_netflow_events_agg_sum: Option = None; let mut netflow_indexed_events_count_agg_sum: Option = None; let mut network_device_wireless_top99p_sum: Option = None; + let mut network_path_sum_sum: Option = None; let mut npm_host_top99p_sum: Option = None; let mut observability_pipelines_bytes_processed_agg_sum: Option = None; let mut oci_host_agg_sum: Option = None; @@ -3378,6 +3389,12 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { } network_device_wireless_top99p_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); }, + "network_path_sum_sum" => { + if v.is_null() { + continue; + } + network_path_sum_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); + }, "npm_host_top99p_sum" => { if v.is_null() { continue; @@ -4081,6 +4098,7 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { ndm_netflow_events_agg_sum, netflow_indexed_events_count_agg_sum, network_device_wireless_top99p_sum, + network_path_sum_sum, npm_host_top99p_sum, observability_pipelines_bytes_processed_agg_sum, oci_host_agg_sum,