@@ -307,6 +307,12 @@ pub struct UsageSummaryResponse {
307307 /// Sum of all observability pipelines bytes processed over all hours in the current month for all organizations.
308308 #[ serde( rename = "observability_pipelines_bytes_processed_agg_sum" ) ]
309309 pub observability_pipelines_bytes_processed_agg_sum : Option < i64 > ,
310+ /// Shows the sum of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations
311+ #[ serde( rename = "oci_host_agg_sum" ) ]
312+ pub oci_host_agg_sum : Option < i64 > ,
313+ /// Shows the 99th percentile of Oracle Cloud Infrastructure hosts over all hours in the current months for all organizations
314+ #[ serde( rename = "oci_host_top99p_sum" ) ]
315+ pub oci_host_top99p_sum : Option < i64 > ,
310316 /// Sum of all online archived events over all hours in the current month for all organizations.
311317 #[ serde( rename = "online_archive_events_count_agg_sum" ) ]
312318 pub online_archive_events_count_agg_sum : Option < i64 > ,
@@ -565,6 +571,8 @@ impl UsageSummaryResponse {
565571 netflow_indexed_events_count_agg_sum : None ,
566572 npm_host_top99p_sum : None ,
567573 observability_pipelines_bytes_processed_agg_sum : None ,
574+ oci_host_agg_sum : None ,
575+ oci_host_top99p_sum : None ,
568576 online_archive_events_count_agg_sum : None ,
569577 opentelemetry_apm_host_top99p_sum : None ,
570578 opentelemetry_host_top99p_sum : None ,
@@ -1184,6 +1192,18 @@ impl UsageSummaryResponse {
11841192 self
11851193 }
11861194
1195+ #[ allow( deprecated) ]
1196+ pub fn oci_host_agg_sum ( mut self , value : i64 ) -> Self {
1197+ self . oci_host_agg_sum = Some ( value) ;
1198+ self
1199+ }
1200+
1201+ #[ allow( deprecated) ]
1202+ pub fn oci_host_top99p_sum ( mut self , value : i64 ) -> Self {
1203+ self . oci_host_top99p_sum = Some ( value) ;
1204+ self
1205+ }
1206+
11871207 #[ allow( deprecated) ]
11881208 pub fn online_archive_events_count_agg_sum ( mut self , value : i64 ) -> Self {
11891209 self . online_archive_events_count_agg_sum = Some ( value) ;
@@ -1610,6 +1630,8 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
16101630 let mut netflow_indexed_events_count_agg_sum: Option < i64 > = None ;
16111631 let mut npm_host_top99p_sum: Option < i64 > = None ;
16121632 let mut observability_pipelines_bytes_processed_agg_sum: Option < i64 > = None ;
1633+ let mut oci_host_agg_sum: Option < i64 > = None ;
1634+ let mut oci_host_top99p_sum: Option < i64 > = None ;
16131635 let mut online_archive_events_count_agg_sum: Option < i64 > = None ;
16141636 let mut opentelemetry_apm_host_top99p_sum: Option < i64 > = None ;
16151637 let mut opentelemetry_host_top99p_sum: Option < i64 > = None ;
@@ -2325,6 +2347,20 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
23252347 observability_pipelines_bytes_processed_agg_sum =
23262348 Some ( serde_json:: from_value ( v) . map_err ( M :: Error :: custom) ?) ;
23272349 }
2350+ "oci_host_agg_sum" => {
2351+ if v. is_null ( ) {
2352+ continue ;
2353+ }
2354+ oci_host_agg_sum =
2355+ Some ( serde_json:: from_value ( v) . map_err ( M :: Error :: custom) ?) ;
2356+ }
2357+ "oci_host_top99p_sum" => {
2358+ if v. is_null ( ) {
2359+ continue ;
2360+ }
2361+ oci_host_top99p_sum =
2362+ Some ( serde_json:: from_value ( v) . map_err ( M :: Error :: custom) ?) ;
2363+ }
23282364 "online_archive_events_count_agg_sum" => {
23292365 if v. is_null ( ) {
23302366 continue ;
@@ -2777,6 +2813,8 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
27772813 netflow_indexed_events_count_agg_sum,
27782814 npm_host_top99p_sum,
27792815 observability_pipelines_bytes_processed_agg_sum,
2816+ oci_host_agg_sum,
2817+ oci_host_top99p_sum,
27802818 online_archive_events_count_agg_sum,
27812819 opentelemetry_apm_host_top99p_sum,
27822820 opentelemetry_host_top99p_sum,
0 commit comments