diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 1756c3d2d6..cfaba2a482 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -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 @@ -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 @@ -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 diff --git a/src/datadog_api_client/v1/model/usage_summary_date.py b/src/datadog_api_client/v1/model/usage_summary_date.py index 5ffbfc0774..4b91b2f575 100644 --- a/src/datadog_api_client/v1/model/usage_summary_date.py +++ b/src/datadog_api_client/v1/model/usage_summary_date.py @@ -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,), @@ -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", @@ -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, @@ -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 @@ -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: diff --git a/src/datadog_api_client/v1/model/usage_summary_date_org.py b/src/datadog_api_client/v1/model/usage_summary_date_org.py index 288f14cf4d..8f4e86ec0e 100644 --- a/src/datadog_api_client/v1/model/usage_summary_date_org.py +++ b/src/datadog_api_client/v1/model/usage_summary_date_org.py @@ -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,), @@ -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", @@ -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, @@ -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 @@ -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: diff --git a/src/datadog_api_client/v1/model/usage_summary_response.py b/src/datadog_api_client/v1/model/usage_summary_response.py index 8efcb8c3f9..eb4ee25f93 100644 --- a/src/datadog_api_client/v1/model/usage_summary_response.py +++ b/src/datadog_api_client/v1/model/usage_summary_response.py @@ -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,), @@ -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", @@ -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, @@ -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 @@ -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: