Skip to content

Commit c613eaf

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit de9340c of spec repo
1 parent e6eaace commit c613eaf

File tree

4 files changed

+69
-0
lines changed

4 files changed

+69
-0
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21196,6 +21196,11 @@ components:
2119621196
users over all hours in the current date for all organizations.
2119721197
format: int64
2119821198
type: integer
21199+
incident_management_seats_hwm:
21200+
description: Shows the high-water mark of Incident Management seats over
21201+
all hours in the current date for all organizations.
21202+
format: int64
21203+
type: integer
2119921204
indexed_events_count_sum:
2120021205
description: Shows the sum of all log events indexed over all hours in the
2120121206
current date for all organizations.
@@ -22312,6 +22317,11 @@ components:
2231222317
users over all hours in the current date for the given org.
2231322318
format: int64
2231422319
type: integer
22320+
incident_management_seats_hwm:
22321+
description: Shows the high-water mark of Incident Management seats over
22322+
all hours in the current date for the given org.
22323+
format: int64
22324+
type: integer
2231522325
indexed_events_count_sum:
2231622326
deprecated: true
2231722327
description: Shows the sum of all log events indexed over all hours in the
@@ -23429,6 +23439,11 @@ components:
2342923439
active users in the current month for all organizations.
2343023440
format: int64
2343123441
type: integer
23442+
incident_management_seats_hwm_sum:
23443+
description: Shows the sum of the high-water marks of Incident Management
23444+
seats over all hours in the current month for all organizations.
23445+
format: int64
23446+
type: integer
2343223447
indexed_events_count_agg_sum:
2343323448
deprecated: true
2343423449
description: Shows the sum of all log events indexed over all hours in the

