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 @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
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 @@ -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<i64>,
/// 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<i64>,
/// 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<i64>,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -2329,6 +2339,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
let mut incident_management_monthly_active_users_hwm: Option<i64> = None;
let mut incident_management_seats_hwm: Option<i64> = None;
let mut indexed_events_count_sum: Option<i64> = None;
let mut infra_edge_monitoring_devices_top99p: Option<i64> = None;
let mut infra_host_top99p: Option<i64> = None;
let mut ingested_events_bytes_sum: Option<i64> = None;
let mut iot_device_sum: Option<i64> = None;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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,
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 @@ -342,6 +342,9 @@ pub struct UsageSummaryDateOrg {
#[deprecated]
#[serde(rename = "indexed_events_count_sum")]
pub indexed_events_count_sum: Option<i64>,
/// 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<i64>,
/// 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<i64>,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -2394,6 +2404,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
let mut incident_management_monthly_active_users_hwm: Option<i64> = None;
let mut incident_management_seats_hwm: Option<i64> = None;
let mut indexed_events_count_sum: Option<i64> = None;
let mut infra_edge_monitoring_devices_top99p: Option<i64> = None;
let mut infra_host_top99p: Option<i64> = None;
let mut ingested_events_bytes_sum: Option<i64> = None;
let mut iot_device_agg_sum: Option<i64> = None;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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,
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 @@ -339,6 +339,9 @@ pub struct UsageSummaryResponse {
#[deprecated]
#[serde(rename = "indexed_events_count_agg_sum")]
pub indexed_events_count_agg_sum: Option<i64>,
/// 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<i64>,
/// 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<i64>,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -2467,6 +2477,7 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
let mut incident_management_monthly_active_users_hwm_sum: Option<i64> = None;
let mut incident_management_seats_hwm_sum: Option<i64> = None;
let mut indexed_events_count_agg_sum: Option<i64> = None;
let mut infra_edge_monitoring_devices_top99p_sum: Option<i64> = None;
let mut infra_host_top99p_sum: Option<i64> = None;
let mut ingested_events_bytes_agg_sum: Option<i64> = None;
let mut iot_device_agg_sum: Option<i64> = None;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down