diff --git a/.apigentools-info b/.apigentools-info index f1bc2255f..60fc1fa50 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2024-10-01 16:17:40.147007", - "spec_repo_commit": "65dbf403" + "regenerated": "2024-10-01 19:12:36.177491", + "spec_repo_commit": "34a01c1d" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2024-10-01 16:17:40.161239", - "spec_repo_commit": "65dbf403" + "regenerated": "2024-10-01 19:12:36.192598", + "spec_repo_commit": "34a01c1d" } } } \ No newline at end of file diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 7c9f856b8..3ed2686dd 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -19490,6 +19490,16 @@ components: hours in the current date for the given org. format: int64 type: integer + oci_host_sum: + description: Shows the sum of all Oracle Cloud Infrastructure hosts over + all hours in the current date for the given org. + format: int64 + type: integer + oci_host_top99p: + description: Shows the 99th percentile of all Oracle Cloud Infrastructure + hosts over all hours in the current date for the given org. + format: int64 + type: integer online_archive_events_count_sum: description: Sum of all online archived events over all hours in the current date for all organizations. @@ -20229,6 +20239,16 @@ components: hours in the current date for the given org. format: int64 type: integer + oci_host_sum: + description: Shows the sum of all Oracle Cloud Infrastructure hosts over + all hours in the current date for the given org. + format: int64 + type: integer + oci_host_top99p: + description: Shows the 99th percentile of all Oracle Cloud Infrastructure + hosts over all hours in the current date for the given org. + format: int64 + type: integer online_archive_events_count_sum: description: Sum of all online archived events over all hours in the current date for the given org. @@ -20991,6 +21011,16 @@ components: hours in the current month for all organizations. format: int64 type: integer + oci_host_agg_sum: + description: Shows the sum of Oracle Cloud Infrastructure hosts over all + hours in the current months for all organizations + format: int64 + type: integer + oci_host_top99p_sum: + description: Shows the 99th percentile of Oracle Cloud Infrastructure hosts + over all hours in the current months for all organizations + format: int64 + type: integer online_archive_events_count_agg_sum: description: Sum of all online archived events 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 e7254b955..f0e0e505c 100644 --- a/src/datadogV1/model/model_usage_summary_date.rs +++ b/src/datadogV1/model/model_usage_summary_date.rs @@ -284,6 +284,12 @@ pub struct UsageSummaryDate { /// Sum of all observability pipelines bytes processed over all hours in the current date for the given org. #[serde(rename = "observability_pipelines_bytes_processed_sum")] pub observability_pipelines_bytes_processed_sum: Option, + /// Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org. + #[serde(rename = "oci_host_sum")] + pub oci_host_sum: Option, + /// Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org. + #[serde(rename = "oci_host_top99p")] + pub oci_host_top99p: Option, /// Sum of all online archived events over all hours in the current date for all organizations. #[serde(rename = "online_archive_events_count_sum")] pub online_archive_events_count_sum: Option, @@ -522,6 +528,8 @@ impl UsageSummaryDate { netflow_indexed_events_count_sum: None, npm_host_top99p: None, observability_pipelines_bytes_processed_sum: None, + oci_host_sum: None, + oci_host_top99p: None, online_archive_events_count_sum: None, opentelemetry_apm_host_top99p: None, opentelemetry_host_top99p: None, @@ -1095,6 +1103,18 @@ impl UsageSummaryDate { self } + #[allow(deprecated)] + pub fn oci_host_sum(mut self, value: i64) -> Self { + self.oci_host_sum = Some(value); + self + } + + #[allow(deprecated)] + pub fn oci_host_top99p(mut self, value: i64) -> Self { + self.oci_host_top99p = Some(value); + self + } + #[allow(deprecated)] pub fn online_archive_events_count_sum(mut self, value: i64) -> Self { self.online_archive_events_count_sum = Some(value); @@ -1490,6 +1510,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDate { let mut netflow_indexed_events_count_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; + let mut oci_host_top99p: Option = None; let mut online_archive_events_count_sum: Option = None; let mut opentelemetry_apm_host_top99p: Option = None; let mut opentelemetry_host_top99p: Option = None; @@ -2152,6 +2174,20 @@ impl<'de> Deserialize<'de> for UsageSummaryDate { observability_pipelines_bytes_processed_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); } + "oci_host_sum" => { + if v.is_null() { + continue; + } + oci_host_sum = + Some(serde_json::from_value(v).map_err(M::Error::custom)?); + } + "oci_host_top99p" => { + if v.is_null() { + continue; + } + oci_host_top99p = + Some(serde_json::from_value(v).map_err(M::Error::custom)?); + } "online_archive_events_count_sum" => { if v.is_null() { continue; @@ -2570,6 +2606,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDate { netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, + oci_host_sum, + oci_host_top99p, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, diff --git a/src/datadogV1/model/model_usage_summary_date_org.rs b/src/datadogV1/model/model_usage_summary_date_org.rs index 9dfbcb6f5..7bb133f9b 100644 --- a/src/datadogV1/model/model_usage_summary_date_org.rs +++ b/src/datadogV1/model/model_usage_summary_date_org.rs @@ -300,6 +300,12 @@ pub struct UsageSummaryDateOrg { /// Sum of all observability pipelines bytes processed over all hours in the current date for the given org. #[serde(rename = "observability_pipelines_bytes_processed_sum")] pub observability_pipelines_bytes_processed_sum: Option, + /// Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org. + #[serde(rename = "oci_host_sum")] + pub oci_host_sum: Option, + /// Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org. + #[serde(rename = "oci_host_top99p")] + pub oci_host_top99p: Option, /// Sum of all online archived events over all hours in the current date for the given org. #[serde(rename = "online_archive_events_count_sum")] pub online_archive_events_count_sum: Option, @@ -546,6 +552,8 @@ impl UsageSummaryDateOrg { netflow_indexed_events_count_sum: None, npm_host_top99p: None, observability_pipelines_bytes_processed_sum: None, + oci_host_sum: None, + oci_host_top99p: None, online_archive_events_count_sum: None, opentelemetry_apm_host_top99p: None, opentelemetry_host_top99p: None, @@ -1150,6 +1158,18 @@ impl UsageSummaryDateOrg { self } + #[allow(deprecated)] + pub fn oci_host_sum(mut self, value: i64) -> Self { + self.oci_host_sum = Some(value); + self + } + + #[allow(deprecated)] + pub fn oci_host_top99p(mut self, value: i64) -> Self { + self.oci_host_top99p = Some(value); + self + } + #[allow(deprecated)] pub fn online_archive_events_count_sum(mut self, value: i64) -> Self { self.online_archive_events_count_sum = Some(value); @@ -1556,6 +1576,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg { let mut netflow_indexed_events_count_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; + let mut oci_host_top99p: Option = None; let mut online_archive_events_count_sum: Option = None; let mut opentelemetry_apm_host_top99p: Option = None; let mut opentelemetry_host_top99p: Option = None; @@ -2253,6 +2275,20 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg { observability_pipelines_bytes_processed_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); } + "oci_host_sum" => { + if v.is_null() { + continue; + } + oci_host_sum = + Some(serde_json::from_value(v).map_err(M::Error::custom)?); + } + "oci_host_top99p" => { + if v.is_null() { + continue; + } + oci_host_top99p = + Some(serde_json::from_value(v).map_err(M::Error::custom)?); + } "online_archive_events_count_sum" => { if v.is_null() { continue; @@ -2682,6 +2718,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg { netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, + oci_host_sum, + oci_host_top99p, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, diff --git a/src/datadogV1/model/model_usage_summary_response.rs b/src/datadogV1/model/model_usage_summary_response.rs index a7ecd4636..5a9edd4fa 100644 --- a/src/datadogV1/model/model_usage_summary_response.rs +++ b/src/datadogV1/model/model_usage_summary_response.rs @@ -307,6 +307,12 @@ pub struct UsageSummaryResponse { /// Sum of all observability pipelines bytes processed over all hours in the current month for all organizations. #[serde(rename = "observability_pipelines_bytes_processed_agg_sum")] pub observability_pipelines_bytes_processed_agg_sum: Option, + /// Shows the sum of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations + #[serde(rename = "oci_host_agg_sum")] + pub oci_host_agg_sum: Option, + /// Shows the 99th percentile of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations + #[serde(rename = "oci_host_top99p_sum")] + pub oci_host_top99p_sum: Option, /// Sum of all online archived events over all hours in the current month for all organizations. #[serde(rename = "online_archive_events_count_agg_sum")] pub online_archive_events_count_agg_sum: Option, @@ -565,6 +571,8 @@ impl UsageSummaryResponse { netflow_indexed_events_count_agg_sum: None, npm_host_top99p_sum: None, observability_pipelines_bytes_processed_agg_sum: None, + oci_host_agg_sum: None, + oci_host_top99p_sum: None, online_archive_events_count_agg_sum: None, opentelemetry_apm_host_top99p_sum: None, opentelemetry_host_top99p_sum: None, @@ -1184,6 +1192,18 @@ impl UsageSummaryResponse { self } + #[allow(deprecated)] + pub fn oci_host_agg_sum(mut self, value: i64) -> Self { + self.oci_host_agg_sum = Some(value); + self + } + + #[allow(deprecated)] + pub fn oci_host_top99p_sum(mut self, value: i64) -> Self { + self.oci_host_top99p_sum = Some(value); + self + } + #[allow(deprecated)] pub fn online_archive_events_count_agg_sum(mut self, value: i64) -> Self { self.online_archive_events_count_agg_sum = Some(value); @@ -1610,6 +1630,8 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { let mut netflow_indexed_events_count_agg_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; + let mut oci_host_top99p_sum: Option = None; let mut online_archive_events_count_agg_sum: Option = None; let mut opentelemetry_apm_host_top99p_sum: Option = None; let mut opentelemetry_host_top99p_sum: Option = None; @@ -2325,6 +2347,20 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { observability_pipelines_bytes_processed_agg_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?); } + "oci_host_agg_sum" => { + if v.is_null() { + continue; + } + oci_host_agg_sum = + Some(serde_json::from_value(v).map_err(M::Error::custom)?); + } + "oci_host_top99p_sum" => { + if v.is_null() { + continue; + } + oci_host_top99p_sum = + Some(serde_json::from_value(v).map_err(M::Error::custom)?); + } "online_archive_events_count_agg_sum" => { if v.is_null() { continue; @@ -2777,6 +2813,8 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse { netflow_indexed_events_count_agg_sum, npm_host_top99p_sum, observability_pipelines_bytes_processed_agg_sum, + oci_host_agg_sum, + oci_host_top99p_sum, online_archive_events_count_agg_sum, opentelemetry_apm_host_top99p_sum, opentelemetry_host_top99p_sum,