@@ -137,6 +137,9 @@ pub struct MonthlyUsageAttributionValues {
137
137
/// The Cloud Workload Security host usage by tag(s).
138
138
#[ serde( rename = "cws_hosts_usage" ) ]
139
139
pub cws_hosts_usage : Option < f64 > ,
140
+ /// The Data Jobs Monitoring usage by tag(s).
141
+ #[ serde( rename = "data_jobs_monitoring_usage" ) ]
142
+ pub data_jobs_monitoring_usage : Option < f64 > ,
140
143
/// The percentage of Database Monitoring host usage by tag(s).
141
144
#[ serde( rename = "dbm_hosts_percentage" ) ]
142
145
pub dbm_hosts_percentage : Option < f64 > ,
@@ -477,6 +480,7 @@ impl MonthlyUsageAttributionValues {
477
480
cws_containers_usage : None ,
478
481
cws_hosts_percentage : None ,
479
482
cws_hosts_usage : None ,
483
+ data_jobs_monitoring_usage : None ,
480
484
dbm_hosts_percentage : None ,
481
485
dbm_hosts_usage : None ,
482
486
dbm_queries_percentage : None ,
@@ -788,6 +792,11 @@ impl MonthlyUsageAttributionValues {
788
792
self
789
793
}
790
794
795
+ pub fn data_jobs_monitoring_usage ( mut self , value : f64 ) -> Self {
796
+ self . data_jobs_monitoring_usage = Some ( value) ;
797
+ self
798
+ }
799
+
791
800
pub fn dbm_hosts_percentage ( mut self , value : f64 ) -> Self {
792
801
self . dbm_hosts_percentage = Some ( value) ;
793
802
self
@@ -1342,6 +1351,7 @@ impl<'de> Deserialize<'de> for MonthlyUsageAttributionValues {
1342
1351
let mut cws_containers_usage: Option < f64 > = None ;
1343
1352
let mut cws_hosts_percentage: Option < f64 > = None ;
1344
1353
let mut cws_hosts_usage: Option < f64 > = None ;
1354
+ let mut data_jobs_monitoring_usage: Option < f64 > = None ;
1345
1355
let mut dbm_hosts_percentage: Option < f64 > = None ;
1346
1356
let mut dbm_hosts_usage: Option < f64 > = None ;
1347
1357
let mut dbm_queries_percentage: Option < f64 > = None ;
@@ -1739,6 +1749,13 @@ impl<'de> Deserialize<'de> for MonthlyUsageAttributionValues {
1739
1749
cws_hosts_usage =
1740
1750
Some ( serde_json:: from_value ( v) . map_err ( M :: Error :: custom) ?) ;
1741
1751
}
1752
+ "data_jobs_monitoring_usage" => {
1753
+ if v. is_null ( ) {
1754
+ continue ;
1755
+ }
1756
+ data_jobs_monitoring_usage =
1757
+ Some ( serde_json:: from_value ( v) . map_err ( M :: Error :: custom) ?) ;
1758
+ }
1742
1759
"dbm_hosts_percentage" => {
1743
1760
if v. is_null ( ) {
1744
1761
continue ;
@@ -2461,6 +2478,7 @@ impl<'de> Deserialize<'de> for MonthlyUsageAttributionValues {
2461
2478
cws_containers_usage,
2462
2479
cws_hosts_percentage,
2463
2480
cws_hosts_usage,
2481
+ data_jobs_monitoring_usage,
2464
2482
dbm_hosts_percentage,
2465
2483
dbm_hosts_usage,
2466
2484
dbm_queries_percentage,
0 commit comments