Skip to content

Commit c68d541

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit ef7c2778 of spec repo
1 parent fdeece6 commit c68d541

File tree

7 files changed

+149
-6
lines changed

7 files changed

+149
-6
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2024-10-04 15:31:58.294860",
8-
"spec_repo_commit": "f28ad048"
7+
"regenerated": "2024-10-07 14:32:07.351355",
8+
"spec_repo_commit": "ef7c2778"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-10-04 15:31:58.309733",
13-
"spec_repo_commit": "f28ad048"
12+
"regenerated": "2024-10-07 14:32:07.365583",
13+
"spec_repo_commit": "ef7c2778"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19609,6 +19609,16 @@ components:
1960919609
events over all hours in the current date for the given org.
1961019610
format: int64
1961119611
type: integer
19612+
code_analysis_sa_committers_hwm:
19613+
description: Shows the high-water mark of all Static Analysis committers
19614+
over all hours in the current date for the given org.
19615+
format: int64
19616+
type: integer
19617+
code_analysis_sca_committers_hwm:
19618+
description: Shows the high-water mark of all static Software Composition
19619+
Analysis committers over all hours in the current date for the given org.
19620+
format: int64
19621+
type: integer
1961219622
container_avg:
1961319623
description: Shows the average of all distinct containers over all hours
1961419624
in the current date for all organizations.
@@ -20349,6 +20359,16 @@ components:
2034920359
events over all hours in the current date for the given org.
2035020360
format: int64
2035120361
type: integer
20362+
code_analysis_sa_committers_hwm:
20363+
description: Shows the high-water mark of all Static Analysis committers
20364+
over all hours in the current date for the given org.
20365+
format: int64
20366+
type: integer
20367+
code_analysis_sca_committers_hwm:
20368+
description: Shows the high-water mark of all static Software Composition
20369+
Analysis committers over all hours in the current date for the given org.
20370+
format: int64
20371+
type: integer
2035220372
container_avg:
2035320373
description: Shows the average of all distinct containers over all hours
2035420374
in the current date for the given org.
@@ -21100,6 +21120,16 @@ components:
2110021120
events over all hours in the current month for all organizations.
2110121121
format: int64
2110221122
type: integer
21123+
code_analysis_sa_committers_hwm_sum:
21124+
description: Shows the high-water mark of all Static Analysis committers
21125+
over all hours in the current month for all organizations.
21126+
format: int64
21127+
type: integer
21128+
code_analysis_sca_committers_hwm_sum:
21129+
description: Shows the high-water mark of all static Software Composition
21130+
Analysis committers over all hours in the current month for all organizations.
21131+
format: int64
21132+
type: integer
2110321133
container_avg_sum:
2110421134
description: Shows the average of all distinct containers over all hours
2110521135
in the current month for all organizations.

.generator/schemas/v2/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40326,7 +40326,7 @@ paths:
4032640326
`observability_pipelines`,
4032740327

4032840328
`online_archive`, `profiling`, `rum`, `rum_browser_sessions`, `rum_mobile_sessions`,
40329-
`sds`, `snmp`,
40329+
`sds`, `snmp`, `software_delivery`,
4033040330

4033140331
`synthetics_api`, `synthetics_browser`, `synthetics_mobile`, `synthetics_parallel_testing`,
4033240332
`timeseries`, `vuln_management`,

LICENSE-3rdparty.csv

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ openssl-sys,https://github.com/sfackler/rust-openssl,MIT,"Alex Crichton <alex@al
7979
parking_lot,https://github.com/Amanieu/parking_lot,Apache-2.0 OR MIT,Amanieu d'Antras <[email protected]>
8080
pin-project-lite,https://github.com/taiki-e/pin-project-lite,Apache-2.0 OR MIT,The pin-project-lite Authors
8181
pin-utils,https://github.com/rust-lang-nursery/pin-utils,MIT OR Apache-2.0,Josef Brandl <[email protected]>
82-
portable-atomic,https://github.com/taiki-e/portable-atomic,Apache-2.0 OR MIT,The portable-atomic Authors
8382
powerfmt,https://github.com/jhpratt/powerfmt,MIT OR Apache-2.0,Jacob Pratt <[email protected]>
8483
ppv-lite86,https://github.com/cryptocorrosion/cryptocorrosion,MIT OR Apache-2.0,The CryptoCorrosion Contributors
8584
proc-macro2,https://github.com/dtolnay/proc-macro2,MIT OR Apache-2.0,"David Tolnay <[email protected]>, Alex Crichton <[email protected]>"

