Skip to content

Commit 2414d75

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Regenerate client from commit 0f5c928e of spec repo (#2457)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent b941156 commit 2414d75

File tree

5 files changed

+43
-4
lines changed

5 files changed

+43
-4
lines changed

.apigentools-info

+4-4
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": "2025-03-18 16:20:35.016577",
8-
"spec_repo_commit": "78376979"
7+
"regenerated": "2025-03-20 15:01:19.638714",
8+
"spec_repo_commit": "0f5c928e"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-18 16:20:35.031209",
13-
"spec_repo_commit": "78376979"
12+
"regenerated": "2025-03-20 15:01:19.653993",
13+
"spec_repo_commit": "0f5c928e"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -20315,6 +20315,11 @@ components:
2031520315
Plus over all hours in the current date for the given org.
2031620316
format: int64
2031720317
type: integer
20318+
error_tracking_apm_error_events_sum:
20319+
description: Shows the sum of all Error Tracking APM error events over all
20320+
hours in the current date for the given org.
20321+
format: int64
20322+
type: integer
2031820323
error_tracking_error_events_sum:
2031920324
description: Shows the sum of all Error Tracking error events over all hours
2032020325
in the current date for the given org.
@@ -21200,6 +21205,11 @@ components:
2120021205
Plus over all hours in the current date for the given org.
2120121206
format: int64
2120221207
type: integer
21208+
error_tracking_apm_error_events_sum:
21209+
description: Shows the sum of all Error Tracking APM error events over all
21210+
hours in the current date for the given org.
21211+
format: int64
21212+
type: integer
2120321213
error_tracking_error_events_sum:
2120421214
description: Shows the sum of all Error Tracking error events over all hours
2120521215
in the current date for the given org.
@@ -22090,6 +22100,11 @@ components:
2209022100
Plus over all hours in the current month for all organizations.
2209122101
format: int64
2209222102
type: integer
22103+
error_tracking_apm_error_events_agg_sum:
22104+
description: Shows the sum of all Error Tracking APM error events over all
22105+
hours in the current month for all organizations.
22106+
format: int64
22107+
type: integer
2209322108
error_tracking_error_events_agg_sum:
2209422109
description: Shows the sum of all Error Tracking error events over all hours
2209522110
in the current month for all organizations.

src/datadog_api_client/v1/model/usage_summary_date.py

+8
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ def openapi_types(_):
9696
"eph_infra_host_opentelemetry_sum": (int,),
9797
"eph_infra_host_pro_sum": (int,),
9898
"eph_infra_host_proplus_sum": (int,),
99+
"error_tracking_apm_error_events_sum": (int,),
99100
"error_tracking_error_events_sum": (int,),
100101
"error_tracking_events_sum": (int,),
101102
"error_tracking_rum_error_events_sum": (int,),
@@ -261,6 +262,7 @@ def openapi_types(_):
261262
"eph_infra_host_opentelemetry_sum": "eph_infra_host_opentelemetry_sum",
262263
"eph_infra_host_pro_sum": "eph_infra_host_pro_sum",
263264
"eph_infra_host_proplus_sum": "eph_infra_host_proplus_sum",
265+
"error_tracking_apm_error_events_sum": "error_tracking_apm_error_events_sum",
264266
"error_tracking_error_events_sum": "error_tracking_error_events_sum",
265267
"error_tracking_events_sum": "error_tracking_events_sum",
266268
"error_tracking_rum_error_events_sum": "error_tracking_rum_error_events_sum",
@@ -427,6 +429,7 @@ def __init__(
427429
eph_infra_host_opentelemetry_sum: Union[int, UnsetType] = unset,
428430
eph_infra_host_pro_sum: Union[int, UnsetType] = unset,
429431
eph_infra_host_proplus_sum: Union[int, UnsetType] = unset,
432+
error_tracking_apm_error_events_sum: Union[int, UnsetType] = unset,
430433
error_tracking_error_events_sum: Union[int, UnsetType] = unset,
431434
error_tracking_events_sum: Union[int, UnsetType] = unset,
432435
error_tracking_rum_error_events_sum: Union[int, UnsetType] = unset,
@@ -738,6 +741,9 @@ def __init__(
738741
:param eph_infra_host_proplus_sum: Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current date for the given org.
739742
:type eph_infra_host_proplus_sum: int, optional
740743
744+
:param error_tracking_apm_error_events_sum: Shows the sum of all Error Tracking APM error events over all hours in the current date for the given org.
745+
:type error_tracking_apm_error_events_sum: int, optional
746+
741747
:param error_tracking_error_events_sum: Shows the sum of all Error Tracking error events over all hours in the current date for the given org.
742748
:type error_tracking_error_events_sum: int, optional
743749
@@ -1154,6 +1160,8 @@ def __init__(
11541160
kwargs["eph_infra_host_pro_sum"] = eph_infra_host_pro_sum
11551161
if eph_infra_host_proplus_sum is not unset:
11561162
kwargs["eph_infra_host_proplus_sum"] = eph_infra_host_proplus_sum
1163+
if error_tracking_apm_error_events_sum is not unset:
1164+
kwargs["error_tracking_apm_error_events_sum"] = error_tracking_apm_error_events_sum
11571165
if error_tracking_error_events_sum is not unset:
11581166
kwargs["error_tracking_error_events_sum"] = error_tracking_error_events_sum
11591167
if error_tracking_events_sum is not unset:

src/datadog_api_client/v1/model/usage_summary_date_org.py

+8
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ def openapi_types(_):
9292
"eph_infra_host_opentelemetry_sum": (int,),
9393
"eph_infra_host_pro_sum": (int,),
9494
"eph_infra_host_proplus_sum": (int,),
95+
"error_tracking_apm_error_events_sum": (int,),
9596
"error_tracking_error_events_sum": (int,),
9697
"error_tracking_events_sum": (int,),
9798
"error_tracking_rum_error_events_sum": (int,),
@@ -263,6 +264,7 @@ def openapi_types(_):
263264
"eph_infra_host_opentelemetry_sum": "eph_infra_host_opentelemetry_sum",
264265
"eph_infra_host_pro_sum": "eph_infra_host_pro_sum",
265266
"eph_infra_host_proplus_sum": "eph_infra_host_proplus_sum",
267+
"error_tracking_apm_error_events_sum": "error_tracking_apm_error_events_sum",
266268
"error_tracking_error_events_sum": "error_tracking_error_events_sum",
267269
"error_tracking_events_sum": "error_tracking_events_sum",
268270
"error_tracking_rum_error_events_sum": "error_tracking_rum_error_events_sum",
@@ -435,6 +437,7 @@ def __init__(
435437
eph_infra_host_opentelemetry_sum: Union[int, UnsetType] = unset,
436438
eph_infra_host_pro_sum: Union[int, UnsetType] = unset,
437439
eph_infra_host_proplus_sum: Union[int, UnsetType] = unset,
440+
error_tracking_apm_error_events_sum: Union[int, UnsetType] = unset,
438441
error_tracking_error_events_sum: Union[int, UnsetType] = unset,
439442
error_tracking_events_sum: Union[int, UnsetType] = unset,
440443
error_tracking_rum_error_events_sum: Union[int, UnsetType] = unset,
@@ -758,6 +761,9 @@ def __init__(
758761
:param eph_infra_host_proplus_sum: Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current date for the given org.
759762
:type eph_infra_host_proplus_sum: int, optional
760763
764+
:param error_tracking_apm_error_events_sum: Shows the sum of all Error Tracking APM error events over all hours in the current date for the given org.
765+
:type error_tracking_apm_error_events_sum: int, optional
766+
761767
:param error_tracking_error_events_sum: Shows the sum of all Error Tracking error events over all hours in the current date for the given org.
762768
:type error_tracking_error_events_sum: int, optional
763769
@@ -1189,6 +1195,8 @@ def __init__(
11891195
kwargs["eph_infra_host_pro_sum"] = eph_infra_host_pro_sum
11901196
if eph_infra_host_proplus_sum is not unset:
11911197
kwargs["eph_infra_host_proplus_sum"] = eph_infra_host_proplus_sum
1198+
if error_tracking_apm_error_events_sum is not unset:
1199+
kwargs["error_tracking_apm_error_events_sum"] = error_tracking_apm_error_events_sum
11921200
if error_tracking_error_events_sum is not unset:
11931201
kwargs["error_tracking_error_events_sum"] = error_tracking_error_events_sum
11941202
if error_tracking_events_sum is not unset:

src/datadog_api_client/v1/model/usage_summary_response.py

+8
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def openapi_types(_):
101101
"eph_infra_host_opentelemetry_apm_agg_sum": (int,),
102102
"eph_infra_host_pro_agg_sum": (int,),
103103
"eph_infra_host_proplus_agg_sum": (int,),
104+
"error_tracking_apm_error_events_agg_sum": (int,),
104105
"error_tracking_error_events_agg_sum": (int,),
105106
"error_tracking_events_agg_sum": (int,),
106107
"error_tracking_rum_error_events_agg_sum": (int,),
@@ -277,6 +278,7 @@ def openapi_types(_):
277278
"eph_infra_host_opentelemetry_apm_agg_sum": "eph_infra_host_opentelemetry_apm_agg_sum",
278279
"eph_infra_host_pro_agg_sum": "eph_infra_host_pro_agg_sum",
279280
"eph_infra_host_proplus_agg_sum": "eph_infra_host_proplus_agg_sum",
281+
"error_tracking_apm_error_events_agg_sum": "error_tracking_apm_error_events_agg_sum",
280282
"error_tracking_error_events_agg_sum": "error_tracking_error_events_agg_sum",
281283
"error_tracking_events_agg_sum": "error_tracking_events_agg_sum",
282284
"error_tracking_rum_error_events_agg_sum": "error_tracking_rum_error_events_agg_sum",
@@ -454,6 +456,7 @@ def __init__(
454456
eph_infra_host_opentelemetry_apm_agg_sum: Union[int, UnsetType] = unset,
455457
eph_infra_host_pro_agg_sum: Union[int, UnsetType] = unset,
456458
eph_infra_host_proplus_agg_sum: Union[int, UnsetType] = unset,
459+
error_tracking_apm_error_events_agg_sum: Union[int, UnsetType] = unset,
457460
error_tracking_error_events_agg_sum: Union[int, UnsetType] = unset,
458461
error_tracking_events_agg_sum: Union[int, UnsetType] = unset,
459462
error_tracking_rum_error_events_agg_sum: Union[int, UnsetType] = unset,
@@ -782,6 +785,9 @@ def __init__(
782785
:param eph_infra_host_proplus_agg_sum: Shows the sum of all ephemeral infrastructure hosts for Pro Plus over all hours in the current month for all organizations.
783786
:type eph_infra_host_proplus_agg_sum: int, optional
784787
788+
:param error_tracking_apm_error_events_agg_sum: Shows the sum of all Error Tracking APM error events over all hours in the current month for all organizations.
789+
:type error_tracking_apm_error_events_agg_sum: int, optional
790+
785791
:param error_tracking_error_events_agg_sum: Shows the sum of all Error Tracking error events over all hours in the current month for all organizations.
786792
:type error_tracking_error_events_agg_sum: int, optional
787793
@@ -1230,6 +1236,8 @@ def __init__(
12301236
kwargs["eph_infra_host_pro_agg_sum"] = eph_infra_host_pro_agg_sum
12311237
if eph_infra_host_proplus_agg_sum is not unset:
12321238
kwargs["eph_infra_host_proplus_agg_sum"] = eph_infra_host_proplus_agg_sum
1239+
if error_tracking_apm_error_events_agg_sum is not unset:
1240+
kwargs["error_tracking_apm_error_events_agg_sum"] = error_tracking_apm_error_events_agg_sum
12331241
if error_tracking_error_events_agg_sum is not unset:
12341242
kwargs["error_tracking_error_events_agg_sum"] = error_tracking_error_events_agg_sum
12351243
if error_tracking_events_agg_sum is not unset:

0 commit comments

Comments
 (0)