Skip to content

Commit 09ffba8

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 34a01c1d of spec repo
1 parent 273be6c commit 09ffba8

File tree

5 files changed

+148
-4
lines changed

5 files changed

+148
-4
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-01 16:17:40.147007",
8-
"spec_repo_commit": "65dbf403"
7+
"regenerated": "2024-10-01 19:12:36.177491",
8+
"spec_repo_commit": "34a01c1d"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-10-01 16:17:40.161239",
13-
"spec_repo_commit": "65dbf403"
12+
"regenerated": "2024-10-01 19:12:36.192598",
13+
"spec_repo_commit": "34a01c1d"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19490,6 +19490,16 @@ components:
1949019490
hours in the current date for the given org.
1949119491
format: int64
1949219492
type: integer
19493+
oci_host_sum:
19494+
description: Shows the sum of all Oracle Cloud Infrastructure hosts over
19495+
all hours in the current date for the given org.
19496+
format: int64
19497+
type: integer
19498+
oci_host_top99p:
19499+
description: Shows the 99th percentile of all Oracle Cloud Infrastructure
19500+
hosts over all hours in the current date for the given org.
19501+
format: int64
19502+
type: integer
1949319503
online_archive_events_count_sum:
1949419504
description: Sum of all online archived events over all hours in the current
1949519505
date for all organizations.
@@ -20229,6 +20239,16 @@ components:
2022920239
hours in the current date for the given org.
2023020240
format: int64
2023120241
type: integer
20242+
oci_host_sum:
20243+
description: Shows the sum of all Oracle Cloud Infrastructure hosts over
20244+
all hours in the current date for the given org.
20245+
format: int64
20246+
type: integer
20247+
oci_host_top99p:
20248+
description: Shows the 99th percentile of all Oracle Cloud Infrastructure
20249+
hosts over all hours in the current date for the given org.
20250+
format: int64
20251+
type: integer
2023220252
online_archive_events_count_sum:
2023320253
description: Sum of all online archived events over all hours in the current
2023420254
date for the given org.
@@ -20991,6 +21011,16 @@ components:
2099121011
hours in the current month for all organizations.
2099221012
format: int64
2099321013
type: integer
21014+
oci_host_agg_sum:
21015+
description: Shows the sum of Oracle Cloud Infrastructure hosts over all
21016+
hours in the current months for all organizations
21017+
format: int64
21018+
type: integer
21019+
oci_host_top99p_sum:
21020+
description: Shows the 99th percentile of Oracle Cloud Infrastructure hosts
21021+
over all hours in the current months for all organizations
21022+
format: int64
21023+
type: integer
2099421024
online_archive_events_count_agg_sum:
2099521025
description: Sum of all online archived events over all hours in the current
2099621026
month for all organizations.

