Skip to content

Commit 886a78f

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add Edge Devices Monitoring fields to usage summary API (#3234)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 1588b58 commit 886a78f

4 files changed

Lines changed: 39 additions & 0 deletions

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22187,6 +22187,11 @@ components:
2218722187
current date for all organizations.
2218822188
format: int64
2218922189
type: integer
22190+
infra_edge_monitoring_devices_top99p:
22191+
description: Shows the 99th percentile of all Edge Devices Monitoring devices
22192+
over all hours in the current date for all organizations.
22193+
format: int64
22194+
type: integer
2219022195
infra_host_top99p:
2219122196
description: Shows the 99th percentile of all distinct infrastructure hosts
2219222197
over all hours in the current date for all organizations.
@@ -23350,6 +23355,11 @@ components:
2335023355
current date for the given org (To be deprecated on October 1st, 2024).
2335123356
format: int64
2335223357
type: integer
23358+
infra_edge_monitoring_devices_top99p:
23359+
description: Shows the 99th percentile of all Edge Devices Monitoring devices
23360+
over all hours in the current date for the given org.
23361+
format: int64
23362+
type: integer
2335323363
infra_host_top99p:
2335423364
description: Shows the 99th percentile of all distinct infrastructure hosts
2335523365
over all hours in the current date for the given org.
@@ -24513,6 +24523,11 @@ components:
2451324523
2024).
2451424524
format: int64
2451524525
type: integer
24526+
infra_edge_monitoring_devices_top99p_sum:
24527+
description: Shows the 99th percentile of all Edge Devices Monitoring devices
24528+
over all hours in the current month for all organizations.
24529+
format: int64
24530+
type: integer
2451624531
infra_host_top99p_sum:
2451724532
description: Shows the 99th percentile of all distinct infrastructure hosts
2451824533
over all hours in the current month for all organizations.