src/datadogV1/model/model_usage_summary_date.rs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,9 @@ pub struct UsageSummaryDate {
311311
/// Shows the high-water mark of incident management monthly active users over all hours in the current date for all organizations.
312312
#[serde(rename = "incident_management_monthly_active_users_hwm")]
313313
pub incident_management_monthly_active_users_hwm: Option<i64>,
314+
/// Shows the high-water mark of Incident Management seats over all hours in the current date for all organizations.
315+
#[serde(rename = "incident_management_seats_hwm")]
316+
pub incident_management_seats_hwm: Option<i64>,
314317
/// Shows the sum of all log events indexed over all hours in the current date for all organizations.
315318
#[serde(rename = "indexed_events_count_sum")]
316319
pub indexed_events_count_sum: Option<i64>,
@@ -750,6 +753,7 @@ impl UsageSummaryDate {
750753
gcp_host_top99p: None,
751754
heroku_host_top99p: None,
752755
incident_management_monthly_active_users_hwm: None,
756+
incident_management_seats_hwm: None,
753757
indexed_events_count_sum: None,
754758
infra_host_top99p: None,
755759
ingested_events_bytes_sum: None,
@@ -1458,6 +1462,12 @@ impl UsageSummaryDate {
14581462
self
14591463
}
14601464

1465+
#[allow(deprecated)]
1466+
pub fn incident_management_seats_hwm(mut self, value: i64) -> Self {
1467+
self.incident_management_seats_hwm = Some(value);
1468+
self
1469+
}
1470+
14611471
#[allow(deprecated)]
14621472
pub fn indexed_events_count_sum(mut self, value: i64) -> Self {
14631473
self.indexed_events_count_sum = Some(value);
@@ -2253,6 +2263,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
22532263
let mut gcp_host_top99p: Option<i64> = None;
22542264
let mut heroku_host_top99p: Option<i64> = None;
22552265
let mut incident_management_monthly_active_users_hwm: Option<i64> = None;
2266+
let mut incident_management_seats_hwm: Option<i64> = None;
22562267
let mut indexed_events_count_sum: Option<i64> = None;
22572268
let mut infra_host_top99p: Option<i64> = None;
22582269
let mut ingested_events_bytes_sum: Option<i64> = None;
@@ -2972,6 +2983,12 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
29722983
}
29732984
incident_management_monthly_active_users_hwm = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
29742985
},
2986+
"incident_management_seats_hwm" => {
2987+
if v.is_null() {
2988+
continue;
2989+
}
2990+
incident_management_seats_hwm = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
2991+
},
29752992
"indexed_events_count_sum" => {
29762993
if v.is_null() {
29772994
continue;
@@ -3717,6 +3734,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDate {
37173734
gcp_host_top99p,
37183735
heroku_host_top99p,
37193736
incident_management_monthly_active_users_hwm,
3737+
incident_management_seats_hwm,
37203738
indexed_events_count_sum,
37213739
infra_host_top99p,
37223740
ingested_events_bytes_sum,

src/datadogV1/model/model_usage_summary_date_org.rs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,9 @@ pub struct UsageSummaryDateOrg {
323323
/// Shows the high-water mark of incident management monthly active users over all hours in the current date for the given org.
324324
#[serde(rename = "incident_management_monthly_active_users_hwm")]
325325
pub incident_management_monthly_active_users_hwm: Option<i64>,
326+
/// Shows the high-water mark of Incident Management seats over all hours in the current date for the given org.
327+
#[serde(rename = "incident_management_seats_hwm")]
328+
pub incident_management_seats_hwm: Option<i64>,
326329
/// Shows the sum of all log events indexed over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
327330
#[deprecated]
328331
#[serde(rename = "indexed_events_count_sum")]
@@ -773,6 +776,7 @@ impl UsageSummaryDateOrg {
773776
heroku_host_top99p: None,
774777
id: None,
775778
incident_management_monthly_active_users_hwm: None,
779+
incident_management_seats_hwm: None,
776780
indexed_events_count_sum: None,
777781
infra_host_top99p: None,
778782
ingested_events_bytes_sum: None,
@@ -1507,6 +1511,12 @@ impl UsageSummaryDateOrg {
15071511
self
15081512
}
15091513

1514+
#[allow(deprecated)]
1515+
pub fn incident_management_seats_hwm(mut self, value: i64) -> Self {
1516+
self.incident_management_seats_hwm = Some(value);
1517+
self
1518+
}
1519+
15101520
#[allow(deprecated)]
15111521
pub fn indexed_events_count_sum(mut self, value: i64) -> Self {
15121522
self.indexed_events_count_sum = Some(value);
@@ -2318,6 +2328,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
23182328
let mut heroku_host_top99p: Option<i64> = None;
23192329
let mut id: Option<String> = None;
23202330
let mut incident_management_monthly_active_users_hwm: Option<i64> = None;
2331+
let mut incident_management_seats_hwm: Option<i64> = None;
23212332
let mut indexed_events_count_sum: Option<i64> = None;
23222333
let mut infra_host_top99p: Option<i64> = None;
23232334
let mut ingested_events_bytes_sum: Option<i64> = None;
@@ -3063,6 +3074,12 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
30633074
}
30643075
incident_management_monthly_active_users_hwm = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
30653076
},
3077+
"incident_management_seats_hwm" => {
3078+
if v.is_null() {
3079+
continue;
3080+
}
3081+
incident_management_seats_hwm = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
3082+
},
30663083
"indexed_events_count_sum" => {
30673084
if v.is_null() {
30683085
continue;
@@ -3824,6 +3841,7 @@ impl<'de> Deserialize<'de> for UsageSummaryDateOrg {
38243841
heroku_host_top99p,
38253842
id,
38263843
incident_management_monthly_active_users_hwm,
3844+
incident_management_seats_hwm,
38273845
indexed_events_count_sum,
38283846
infra_host_top99p,
38293847
ingested_events_bytes_sum,

src/datadogV1/model/model_usage_summary_response.rs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,9 @@ pub struct UsageSummaryResponse {
320320
/// Shows sum of the high-water marks of incident management monthly active users in the current month for all organizations.
321321
#[serde(rename = "incident_management_monthly_active_users_hwm_sum")]
322322
pub incident_management_monthly_active_users_hwm_sum: Option<i64>,
323+
/// Shows the sum of the high-water marks of Incident Management seats over all hours in the current month for all organizations.
324+
#[serde(rename = "incident_management_seats_hwm_sum")]
325+
pub incident_management_seats_hwm_sum: Option<i64>,
323326
/// Shows the sum of all log events indexed over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
324327
#[deprecated]
325328
#[serde(rename = "indexed_events_count_agg_sum")]
@@ -789,6 +792,7 @@ impl UsageSummaryResponse {
789792
gcp_host_top99p_sum: None,
790793
heroku_host_top99p_sum: None,
791794
incident_management_monthly_active_users_hwm_sum: None,
795+
incident_management_seats_hwm_sum: None,
792796
indexed_events_count_agg_sum: None,
793797
infra_host_top99p_sum: None,
794798
ingested_events_bytes_agg_sum: None,
@@ -1523,6 +1527,12 @@ impl UsageSummaryResponse {
15231527
self
15241528
}
15251529

1530+
#[allow(deprecated)]
1531+
pub fn incident_management_seats_hwm_sum(mut self, value: i64) -> Self {
1532+
self.incident_management_seats_hwm_sum = Some(value);
1533+
self
1534+
}
1535+
15261536
#[allow(deprecated)]
15271537
pub fn indexed_events_count_agg_sum(mut self, value: i64) -> Self {
15281538
self.indexed_events_count_agg_sum = Some(value);
@@ -2391,6 +2401,7 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
23912401
let mut gcp_host_top99p_sum: Option<i64> = None;
23922402
let mut heroku_host_top99p_sum: Option<i64> = None;
23932403
let mut incident_management_monthly_active_users_hwm_sum: Option<i64> = None;
2404+
let mut incident_management_seats_hwm_sum: Option<i64> = None;
23942405
let mut indexed_events_count_agg_sum: Option<i64> = None;
23952406
let mut infra_host_top99p_sum: Option<i64> = None;
23962407
let mut ingested_events_bytes_agg_sum: Option<i64> = None;
@@ -3139,6 +3150,12 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
31393150
}
31403151
incident_management_monthly_active_users_hwm_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
31413152
},
3153+
"incident_management_seats_hwm_sum" => {
3154+
if v.is_null() {
3155+
continue;
3156+
}
3157+
incident_management_seats_hwm_sum = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
3158+
},
31423159
"indexed_events_count_agg_sum" => {
31433160
if v.is_null() {
31443161
continue;
@@ -3935,6 +3952,7 @@ impl<'de> Deserialize<'de> for UsageSummaryResponse {
39353952
gcp_host_top99p_sum,
39363953
heroku_host_top99p_sum,
39373954
incident_management_monthly_active_users_hwm_sum,
3955+
incident_management_seats_hwm_sum,
39383956
indexed_events_count_agg_sum,
39393957
infra_host_top99p_sum,
39403958
ingested_events_bytes_agg_sum,

0 commit comments

Comments
 (0)