Skip to content
Merged
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
30 changes: 30 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20700,6 +20700,11 @@ components:
hours in the current date for the given org.
format: int64
type: integer
apm_enterprise_standalone_hosts_top99p:
description: Shows the 99th percentile of all distinct standalone Enterprise
hosts over all hours in the current date for all organizations.
format: int64
type: integer
apm_fargate_count_avg:
description: Shows the average of all APM ECS Fargate tasks over all hours
in the current date for all organizations.
Expand All @@ -20710,6 +20715,11 @@ components:
hours in the current date for all organizations.
format: int64
type: integer
apm_pro_standalone_hosts_top99p:
description: Shows the 99th percentile of all distinct standalone Pro hosts
over all hours in the current date for all organizations.
format: int64
type: integer
appsec_fargate_count_avg:
description: Shows the average of all Application Security Monitoring ECS
Fargate tasks over all hours in the current date for all organizations.
Expand Down Expand Up @@ -21798,6 +21808,11 @@ components:
hours in the current date for the given org.
format: int64
type: integer
apm_enterprise_standalone_hosts_top99p:
description: Shows the 99th percentile of all distinct standalone Enterprise
hosts over all hours in the current date for the given org.
format: int64
type: integer
apm_fargate_count_avg:
description: Shows the average of all APM ECS Fargate tasks over all hours
in the current month for the given org.
Expand All @@ -21808,6 +21823,11 @@ components:
hours in the current date for the given org.
format: int64
type: integer
apm_pro_standalone_hosts_top99p:
description: Shows the 99th percentile of all distinct standalone Pro hosts
over all hours in the current date for the given org.
format: int64
type: integer
appsec_fargate_count_avg:
description: Shows the average of all Application Security Monitoring ECS
Fargate tasks over all hours in the current month for the given org.
Expand Down Expand Up @@ -22900,6 +22920,11 @@ components:
hours in the current month for all organizations.
format: int64
type: integer
apm_enterprise_standalone_hosts_top99p_sum:
description: Shows the sum of the 99th percentile of all distinct standalone
Enterprise hosts over all hours in the current month for all organizations.
format: int64
type: integer
apm_fargate_count_avg_sum:
description: Shows the average of all APM ECS Fargate tasks over all hours
in the current month for all organizations.
Expand All @@ -22910,6 +22935,11 @@ components:
hours in the current month for all organizations.
format: int64
type: integer
apm_pro_standalone_hosts_top99p_sum:
description: Shows the sum of the 99th percentile of all distinct standalone
Pro hosts over all hours in the current month for all organizations.
format: int64
type: integer
appsec_fargate_count_avg_sum:
description: Shows the average of all Application Security Monitoring ECS
Fargate tasks over all hours in the current month for all organizations.
Expand Down
36 changes: 36 additions & 0 deletions src/datadogV1/model/model_usage_summary_date.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,18 @@ pub struct UsageSummaryDate {
/// Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
#[serde(rename = "apm_devsecops_host_top99p")]
pub apm_devsecops_host_top99p: Option<i64>,
/// Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for all organizations.
#[serde(rename = "apm_enterprise_standalone_hosts_top99p")]
pub apm_enterprise_standalone_hosts_top99p: Option<i64>,
/// Shows the average of all APM ECS Fargate tasks over all hours in the current date for all organizations.
#[serde(rename = "apm_fargate_count_avg")]
pub apm_fargate_count_avg: Option<i64>,
/// Shows the 99th percentile of all distinct APM hosts over all hours in the current date for all organizations.
#[serde(rename = "apm_host_top99p")]
pub apm_host_top99p: Option<i64>,
/// Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for all organizations.
#[serde(rename = "apm_pro_standalone_hosts_top99p")]
pub apm_pro_standalone_hosts_top99p: Option<i64>,
/// Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current date for all organizations.
#[serde(rename = "appsec_fargate_count_avg")]
pub appsec_fargate_count_avg: Option<i64>,
Expand Down Expand Up @@ -648,8 +654,10 @@ impl UsageSummaryDate {
agent_host_top99p: None,
apm_azure_app_service_host_top99p: None,
apm_devsecops_host_top99p: None,
apm_enterprise_standalone_hosts_top99p: None,
apm_fargate_count_avg: None,
apm_host_top99p: None,
apm_pro_standalone_hosts_top99p: None,
appsec_fargate_count_avg: None,
asm_serverless_sum: None,
audit_logs_lines_indexed_sum: None,
Expand Down Expand Up @@ -871,6 +879,12 @@ impl UsageSummaryDate {
self
}

#[allow(deprecated)]
pub fn apm_enterprise_standalone_hosts_top99p(mut self, value: i64) -> Self {
self.apm_enterprise_standalone_hosts_top99p = Some(value);
self
}

#[allow(deprecated)]
pub fn apm_fargate_count_avg(mut self, value: i64) -> Self {
self.apm_fargate_count_avg = Some(value);
Expand All @@ -883,6 +897,12 @@ impl UsageSummaryDate {
self
}

#[allow(deprecated)]
pub fn apm_pro_standalone_hosts_top99p(mut self, value: i64) -> Self {
self.apm_pro_standalone_hosts_top99p = Some(value);
self
}

#[allow(deprecated)]
pub fn appsec_fargate_count_avg(mut self, value: i64) -> Self {
self.appsec_fargate_count_avg = Some(value);
Expand Down Expand Up @@ -2136,8 +2156,10 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
let mut agent_host_top99p: Option<i64> = None;
let mut apm_azure_app_service_host_top99p: Option<i64> = None;
let mut apm_devsecops_host_top99p: Option<i64> = None;
let mut apm_enterprise_standalone_hosts_top99p: Option<i64> = None;
let mut apm_fargate_count_avg: Option<i64> = None;
let mut apm_host_top99p: Option<i64> = None;
let mut apm_pro_standalone_hosts_top99p: Option<i64> = None;
let mut appsec_fargate_count_avg: Option<i64> = None;
let mut asm_serverless_sum: Option<i64> = None;
let mut audit_logs_lines_indexed_sum: Option<i64> = None;
Expand Down Expand Up @@ -2374,6 +2396,12 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
}
apm_devsecops_host_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"apm_enterprise_standalone_hosts_top99p" => {
if v.is_null() {
continue;
}
apm_enterprise_standalone_hosts_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"apm_fargate_count_avg" => {
if v.is_null() {
continue;
Expand All @@ -2386,6 +2414,12 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
}
apm_host_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"apm_pro_standalone_hosts_top99p" => {
if v.is_null() {
continue;
}
apm_pro_standalone_hosts_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"appsec_fargate_count_avg" => {
if v.is_null() {
continue;
Expand Down Expand Up @@ -3587,8 +3621,10 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
agent_host_top99p,
apm_azure_app_service_host_top99p,
apm_devsecops_host_top99p,
apm_enterprise_standalone_hosts_top99p,
apm_fargate_count_avg,
apm_host_top99p,
apm_pro_standalone_hosts_top99p,
appsec_fargate_count_avg,
asm_serverless_sum,
audit_logs_lines_indexed_sum,
Expand Down
36 changes: 36 additions & 0 deletions src/datadogV1/model/model_usage_summary_date_org.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,18 @@ pub struct UsageSummaryDateOrg {
/// Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
#[serde(rename = "apm_devsecops_host_top99p")]
pub apm_devsecops_host_top99p: Option<i64>,
/// Shows the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current date for the given org.
#[serde(rename = "apm_enterprise_standalone_hosts_top99p")]
pub apm_enterprise_standalone_hosts_top99p: Option<i64>,
/// Shows the average of all APM ECS Fargate tasks over all hours in the current month for the given org.
#[serde(rename = "apm_fargate_count_avg")]
pub apm_fargate_count_avg: Option<i64>,
/// Shows the 99th percentile of all distinct APM hosts over all hours in the current date for the given org.
#[serde(rename = "apm_host_top99p")]
pub apm_host_top99p: Option<i64>,
/// Shows the 99th percentile of all distinct standalone Pro hosts over all hours in the current date for the given org.
#[serde(rename = "apm_pro_standalone_hosts_top99p")]
pub apm_pro_standalone_hosts_top99p: Option<i64>,
/// Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for the given org.
#[serde(rename = "appsec_fargate_count_avg")]
pub appsec_fargate_count_avg: Option<i64>,
Expand Down Expand Up @@ -669,8 +675,10 @@ impl UsageSummaryDateOrg {
agent_host_top99p: None,
apm_azure_app_service_host_top99p: None,
apm_devsecops_host_top99p: None,
apm_enterprise_standalone_hosts_top99p: None,
apm_fargate_count_avg: None,
apm_host_top99p: None,
apm_pro_standalone_hosts_top99p: None,
appsec_fargate_count_avg: None,
asm_serverless_sum: None,
audit_logs_lines_indexed_sum: None,
Expand Down Expand Up @@ -908,6 +916,12 @@ impl UsageSummaryDateOrg {
self
}

#[allow(deprecated)]
pub fn apm_enterprise_standalone_hosts_top99p(mut self, value: i64) -> Self {
self.apm_enterprise_standalone_hosts_top99p = Some(value);
self
}

#[allow(deprecated)]
pub fn apm_fargate_count_avg(mut self, value: i64) -> Self {
self.apm_fargate_count_avg = Some(value);
Expand All @@ -920,6 +934,12 @@ impl UsageSummaryDateOrg {
self
}

#[allow(deprecated)]
pub fn apm_pro_standalone_hosts_top99p(mut self, value: i64) -> Self {
self.apm_pro_standalone_hosts_top99p = Some(value);
self
}

#[allow(deprecated)]
pub fn appsec_fargate_count_avg(mut self, value: i64) -> Self {
self.appsec_fargate_count_avg = Some(value);
Expand Down Expand Up @@ -2199,8 +2219,10 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
let mut agent_host_top99p: Option<i64> = None;
let mut apm_azure_app_service_host_top99p: Option<i64> = None;
let mut apm_devsecops_host_top99p: Option<i64> = None;
let mut apm_enterprise_standalone_hosts_top99p: Option<i64> = None;
let mut apm_fargate_count_avg: Option<i64> = None;
let mut apm_host_top99p: Option<i64> = None;
let mut apm_pro_standalone_hosts_top99p: Option<i64> = None;
let mut appsec_fargate_count_avg: Option<i64> = None;
let mut asm_serverless_sum: Option<i64> = None;
let mut audit_logs_lines_indexed_sum: Option<i64> = None;
Expand Down Expand Up @@ -2453,6 +2475,12 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
}
apm_devsecops_host_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"apm_enterprise_standalone_hosts_top99p" => {
if v.is_null() {
continue;
}
apm_enterprise_standalone_hosts_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"apm_fargate_count_avg" => {
if v.is_null() {
continue;
Expand All @@ -2465,6 +2493,12 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
}
apm_host_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"apm_pro_standalone_hosts_top99p" => {
if v.is_null() {
continue;
}
apm_pro_standalone_hosts_top99p = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
},
"appsec_fargate_count_avg" => {
if v.is_null() {
continue;
Expand Down Expand Up @@ -3692,8 +3726,10 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
agent_host_top99p,
apm_azure_app_service_host_top99p,
apm_devsecops_host_top99p,
apm_enterprise_standalone_hosts_top99p,
apm_fargate_count_avg,
apm_host_top99p,
apm_pro_standalone_hosts_top99p,
appsec_fargate_count_avg,
asm_serverless_sum,
audit_logs_lines_indexed_sum,
Expand Down
Loading
Loading