src/datadogV1/model/model_usage_summary_date.rs

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,12 @@ pub struct UsageSummaryDate {
9898
/// Shows the sum of all Cloud Security Information and Event Management events over all hours in the current date for the given org.
9999
#[serde(rename = "cloud_siem_events_sum")]
100100
pub cloud_siem_events_sum: Option<i64>,
101+
/// Shows the high-water mark of all Static Analysis committers over all hours in the current date for the given org.
102+
#[serde(rename = "code_analysis_sa_committers_hwm")]
103+
pub code_analysis_sa_committers_hwm: Option<i64>,
104+
/// Shows the high-water mark of all static Software Composition Analysis committers over all hours in the current date for the given org.
105+
#[serde(rename = "code_analysis_sca_committers_hwm")]
106+
pub code_analysis_sca_committers_hwm: Option<i64>,
101107
/// Shows the average of all distinct containers over all hours in the current date for all organizations.
102108
#[serde(rename = "container_avg")]
103109
pub container_avg: Option<i64>,
@@ -469,6 +475,8 @@ impl UsageSummaryDate {
469475
cloud_cost_management_gcp_host_count_avg: None,
470476
cloud_cost_management_host_count_avg: None,
471477
cloud_siem_events_sum: None,
478+
code_analysis_sa_committers_hwm: None,
479+
code_analysis_sca_committers_hwm: None,
472480
container_avg: None,
473481
container_excl_agent_avg: None,
474482
container_hwm: None,
@@ -749,6 +757,18 @@ impl UsageSummaryDate {
749757
self
750758
}
751759

760+
#[allow(deprecated)]
761+
pub fn code_analysis_sa_committers_hwm(mut self, value: i64) -> Self {
762+
self.code_analysis_sa_committers_hwm = Some(value);
763+
self
764+
}
765+
766+
#[allow(deprecated)]
767+
pub fn code_analysis_sca_committers_hwm(mut self, value: i64) -> Self {
768+
self.code_analysis_sca_committers_hwm = Some(value);
769+
self
770+
}
771+
752772
#[allow(deprecated)]
753773
pub fn container_avg(mut self, value: i64) -> Self {
754774
self.container_avg = Some(value);
@@ -1451,6 +1471,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
14511471
let mut cloud_cost_management_gcp_host_count_avg: Option<i64> = None;
14521472
let mut cloud_cost_management_host_count_avg: Option<i64> = None;
14531473
let mut cloud_siem_events_sum: Option<i64> = None;
1474+
let mut code_analysis_sa_committers_hwm: Option<i64> = None;
1475+
let mut code_analysis_sca_committers_hwm: Option<i64> = None;
14541476
let mut container_avg: Option<i64> = None;
14551477
let mut container_excl_agent_avg: Option<i64> = None;
14561478
let mut container_hwm: Option<i64> = None;
@@ -1762,6 +1784,20 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
17621784
cloud_siem_events_sum =
17631785
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
17641786
}
1787+
"code_analysis_sa_committers_hwm" => {
1788+
if v.is_null() {
1789+
continue;
1790+
}
1791+
code_analysis_sa_committers_hwm =
1792+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
1793+
}
1794+
"code_analysis_sca_committers_hwm" => {
1795+
if v.is_null() {
1796+
continue;
1797+
}
1798+
code_analysis_sca_committers_hwm =
1799+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
1800+
}
17651801
"container_avg" => {
17661802
if v.is_null() {
17671803
continue;
@@ -2547,6 +2583,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
25472583
cloud_cost_management_gcp_host_count_avg,
25482584
cloud_cost_management_host_count_avg,
25492585
cloud_siem_events_sum,
2586+
code_analysis_sa_committers_hwm,
2587+
code_analysis_sca_committers_hwm,
25502588
container_avg,
25512589
container_excl_agent_avg,
25522590
container_hwm,

src/datadogV1/model/model_usage_summary_date_org.rs

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@ pub struct UsageSummaryDateOrg {
104104
/// Shows the sum of all Cloud Security Information and Event Management events over all hours in the current date for the given org.
105105
#[serde(rename = "cloud_siem_events_sum")]
106106
pub cloud_siem_events_sum: Option<i64>,
107+
/// Shows the high-water mark of all Static Analysis committers over all hours in the current date for the given org.
108+
#[serde(rename = "code_analysis_sa_committers_hwm")]
109+
pub code_analysis_sa_committers_hwm: Option<i64>,
110+
/// Shows the high-water mark of all static Software Composition Analysis committers over all hours in the current date for the given org.
111+
#[serde(rename = "code_analysis_sca_committers_hwm")]
112+
pub code_analysis_sca_committers_hwm: Option<i64>,
107113
/// Shows the average of all distinct containers over all hours in the current date for the given org.
108114
#[serde(rename = "container_avg")]
109115
pub container_avg: Option<i64>,
@@ -490,6 +496,8 @@ impl UsageSummaryDateOrg {
490496
cloud_cost_management_gcp_host_count_avg: None,
491497
cloud_cost_management_host_count_avg: None,
492498
cloud_siem_events_sum: None,
499+
code_analysis_sa_committers_hwm: None,
500+
code_analysis_sca_committers_hwm: None,
493501
container_avg: None,
494502
container_excl_agent_avg: None,
495503
container_hwm: None,
@@ -786,6 +794,18 @@ impl UsageSummaryDateOrg {
786794
self
787795
}
788796

797+
#[allow(deprecated)]
798+
pub fn code_analysis_sa_committers_hwm(mut self, value: i64) -> Self {
799+
self.code_analysis_sa_committers_hwm = Some(value);
800+
self
801+
}
802+
803+
#[allow(deprecated)]
804+
pub fn code_analysis_sca_committers_hwm(mut self, value: i64) -> Self {
805+
self.code_analysis_sca_committers_hwm = Some(value);
806+
self
807+
}
808+
789809
#[allow(deprecated)]
790810
pub fn container_avg(mut self, value: i64) -> Self {
791811
self.container_avg = Some(value);
@@ -1514,6 +1534,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
15141534
let mut cloud_cost_management_gcp_host_count_avg: Option<i64> = None;
15151535
let mut cloud_cost_management_host_count_avg: Option<i64> = None;
15161536
let mut cloud_siem_events_sum: Option<i64> = None;
1537+
let mut code_analysis_sa_committers_hwm: Option<i64> = None;
1538+
let mut code_analysis_sca_committers_hwm: Option<i64> = None;
15171539
let mut container_avg: Option<i64> = None;
15181540
let mut container_excl_agent_avg: Option<i64> = None;
15191541
let mut container_hwm: Option<i64> = None;
@@ -1843,6 +1865,20 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
18431865
cloud_siem_events_sum =
18441866
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
18451867
}
1868+
"code_analysis_sa_committers_hwm" => {
1869+
if v.is_null() {
1870+
continue;
1871+
}
1872+
code_analysis_sa_committers_hwm =
1873+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
1874+
}
1875+
"code_analysis_sca_committers_hwm" => {
1876+
if v.is_null() {
1877+
continue;
1878+
}
1879+
code_analysis_sca_committers_hwm =
1880+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
1881+
}
18461882
"container_avg" => {
18471883
if v.is_null() {
18481884
continue;
@@ -2656,6 +2692,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
26562692
cloud_cost_management_gcp_host_count_avg,
26572693
cloud_cost_management_host_count_avg,
26582694
cloud_siem_events_sum,
2695+
code_analysis_sa_committers_hwm,
2696+
code_analysis_sca_committers_hwm,
26592697
container_avg,
26602698
container_excl_agent_avg,
26612699
container_hwm,

src/datadogV1/model/model_usage_summary_response.rs

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,12 @@ pub struct UsageSummaryResponse {
101101
/// Shows the sum of all Cloud Security Information and Event Management events over all hours in the current month for all organizations.
102102
#[serde(rename = "cloud_siem_events_agg_sum")]
103103
pub cloud_siem_events_agg_sum: Option<i64>,
104+
/// Shows the high-water mark of all Static Analysis committers over all hours in the current month for all organizations.
105+
#[serde(rename = "code_analysis_sa_committers_hwm_sum")]
106+
pub code_analysis_sa_committers_hwm_sum: Option<i64>,
107+
/// Shows the high-water mark of all static Software Composition Analysis committers over all hours in the current month for all organizations.
108+
#[serde(rename = "code_analysis_sca_committers_hwm_sum")]
109+
pub code_analysis_sca_committers_hwm_sum: Option<i64>,
104110
/// Shows the average of all distinct containers over all hours in the current month for all organizations.
105111
#[serde(rename = "container_avg_sum")]
106112
pub container_avg_sum: Option<i64>,
@@ -506,6 +512,8 @@ impl UsageSummaryResponse {
506512
cloud_cost_management_gcp_host_count_avg_sum: None,
507513
cloud_cost_management_host_count_avg_sum: None,
508514
cloud_siem_events_agg_sum: None,
515+
code_analysis_sa_committers_hwm_sum: None,
516+
code_analysis_sca_committers_hwm_sum: None,
509517
container_avg_sum: None,
510518
container_excl_agent_avg_sum: None,
511519
container_hwm_sum: None,
@@ -802,6 +810,18 @@ impl UsageSummaryResponse {
802810
self
803811
}
804812

813+
#[allow(deprecated)]
814+
pub fn code_analysis_sa_committers_hwm_sum(mut self, value: i64) -> Self {
815+
self.code_analysis_sa_committers_hwm_sum = Some(value);
816+
self
817+
}
818+
819+
#[allow(deprecated)]
820+
pub fn code_analysis_sca_committers_hwm_sum(mut self, value: i64) -> Self {
821+
self.code_analysis_sca_committers_hwm_sum = Some(value);
822+
self
823+
}
824+
805825
#[allow(deprecated)]
806826
pub fn container_avg_sum(mut self, value: i64) -> Self {
807827
self.container_avg_sum = Some(value);
@@ -1565,6 +1585,8 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
15651585
let mut cloud_cost_management_gcp_host_count_avg_sum: Option<i64> = None;
15661586
let mut cloud_cost_management_host_count_avg_sum: Option<i64> = None;
15671587
let mut cloud_siem_events_agg_sum: Option<i64> = None;
1588+
let mut code_analysis_sa_committers_hwm_sum: Option<i64> = None;
1589+
let mut code_analysis_sca_committers_hwm_sum: Option<i64> = None;
15681590
let mut container_avg_sum: Option<i64> = None;
15691591
let mut container_excl_agent_avg_sum: Option<i64> = None;
15701592
let mut container_hwm_sum: Option<i64> = None;
@@ -1893,6 +1915,20 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
18931915
cloud_siem_events_agg_sum =
18941916
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
18951917
}
1918+
"code_analysis_sa_committers_hwm_sum" => {
1919+
if v.is_null() {
1920+
continue;
1921+
}
1922+
code_analysis_sa_committers_hwm_sum =
1923+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
1924+
}
1925+
"code_analysis_sca_committers_hwm_sum" => {
1926+
if v.is_null() {
1927+
continue;
1928+
}
1929+
code_analysis_sca_committers_hwm_sum =
1930+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
1931+
}
18961932
"container_avg_sum" => {
18971933
if v.is_null() {
18981934
continue;
@@ -2748,6 +2784,8 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
27482784
cloud_cost_management_gcp_host_count_avg_sum,
27492785
cloud_cost_management_host_count_avg_sum,
27502786
cloud_siem_events_agg_sum,
2787+
code_analysis_sa_committers_hwm_sum,
2788+
code_analysis_sca_committers_hwm_sum,
27512789
container_avg_sum,
27522790
container_excl_agent_avg_sum,
27532791
container_hwm_sum,

0 commit comments

Comments
 (0)