@@ -307,6 +307,12 @@ pub struct UsageSummaryResponse {
307
307
/// Sum of all observability pipelines bytes processed over all hours in the current month for all organizations.
308
308
#[ serde( rename = "observability_pipelines_bytes_processed_agg_sum" ) ]
309
309
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 > ,
310
316
/// Sum of all online archived events over all hours in the current month for all organizations.
311
317
#[ serde( rename = "online_archive_events_count_agg_sum" ) ]
312
318
pub online_archive_events_count_agg_sum : Option < i64 > ,
@@ -565,6 +571,8 @@ impl UsageSummaryResponse {
565
571
netflow_indexed_events_count_agg_sum : None ,
566
572
npm_host_top99p_sum : None ,
567
573
observability_pipelines_bytes_processed_agg_sum : None ,
574
+ oci_host_agg_sum : None ,
575
+ oci_host_top99p_sum : None ,
568
576
online_archive_events_count_agg_sum : None ,
569
577
opentelemetry_apm_host_top99p_sum : None ,
570
578
opentelemetry_host_top99p_sum : None ,
@@ -1184,6 +1192,18 @@ impl UsageSummaryResponse {
1184
1192
self
1185
1193
}
1186
1194
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
+
1187
1207
#[ allow( deprecated) ]
1188
1208
pub fn online_archive_events_count_agg_sum ( mut self , value : i64 ) -> Self {
1189
1209
self . online_archive_events_count_agg_sum = Some ( value) ;
@@ -1610,6 +1630,8 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
1610
1630
let mut netflow_indexed_events_count_agg_sum: Option < i64 > = None ;
1611
1631
let mut npm_host_top99p_sum: Option < i64 > = None ;
1612
1632
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 ;
1613
1635
let mut online_archive_events_count_agg_sum: Option < i64 > = None ;
1614
1636
let mut opentelemetry_apm_host_top99p_sum: Option < i64 > = None ;
1615
1637
let mut opentelemetry_host_top99p_sum: Option < i64 > = None ;
@@ -2325,6 +2347,20 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
2325
2347
observability_pipelines_bytes_processed_agg_sum =
2326
2348
Some ( serde_json:: from_value ( v) . map_err ( M :: Error :: custom) ?) ;
2327
2349
}
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
+ }
2328
2364
"online_archive_events_count_agg_sum" => {
2329
2365
if v. is_null ( ) {
2330
2366
continue ;
@@ -2777,6 +2813,8 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
2777
2813
netflow_indexed_events_count_agg_sum,
2778
2814
npm_host_top99p_sum,
2779
2815
observability_pipelines_bytes_processed_agg_sum,
2816
+ oci_host_agg_sum,
2817
+ oci_host_top99p_sum,
2780
2818
online_archive_events_count_agg_sum,
2781
2819
opentelemetry_apm_host_top99p_sum,
2782
2820
opentelemetry_host_top99p_sum,
0 commit comments