From a09fa3724c9b7f26882d47f1b4658a2d0d44c9ce Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Wed, 5 Nov 2025 16:47:52 +0000 Subject: [PATCH] Regenerate client from commit e470158 of spec repo --- .generator/schemas/v1/openapi.yaml | 30 ++++++++++++++++ .../model/model_usage_summary_date.rs | 36 +++++++++++++++++++ .../model/model_usage_summary_date_org.rs | 36 +++++++++++++++++++ .../model/model_usage_summary_response.rs | 36 +++++++++++++++++++ 4 files changed, 138 insertions(+) diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 11bca0724..81bb22eb0 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -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. @@ -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. @@ -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. @@ -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. @@ -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. @@ -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. diff --git a/src/datadogV1/model/model_usage_summary_date.rs b/src/datadogV1/model/model_usage_summary_date.rs index 59cc86e8f..7dd171958 100644 --- a/src/datadogV1/model/model_usage_summary_date.rs +++ b/src/datadogV1/model/model_usage_summary_date.rs @@ -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, + /// 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, /// 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, /// 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, + /// 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, /// 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, @@ -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, @@ -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); @@ -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); @@ -2136,8 +2156,10 @@ impl<'de> Deserialize<'de> for UsageSummaryDate { let mut agent_host_top99p: Option = None; let mut apm_azure_app_service_host_top99p: Option = None; let mut apm_devsecops_host_top99p: Option = None; + let mut apm_enterprise_standalone_hosts_top99p: Option = None; let mut apm_fargate_count_avg: Option = None; let mut apm_host_top99p: Option = None; + let mut apm_pro_standalone_hosts_top99p: Option = None; let mut appsec_fargate_count_avg: Option = None; let mut asm_serverless_sum: Option = None; let mut audit_logs_lines_indexed_sum: Option = None; @@ -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; @@ -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; @@ -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, diff --git a/src/datadogV1/model/model_usage_summary_date_org.rs b/src/datadogV1/model/model_usage_summary_date_org.rs index d750ffc3d..d841e3b11 100644 --- a/src/datadogV1/model/model_usage_summary_date_org.rs +++ b/src/datadogV1/model/model_usage_summary_date_org.rs @@ -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, + /// 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, /// 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, /// 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, + /// 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, /// 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, @@ -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, @@ -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); @@ -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); @@ -2199,8 +2219,10 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg { let mut agent_host_top99p: Option = None; let mut apm_azure_app_service_host_top99p: Option = None; let mut apm_devsecops_host_top99p: Option = None; + let mut apm_enterprise_standalone_hosts_top99p: Option = None; let mut apm_fargate_count_avg: Option = None; let mut apm_host_top99p: Option = None; + let mut apm_pro_standalone_hosts_top99p: Option = None; let mut appsec_fargate_count_avg: Option = None; let mut asm_serverless_sum: Option = None; let mut audit_logs_lines_indexed_sum: Option = None; @@ -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; @@ -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; @@ -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, diff --git a/src/datadogV1/model/model_usage_summary_response.rs b/src/datadogV1/model/model_usage_summary_response.rs index 175a7f685..d89f7fa89 100644 --- a/src/datadogV1/model/model_usage_summary_response.rs +++ b/src/datadogV1/model/model_usage_summary_response.rs @@ -20,12 +20,18 @@ pub struct UsageSummaryResponse { /// Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current month for all organizations. #[serde(rename = "apm_devsecops_host_top99p_sum")] pub apm_devsecops_host_top99p_sum: Option, + /// Shows the sum of the 99th percentile of all distinct standalone Enterprise hosts over all hours in the current month for all organizations. + #[serde(rename = "apm_enterprise_standalone_hosts_top99p_sum")] + pub apm_enterprise_standalone_hosts_top99p_sum: Option, /// Shows the average of all APM ECS Fargate tasks over all hours in the current month for all organizations. #[serde(rename = "apm_fargate_count_avg_sum")] pub apm_fargate_count_avg_sum: Option, /// Shows the 99th percentile of all distinct APM hosts over all hours in the current month for all organizations. #[serde(rename = "apm_host_top99p_sum")] pub apm_host_top99p_sum: Option, + /// Shows the sum of the 99th percentile of all distinct standalone Pro hosts over all hours in the current month for all organizations. + #[serde(rename = "apm_pro_standalone_hosts_top99p_sum")] + pub apm_pro_standalone_hosts_top99p_sum: Option, /// Shows the average of all Application Security Monitoring ECS Fargate tasks over all hours in the current month for all organizations. #[serde(rename = "appsec_fargate_count_avg_sum")] pub appsec_fargate_count_avg_sum: Option, @@ -684,8 +690,10 @@ impl UsageSummaryResponse { agent_host_top99p_sum: None, apm_azure_app_service_host_top99p_sum: None, apm_devsecops_host_top99p_sum: None, + apm_enterprise_standalone_hosts_top99p_sum: None, apm_fargate_count_avg_sum: None, apm_host_top99p_sum: None, + apm_pro_standalone_hosts_top99p_sum: None, appsec_fargate_count_avg_sum: None, asm_serverless_agg_sum: None, audit_logs_lines_indexed_agg_sum: None, @@ -918,6 +926,12 @@ impl UsageSummaryResponse { self } + #[allow(deprecated)] + pub fn apm_enterprise_standalone_hosts_top99p_sum(mut self, value: i64) -> Self { + self.apm_enterprise_standalone_hosts_top99p_sum = Some(value); + self + } + #[allow(deprecated)] pub fn apm_fargate_count_avg_sum(mut self, value: i64) -> Self { self.apm_fargate_count_avg_sum = Some(value); @@ -930,6 +944,12 @@ impl UsageSummaryResponse { self } + #[allow(deprecated)] + pub fn apm_pro_standalone_hosts_top99p_sum(mut self, value: i64) -> Self { + self.apm_pro_standalone_hosts_top99p_sum = Some(value); + self + } + #[allow(deprecated)] pub fn appsec_fargate_count_avg_sum(mut self, value: i64) -> Self { self.appsec_fargate_count_avg_sum = Some(value); @@ -2269,8 +2289,10 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { let mut agent_host_top99p_sum: Option = None; let mut apm_azure_app_service_host_top99p_sum: Option = None; let mut apm_devsecops_host_top99p_sum: Option = None; + let mut apm_enterprise_standalone_hosts_top99p_sum: Option = None; let mut apm_fargate_count_avg_sum: Option = None; let mut apm_host_top99p_sum: Option = None; + let mut apm_pro_standalone_hosts_top99p_sum: Option = None; let mut appsec_fargate_count_avg_sum: Option = None; let mut asm_serverless_agg_sum: Option = None; let mut audit_logs_lines_indexed_agg_sum: Option = None; @@ -2523,6 +2545,12 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { } apm_devsecops_host_top99p_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); }, + "apm_enterprise_standalone_hosts_top99p_sum" => { + if v.is_null() { + continue; + } + apm_enterprise_standalone_hosts_top99p_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); + }, "apm_fargate_count_avg_sum" => { if v.is_null() { continue; @@ -2535,6 +2563,12 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { } apm_host_top99p_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); }, + "apm_pro_standalone_hosts_top99p_sum" => { + if v.is_null() { + continue; + } + apm_pro_standalone_hosts_top99p_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); + }, "appsec_fargate_count_avg_sum" => { if v.is_null() { continue; @@ -3802,8 +3836,10 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { agent_host_top99p_sum, apm_azure_app_service_host_top99p_sum, apm_devsecops_host_top99p_sum, + apm_enterprise_standalone_hosts_top99p_sum, apm_fargate_count_avg_sum, apm_host_top99p_sum, + apm_pro_standalone_hosts_top99p_sum, appsec_fargate_count_avg_sum, asm_serverless_agg_sum, audit_logs_lines_indexed_agg_sum,