src/datadog_api_client/v1/model/usage_summary_date.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ def openapi_types(_):
131131
"incident_management_monthly_active_users_hwm": (int,),
132132
"incident_management_seats_hwm": (int,),
133133
"indexed_events_count_sum": (int,),
134+
"infra_edge_monitoring_devices_top99p": (int,),
134135
"infra_host_top99p": (int,),
135136
"ingested_events_bytes_sum": (int,),
136137
"iot_device_sum": (int,),
@@ -348,6 +349,7 @@ def openapi_types(_):
348349
"incident_management_monthly_active_users_hwm": "incident_management_monthly_active_users_hwm",
349350
"incident_management_seats_hwm": "incident_management_seats_hwm",
350351
"indexed_events_count_sum": "indexed_events_count_sum",
352+
"infra_edge_monitoring_devices_top99p": "infra_edge_monitoring_devices_top99p",
351353
"infra_host_top99p": "infra_host_top99p",
352354
"ingested_events_bytes_sum": "ingested_events_bytes_sum",
353355
"iot_device_sum": "iot_device_sum",
@@ -566,6 +568,7 @@ def __init__(
566568
incident_management_monthly_active_users_hwm: Union[int, UnsetType] = unset,
567569
incident_management_seats_hwm: Union[int, UnsetType] = unset,
568570
indexed_events_count_sum: Union[int, UnsetType] = unset,
571+
infra_edge_monitoring_devices_top99p: Union[int, UnsetType] = unset,
569572
infra_host_top99p: Union[int, UnsetType] = unset,
570573
ingested_events_bytes_sum: Union[int, UnsetType] = unset,
571574
iot_device_sum: Union[int, UnsetType] = unset,
@@ -999,6 +1002,9 @@ def __init__(
9991002
:param indexed_events_count_sum: Shows the sum of all log events indexed over all hours in the current date for all organizations.
10001003
:type indexed_events_count_sum: int, optional
10011004
1005+
:param infra_edge_monitoring_devices_top99p: Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current date for all organizations.
1006+
:type infra_edge_monitoring_devices_top99p: int, optional
1007+
10021008
:param infra_host_top99p: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
10031009
:type infra_host_top99p: int, optional
10041010
@@ -1546,6 +1552,8 @@ def __init__(
15461552
kwargs["incident_management_seats_hwm"] = incident_management_seats_hwm
15471553
if indexed_events_count_sum is not unset:
15481554
kwargs["indexed_events_count_sum"] = indexed_events_count_sum
1555+
if infra_edge_monitoring_devices_top99p is not unset:
1556+
kwargs["infra_edge_monitoring_devices_top99p"] = infra_edge_monitoring_devices_top99p
15491557
if infra_host_top99p is not unset:
15501558
kwargs["infra_host_top99p"] = infra_host_top99p
15511559
if ingested_events_bytes_sum is not unset:

src/datadog_api_client/v1/model/usage_summary_date_org.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ def openapi_types(_):
128128
"incident_management_monthly_active_users_hwm": (int,),
129129
"incident_management_seats_hwm": (int,),
130130
"indexed_events_count_sum": (int,),
131+
"infra_edge_monitoring_devices_top99p": (int,),
131132
"infra_host_top99p": (int,),
132133
"ingested_events_bytes_sum": (int,),
133134
"iot_device_agg_sum": (int,),
@@ -351,6 +352,7 @@ def openapi_types(_):
351352
"incident_management_monthly_active_users_hwm": "incident_management_monthly_active_users_hwm",
352353
"incident_management_seats_hwm": "incident_management_seats_hwm",
353354
"indexed_events_count_sum": "indexed_events_count_sum",
355+
"infra_edge_monitoring_devices_top99p": "infra_edge_monitoring_devices_top99p",
354356
"infra_host_top99p": "infra_host_top99p",
355357
"ingested_events_bytes_sum": "ingested_events_bytes_sum",
356358
"iot_device_agg_sum": "iot_device_agg_sum",
@@ -575,6 +577,7 @@ def __init__(
575577
incident_management_monthly_active_users_hwm: Union[int, UnsetType] = unset,
576578
incident_management_seats_hwm: Union[int, UnsetType] = unset,
577579
indexed_events_count_sum: Union[int, UnsetType] = unset,
580+
infra_edge_monitoring_devices_top99p: Union[int, UnsetType] = unset,
578581
infra_host_top99p: Union[int, UnsetType] = unset,
579582
ingested_events_bytes_sum: Union[int, UnsetType] = unset,
580583
iot_device_agg_sum: Union[int, UnsetType] = unset,
@@ -1022,6 +1025,9 @@ def __init__(
10221025
:param indexed_events_count_sum: 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). **Deprecated**.
10231026
:type indexed_events_count_sum: int, optional
10241027
1028+
:param infra_edge_monitoring_devices_top99p: Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current date for the given org.
1029+
:type infra_edge_monitoring_devices_top99p: int, optional
1030+
10251031
:param infra_host_top99p: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
10261032
:type infra_host_top99p: int, optional
10271033
@@ -1583,6 +1589,8 @@ def __init__(
15831589
kwargs["incident_management_seats_hwm"] = incident_management_seats_hwm
15841590
if indexed_events_count_sum is not unset:
15851591
kwargs["indexed_events_count_sum"] = indexed_events_count_sum
1592+
if infra_edge_monitoring_devices_top99p is not unset:
1593+
kwargs["infra_edge_monitoring_devices_top99p"] = infra_edge_monitoring_devices_top99p
15861594
if infra_host_top99p is not unset:
15871595
kwargs["infra_host_top99p"] = infra_host_top99p
15881596
if ingested_events_bytes_sum is not unset:

src/datadog_api_client/v1/model/usage_summary_response.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ def openapi_types(_):
136136
"incident_management_monthly_active_users_hwm_sum": (int,),
137137
"incident_management_seats_hwm_sum": (int,),
138138
"indexed_events_count_agg_sum": (int,),
139+
"infra_edge_monitoring_devices_top99p_sum": (int,),
139140
"infra_host_top99p_sum": (int,),
140141
"ingested_events_bytes_agg_sum": (int,),
141142
"iot_device_agg_sum": (int,),
@@ -364,6 +365,7 @@ def openapi_types(_):
364365
"incident_management_monthly_active_users_hwm_sum": "incident_management_monthly_active_users_hwm_sum",
365366
"incident_management_seats_hwm_sum": "incident_management_seats_hwm_sum",
366367
"indexed_events_count_agg_sum": "indexed_events_count_agg_sum",
368+
"infra_edge_monitoring_devices_top99p_sum": "infra_edge_monitoring_devices_top99p_sum",
367369
"infra_host_top99p_sum": "infra_host_top99p_sum",
368370
"ingested_events_bytes_agg_sum": "ingested_events_bytes_agg_sum",
369371
"iot_device_agg_sum": "iot_device_agg_sum",
@@ -593,6 +595,7 @@ def __init__(
593595
incident_management_monthly_active_users_hwm_sum: Union[int, UnsetType] = unset,
594596
incident_management_seats_hwm_sum: Union[int, UnsetType] = unset,
595597
indexed_events_count_agg_sum: Union[int, UnsetType] = unset,
598+
infra_edge_monitoring_devices_top99p_sum: Union[int, UnsetType] = unset,
596599
infra_host_top99p_sum: Union[int, UnsetType] = unset,
597600
ingested_events_bytes_agg_sum: Union[int, UnsetType] = unset,
598601
iot_device_agg_sum: Union[int, UnsetType] = unset,
@@ -1043,6 +1046,9 @@ def __init__(
10431046
:param indexed_events_count_agg_sum: 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). **Deprecated**.
10441047
:type indexed_events_count_agg_sum: int, optional
10451048
1049+
:param infra_edge_monitoring_devices_top99p_sum: Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current month for all organizations.
1050+
:type infra_edge_monitoring_devices_top99p_sum: int, optional
1051+
10461052
:param infra_host_top99p_sum: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
10471053
:type infra_host_top99p_sum: int, optional
10481054
@@ -1624,6 +1630,8 @@ def __init__(
16241630
kwargs["incident_management_seats_hwm_sum"] = incident_management_seats_hwm_sum
16251631
if indexed_events_count_agg_sum is not unset:
16261632
kwargs["indexed_events_count_agg_sum"] = indexed_events_count_agg_sum
1633+
if infra_edge_monitoring_devices_top99p_sum is not unset:
1634+
kwargs["infra_edge_monitoring_devices_top99p_sum"] = infra_edge_monitoring_devices_top99p_sum
16271635
if infra_host_top99p_sum is not unset:
16281636
kwargs["infra_host_top99p_sum"] = infra_host_top99p_sum
16291637
if ingested_events_bytes_agg_sum is not unset:

0 commit comments

Comments
 (0)