Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
18 changes: 18 additions & 0 deletions src/datadogV1/model/model_usage_summary_date.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<i64>,
/// 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<i64>,
/// 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<i64>,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -2346,6 +2356,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
let mut ndm_netflow_events_sum: Option<i64> = None;
let mut netflow_indexed_events_count_sum: Option<i64> = None;
let mut network_device_wireless_top99p: Option<i64> = None;
let mut network_path_sum: Option<i64> = None;
let mut npm_host_top99p: Option<i64> = None;
let mut observability_pipelines_bytes_processed_sum: Option<i64> = None;
let mut oci_host_sum: Option<i64> = None;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down
18 changes: 18 additions & 0 deletions src/datadogV1/model/model_usage_summary_date_org.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<i64>,
/// 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<i64>,
/// 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<i64>,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -2412,6 +2422,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
let mut ndm_netflow_events_sum: Option<i64> = None;
let mut netflow_indexed_events_count_sum: Option<i64> = None;
let mut network_device_wireless_top99p: Option<i64> = None;
let mut network_path_sum: Option<i64> = None;
let mut npm_host_top99p: Option<i64> = None;
let mut observability_pipelines_bytes_processed_sum: Option<i64> = None;
let mut oci_host_sum: Option<i64> = None;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down
18 changes: 18 additions & 0 deletions src/datadogV1/model/model_usage_summary_response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<i64>,
/// 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<i64>,
/// 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<i64>,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -2488,6 +2498,7 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
let mut ndm_netflow_events_agg_sum: Option<i64> = None;
let mut netflow_indexed_events_count_agg_sum: Option<i64> = None;
let mut network_device_wireless_top99p_sum: Option<i64> = None;
let mut network_path_sum_sum: Option<i64> = None;
let mut npm_host_top99p_sum: Option<i64> = None;
let mut observability_pipelines_bytes_processed_agg_sum: Option<i64> = None;
let mut oci_host_agg_sum: Option<i64> = None;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down
Loading