Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22439,6 +22439,10 @@ components:
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
format: int64
type: integer
infra_storage_mgmt_objects_count_avg:
description: Shows the average number of storage management objects over all hours in the current date for all organizations.
format: int64
type: integer
ingested_events_bytes_sum:
description: Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
format: int64
Expand Down Expand Up @@ -23436,6 +23440,10 @@ components:
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
format: int64
type: integer
infra_storage_mgmt_objects_count_avg:
description: Shows the average number of storage management objects over all hours in the current date for the given org.
format: int64
type: integer
ingested_events_bytes_sum:
description: Shows the sum of all log bytes ingested over all hours in the current date for the given org.
format: int64
Expand Down Expand Up @@ -24436,6 +24444,10 @@ components:
description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
format: int64
type: integer
infra_storage_mgmt_objects_count_avg_sum:
description: Shows the average number of storage management objects over all hours in the current month for all organizations.
format: int64
type: integer
ingested_events_bytes_agg_sum:
description: Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
format: int64
Expand Down
8 changes: 8 additions & 0 deletions src/datadog_api_client/v1/model/usage_summary_date.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ def openapi_types(_):
"infra_host_basic_infra_basic_vsphere_top99p": (int,),
"infra_host_basic_top99p": (int,),
"infra_host_top99p": (int,),
"infra_storage_mgmt_objects_count_avg": (int,),
"ingested_events_bytes_sum": (int,),
"iot_device_sum": (int,),
"iot_device_top99p": (int,),
Expand Down Expand Up @@ -398,6 +399,7 @@ def openapi_types(_):
"infra_host_basic_infra_basic_vsphere_top99p": "infra_host_basic_infra_basic_vsphere_top99p",
"infra_host_basic_top99p": "infra_host_basic_top99p",
"infra_host_top99p": "infra_host_top99p",
"infra_storage_mgmt_objects_count_avg": "infra_storage_mgmt_objects_count_avg",
"ingested_events_bytes_sum": "ingested_events_bytes_sum",
"iot_device_sum": "iot_device_sum",
"iot_device_top99p": "iot_device_top99p",
Expand Down Expand Up @@ -643,6 +645,7 @@ def __init__(
infra_host_basic_infra_basic_vsphere_top99p: Union[int, UnsetType] = unset,
infra_host_basic_top99p: Union[int, UnsetType] = unset,
infra_host_top99p: Union[int, UnsetType] = unset,
infra_storage_mgmt_objects_count_avg: Union[int, UnsetType] = unset,
ingested_events_bytes_sum: Union[int, UnsetType] = unset,
iot_device_sum: Union[int, UnsetType] = unset,
iot_device_top99p: Union[int, UnsetType] = unset,
Expand Down Expand Up @@ -1149,6 +1152,9 @@ def __init__(
:param infra_host_top99p: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
:type infra_host_top99p: int, optional

:param infra_storage_mgmt_objects_count_avg: Shows the average number of storage management objects over all hours in the current date for all organizations.
:type infra_storage_mgmt_objects_count_avg: int, optional

:param ingested_events_bytes_sum: Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
:type ingested_events_bytes_sum: int, optional

Expand Down Expand Up @@ -1754,6 +1760,8 @@ def __init__(
kwargs["infra_host_basic_top99p"] = infra_host_basic_top99p
if infra_host_top99p is not unset:
kwargs["infra_host_top99p"] = infra_host_top99p
if infra_storage_mgmt_objects_count_avg is not unset:
kwargs["infra_storage_mgmt_objects_count_avg"] = infra_storage_mgmt_objects_count_avg
if ingested_events_bytes_sum is not unset:
kwargs["ingested_events_bytes_sum"] = ingested_events_bytes_sum
if iot_device_sum is not unset:
Expand Down
8 changes: 8 additions & 0 deletions src/datadog_api_client/v1/model/usage_summary_date_org.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ def openapi_types(_):
"infra_host_basic_infra_basic_vsphere_top99p": (int,),
"infra_host_basic_top99p": (int,),
"infra_host_top99p": (int,),
"infra_storage_mgmt_objects_count_avg": (int,),
"ingested_events_bytes_sum": (int,),
"iot_device_agg_sum": (int,),
"iot_device_top99p_sum": (int,),
Expand Down Expand Up @@ -401,6 +402,7 @@ def openapi_types(_):
"infra_host_basic_infra_basic_vsphere_top99p": "infra_host_basic_infra_basic_vsphere_top99p",
"infra_host_basic_top99p": "infra_host_basic_top99p",
"infra_host_top99p": "infra_host_top99p",
"infra_storage_mgmt_objects_count_avg": "infra_storage_mgmt_objects_count_avg",
"ingested_events_bytes_sum": "ingested_events_bytes_sum",
"iot_device_agg_sum": "iot_device_agg_sum",
"iot_device_top99p_sum": "iot_device_top99p_sum",
Expand Down Expand Up @@ -652,6 +654,7 @@ def __init__(
infra_host_basic_infra_basic_vsphere_top99p: Union[int, UnsetType] = unset,
infra_host_basic_top99p: Union[int, UnsetType] = unset,
infra_host_top99p: Union[int, UnsetType] = unset,
infra_storage_mgmt_objects_count_avg: Union[int, UnsetType] = unset,
ingested_events_bytes_sum: Union[int, UnsetType] = unset,
iot_device_agg_sum: Union[int, UnsetType] = unset,
iot_device_top99p_sum: Union[int, UnsetType] = unset,
Expand Down Expand Up @@ -1172,6 +1175,9 @@ def __init__(
:param infra_host_top99p: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
:type infra_host_top99p: int, optional

:param infra_storage_mgmt_objects_count_avg: Shows the average number of storage management objects over all hours in the current date for the given org.
:type infra_storage_mgmt_objects_count_avg: int, optional

:param ingested_events_bytes_sum: Shows the sum of all log bytes ingested over all hours in the current date for the given org.
:type ingested_events_bytes_sum: int, optional

Expand Down Expand Up @@ -1791,6 +1797,8 @@ def __init__(
kwargs["infra_host_basic_top99p"] = infra_host_basic_top99p
if infra_host_top99p is not unset:
kwargs["infra_host_top99p"] = infra_host_top99p
if infra_storage_mgmt_objects_count_avg is not unset:
kwargs["infra_storage_mgmt_objects_count_avg"] = infra_storage_mgmt_objects_count_avg
if ingested_events_bytes_sum is not unset:
kwargs["ingested_events_bytes_sum"] = ingested_events_bytes_sum
if iot_device_agg_sum is not unset:
Expand Down
8 changes: 8 additions & 0 deletions src/datadog_api_client/v1/model/usage_summary_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ def openapi_types(_):
"infra_host_basic_infra_basic_vsphere_top99p_sum": (int,),
"infra_host_basic_top99p_sum": (int,),
"infra_host_top99p_sum": (int,),
"infra_storage_mgmt_objects_count_avg_sum": (int,),
"ingested_events_bytes_agg_sum": (int,),
"iot_device_agg_sum": (int,),
"iot_device_top99p_sum": (int,),
Expand Down Expand Up @@ -414,6 +415,7 @@ def openapi_types(_):
"infra_host_basic_infra_basic_vsphere_top99p_sum": "infra_host_basic_infra_basic_vsphere_top99p_sum",
"infra_host_basic_top99p_sum": "infra_host_basic_top99p_sum",
"infra_host_top99p_sum": "infra_host_top99p_sum",
"infra_storage_mgmt_objects_count_avg_sum": "infra_storage_mgmt_objects_count_avg_sum",
"ingested_events_bytes_agg_sum": "ingested_events_bytes_agg_sum",
"iot_device_agg_sum": "iot_device_agg_sum",
"iot_device_top99p_sum": "iot_device_top99p_sum",
Expand Down Expand Up @@ -670,6 +672,7 @@ def __init__(
infra_host_basic_infra_basic_vsphere_top99p_sum: Union[int, UnsetType] = unset,
infra_host_basic_top99p_sum: Union[int, UnsetType] = unset,
infra_host_top99p_sum: Union[int, UnsetType] = unset,
infra_storage_mgmt_objects_count_avg_sum: Union[int, UnsetType] = unset,
ingested_events_bytes_agg_sum: Union[int, UnsetType] = unset,
iot_device_agg_sum: Union[int, UnsetType] = unset,
iot_device_top99p_sum: Union[int, UnsetType] = unset,
Expand Down Expand Up @@ -1193,6 +1196,9 @@ def __init__(
:param infra_host_top99p_sum: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
:type infra_host_top99p_sum: int, optional

:param infra_storage_mgmt_objects_count_avg_sum: Shows the average number of storage management objects over all hours in the current month for all organizations.
:type infra_storage_mgmt_objects_count_avg_sum: int, optional

:param ingested_events_bytes_agg_sum: Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
:type ingested_events_bytes_agg_sum: int, optional

Expand Down Expand Up @@ -1834,6 +1840,8 @@ def __init__(
kwargs["infra_host_basic_top99p_sum"] = infra_host_basic_top99p_sum
if infra_host_top99p_sum is not unset:
kwargs["infra_host_top99p_sum"] = infra_host_top99p_sum
if infra_storage_mgmt_objects_count_avg_sum is not unset:
kwargs["infra_storage_mgmt_objects_count_avg_sum"] = infra_storage_mgmt_objects_count_avg_sum
if ingested_events_bytes_agg_sum is not unset:
kwargs["ingested_events_bytes_agg_sum"] = ingested_events_bytes_agg_sum
if iot_device_agg_sum is not unset:
Expand Down
Loading