src/datadogV1/model/model_usage_summary_date.rs

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,12 @@ pub struct UsageSummaryDate {
284284
/// Sum of all observability pipelines bytes processed over all hours in the current date for the given org.
285285
#[serde(rename = "observability_pipelines_bytes_processed_sum")]
286286
pub observability_pipelines_bytes_processed_sum: Option<i64>,
287+
/// Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
288+
#[serde(rename = "oci_host_sum")]
289+
pub oci_host_sum: Option<i64>,
290+
/// Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
291+
#[serde(rename = "oci_host_top99p")]
292+
pub oci_host_top99p: Option<i64>,
287293
/// Sum of all online archived events over all hours in the current date for all organizations.
288294
#[serde(rename = "online_archive_events_count_sum")]
289295
pub online_archive_events_count_sum: Option<i64>,
@@ -522,6 +528,8 @@ impl UsageSummaryDate {
522528
netflow_indexed_events_count_sum: None,
523529
npm_host_top99p: None,
524530
observability_pipelines_bytes_processed_sum: None,
531+
oci_host_sum: None,
532+
oci_host_top99p: None,
525533
online_archive_events_count_sum: None,
526534
opentelemetry_apm_host_top99p: None,
527535
opentelemetry_host_top99p: None,
@@ -1095,6 +1103,18 @@ impl UsageSummaryDate {
10951103
self
10961104
}
10971105

1106+
#[allow(deprecated)]
1107+
pub fn oci_host_sum(mut self, value: i64) -> Self {
1108+
self.oci_host_sum = Some(value);
1109+
self
1110+
}
1111+
1112+
#[allow(deprecated)]
1113+
pub fn oci_host_top99p(mut self, value: i64) -> Self {
1114+
self.oci_host_top99p = Some(value);
1115+
self
1116+
}
1117+
10981118
#[allow(deprecated)]
10991119
pub fn online_archive_events_count_sum(mut self, value: i64) -> Self {
11001120
self.online_archive_events_count_sum = Some(value);
@@ -1490,6 +1510,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
14901510
let mut netflow_indexed_events_count_sum: Option<i64> = None;
14911511
let mut npm_host_top99p: Option<i64> = None;
14921512
let mut observability_pipelines_bytes_processed_sum: Option<i64> = None;
1513+
let mut oci_host_sum: Option<i64> = None;
1514+
let mut oci_host_top99p: Option<i64> = None;
14931515
let mut online_archive_events_count_sum: Option<i64> = None;
14941516
let mut opentelemetry_apm_host_top99p: Option<i64> = None;
14951517
let mut opentelemetry_host_top99p: Option<i64> = None;
@@ -2152,6 +2174,20 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
21522174
observability_pipelines_bytes_processed_sum =
21532175
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
21542176
}
2177+
"oci_host_sum" => {
2178+
if v.is_null() {
2179+
continue;
2180+
}
2181+
oci_host_sum =
2182+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
2183+
}
2184+
"oci_host_top99p" => {
2185+
if v.is_null() {
2186+
continue;
2187+
}
2188+
oci_host_top99p =
2189+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
2190+
}
21552191
"online_archive_events_count_sum" => {
21562192
if v.is_null() {
21572193
continue;
@@ -2570,6 +2606,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
25702606
netflow_indexed_events_count_sum,
25712607
npm_host_top99p,
25722608
observability_pipelines_bytes_processed_sum,
2609+
oci_host_sum,
2610+
oci_host_top99p,
25732611
online_archive_events_count_sum,
25742612
opentelemetry_apm_host_top99p,
25752613
opentelemetry_host_top99p,

src/datadogV1/model/model_usage_summary_date_org.rs

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,12 @@ pub struct UsageSummaryDateOrg {
300300
/// Sum of all observability pipelines bytes processed over all hours in the current date for the given org.
301301
#[serde(rename = "observability_pipelines_bytes_processed_sum")]
302302
pub observability_pipelines_bytes_processed_sum: Option<i64>,
303+
/// Shows the sum of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
304+
#[serde(rename = "oci_host_sum")]
305+
pub oci_host_sum: Option<i64>,
306+
/// Shows the 99th percentile of all Oracle Cloud Infrastructure hosts over all hours in the current date for the given org.
307+
#[serde(rename = "oci_host_top99p")]
308+
pub oci_host_top99p: Option<i64>,
303309
/// Sum of all online archived events over all hours in the current date for the given org.
304310
#[serde(rename = "online_archive_events_count_sum")]
305311
pub online_archive_events_count_sum: Option<i64>,
@@ -546,6 +552,8 @@ impl UsageSummaryDateOrg {
546552
netflow_indexed_events_count_sum: None,
547553
npm_host_top99p: None,
548554
observability_pipelines_bytes_processed_sum: None,
555+
oci_host_sum: None,
556+
oci_host_top99p: None,
549557
online_archive_events_count_sum: None,
550558
opentelemetry_apm_host_top99p: None,
551559
opentelemetry_host_top99p: None,
@@ -1150,6 +1158,18 @@ impl UsageSummaryDateOrg {
11501158
self
11511159
}
11521160

1161+
#[allow(deprecated)]
1162+
pub fn oci_host_sum(mut self, value: i64) -> Self {
1163+
self.oci_host_sum = Some(value);
1164+
self
1165+
}
1166+
1167+
#[allow(deprecated)]
1168+
pub fn oci_host_top99p(mut self, value: i64) -> Self {
1169+
self.oci_host_top99p = Some(value);
1170+
self
1171+
}
1172+
11531173
#[allow(deprecated)]
11541174
pub fn online_archive_events_count_sum(mut self, value: i64) -> Self {
11551175
self.online_archive_events_count_sum = Some(value);
@@ -1556,6 +1576,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
15561576
let mut netflow_indexed_events_count_sum: Option<i64> = None;
15571577
let mut npm_host_top99p: Option<i64> = None;
15581578
let mut observability_pipelines_bytes_processed_sum: Option<i64> = None;
1579+
let mut oci_host_sum: Option<i64> = None;
1580+
let mut oci_host_top99p: Option<i64> = None;
15591581
let mut online_archive_events_count_sum: Option<i64> = None;
15601582
let mut opentelemetry_apm_host_top99p: Option<i64> = None;
15611583
let mut opentelemetry_host_top99p: Option<i64> = None;
@@ -2253,6 +2275,20 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
22532275
observability_pipelines_bytes_processed_sum =
22542276
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
22552277
}
2278+
"oci_host_sum" => {
2279+
if v.is_null() {
2280+
continue;
2281+
}
2282+
oci_host_sum =
2283+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
2284+
}
2285+
"oci_host_top99p" => {
2286+
if v.is_null() {
2287+
continue;
2288+
}
2289+
oci_host_top99p =
2290+
Some(serde_json::from_value(v).map_err(M::Error::custom)?);
2291+
}
22562292
"online_archive_events_count_sum" => {
22572293
if v.is_null() {
22582294
continue;
@@ -2682,6 +2718,8 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
26822718
netflow_indexed_events_count_sum,
26832719
npm_host_top99p,
26842720
observability_pipelines_bytes_processed_sum,
2721+
oci_host_sum,
2722+
oci_host_top99p,
26852723
online_archive_events_count_sum,
26862724
opentelemetry_apm_host_top99p,
26872725
opentelemetry_host_top99p,

src/datadogV1/model/model_usage_summary_response.rs

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)