diff --git a/.apigentools-info b/.apigentools-info index 90e70b3623..cd81d3f13c 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2024-09-24 13:39:59.931391", - "spec_repo_commit": "7752efd3" + "regenerated": "2024-09-24 18:16:22.924081", + "spec_repo_commit": "2eb52c63" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2024-09-24 13:39:59.945692", - "spec_repo_commit": "7752efd3" + "regenerated": "2024-09-24 18:16:22.938930", + "spec_repo_commit": "2eb52c63" } } } \ No newline at end of file diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index a018712734..6dd7512869 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -19283,6 +19283,11 @@ components: over all hours in the current date for all organizations. format: int64 type: integer + data_jobs_monitoring_host_hr_sum: + description: Shows the sum of all Data Jobs Monitoring hosts over all hours + in the current date for the given org. + format: int64 + type: integer date: description: The date for the usage. format: date-time @@ -20018,6 +20023,11 @@ components: over all hours in the current date for the given org. format: int64 type: integer + data_jobs_monitoring_host_hr_sum: + description: Shows the sum of all Data Jobs Monitoring hosts over all hours + in the current date for the given org. + format: int64 + type: integer dbm_host_top99p_sum: description: Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for the given org. @@ -20752,6 +20762,11 @@ components: over all hours in the current month for all organizations. format: int64 type: integer + data_jobs_monitoring_host_hr_agg_sum: + description: Shows the sum of Data Jobs Monitoring hosts over all hours + in the current months for all organizations + format: int64 + type: integer dbm_host_top99p_sum: description: Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for all organizations. 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 0e4cfabd1c..d8b21b37e5 100644 --- a/src/datadog_api_client/v1/model/usage_summary_date.py +++ b/src/datadog_api_client/v1/model/usage_summary_date.py @@ -75,6 +75,7 @@ def openapi_types(_): "custom_ts_avg": (int,), "cws_container_count_avg": (int,), "cws_host_top99p": (int,), + "data_jobs_monitoring_host_hr_sum": (int,), "date": (datetime,), "dbm_host_top99p": (int,), "dbm_queries_count_avg": (int,), @@ -210,6 +211,7 @@ def openapi_types(_): "custom_ts_avg": "custom_ts_avg", "cws_container_count_avg": "cws_container_count_avg", "cws_host_top99p": "cws_host_top99p", + "data_jobs_monitoring_host_hr_sum": "data_jobs_monitoring_host_hr_sum", "date": "date", "dbm_host_top99p": "dbm_host_top99p", "dbm_queries_count_avg": "dbm_queries_count_avg", @@ -346,6 +348,7 @@ def __init__( custom_ts_avg: Union[int, UnsetType] = unset, cws_container_count_avg: Union[int, UnsetType] = unset, cws_host_top99p: Union[int, UnsetType] = unset, + data_jobs_monitoring_host_hr_sum: Union[int, UnsetType] = unset, date: Union[datetime, UnsetType] = unset, dbm_host_top99p: Union[int, UnsetType] = unset, dbm_queries_count_avg: Union[int, UnsetType] = unset, @@ -585,6 +588,9 @@ def __init__( :param cws_host_top99p: Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for all organizations. :type cws_host_top99p: int, optional + :param data_jobs_monitoring_host_hr_sum: Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org. + :type data_jobs_monitoring_host_hr_sum: int, optional + :param date: The date for the usage. :type date: datetime, optional @@ -932,6 +938,8 @@ def __init__( kwargs["cws_container_count_avg"] = cws_container_count_avg if cws_host_top99p is not unset: kwargs["cws_host_top99p"] = cws_host_top99p + if data_jobs_monitoring_host_hr_sum is not unset: + kwargs["data_jobs_monitoring_host_hr_sum"] = data_jobs_monitoring_host_hr_sum if date is not unset: kwargs["date"] = date if dbm_host_top99p 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 831118db75..c1ffcc9ed2 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 @@ -72,6 +72,7 @@ def openapi_types(_): "custom_ts_avg": (int,), "cws_container_count_avg": (int,), "cws_host_top99p": (int,), + "data_jobs_monitoring_host_hr_sum": (int,), "dbm_host_top99p_sum": (int,), "dbm_queries_avg_sum": (int,), "error_tracking_events_sum": (int,), @@ -213,6 +214,7 @@ def openapi_types(_): "custom_ts_avg": "custom_ts_avg", "cws_container_count_avg": "cws_container_count_avg", "cws_host_top99p": "cws_host_top99p", + "data_jobs_monitoring_host_hr_sum": "data_jobs_monitoring_host_hr_sum", "dbm_host_top99p_sum": "dbm_host_top99p_sum", "dbm_queries_avg_sum": "dbm_queries_avg_sum", "error_tracking_events_sum": "error_tracking_events_sum", @@ -355,6 +357,7 @@ def __init__( custom_ts_avg: Union[int, UnsetType] = unset, cws_container_count_avg: Union[int, UnsetType] = unset, cws_host_top99p: Union[int, UnsetType] = unset, + data_jobs_monitoring_host_hr_sum: Union[int, UnsetType] = unset, dbm_host_top99p_sum: Union[int, UnsetType] = unset, dbm_queries_avg_sum: Union[int, UnsetType] = unset, error_tracking_events_sum: Union[int, UnsetType] = unset, @@ -608,6 +611,9 @@ def __init__( :param cws_host_top99p: Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for the given org. :type cws_host_top99p: int, optional + :param data_jobs_monitoring_host_hr_sum: Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org. + :type data_jobs_monitoring_host_hr_sum: int, optional + :param dbm_host_top99p_sum: Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for the given org. :type dbm_host_top99p_sum: int, optional @@ -969,6 +975,8 @@ def __init__( kwargs["cws_container_count_avg"] = cws_container_count_avg if cws_host_top99p is not unset: kwargs["cws_host_top99p"] = cws_host_top99p + if data_jobs_monitoring_host_hr_sum is not unset: + kwargs["data_jobs_monitoring_host_hr_sum"] = data_jobs_monitoring_host_hr_sum if dbm_host_top99p_sum is not unset: kwargs["dbm_host_top99p_sum"] = dbm_host_top99p_sum if dbm_queries_avg_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 cda9dffd10..0942a03a89 100644 --- a/src/datadog_api_client/v1/model/usage_summary_response.py +++ b/src/datadog_api_client/v1/model/usage_summary_response.py @@ -80,6 +80,7 @@ def openapi_types(_): "custom_ts_sum": (int,), "cws_containers_avg_sum": (int,), "cws_host_top99p_sum": (int,), + "data_jobs_monitoring_host_hr_agg_sum": (int,), "dbm_host_top99p_sum": (int,), "dbm_queries_avg_sum": (int,), "end_date": (datetime,), @@ -226,6 +227,7 @@ def openapi_types(_): "custom_ts_sum": "custom_ts_sum", "cws_containers_avg_sum": "cws_containers_avg_sum", "cws_host_top99p_sum": "cws_host_top99p_sum", + "data_jobs_monitoring_host_hr_agg_sum": "data_jobs_monitoring_host_hr_agg_sum", "dbm_host_top99p_sum": "dbm_host_top99p_sum", "dbm_queries_avg_sum": "dbm_queries_avg_sum", "end_date": "end_date", @@ -373,6 +375,7 @@ def __init__( custom_ts_sum: Union[int, UnsetType] = unset, cws_containers_avg_sum: Union[int, UnsetType] = unset, cws_host_top99p_sum: Union[int, UnsetType] = unset, + data_jobs_monitoring_host_hr_agg_sum: Union[int, UnsetType] = unset, dbm_host_top99p_sum: Union[int, UnsetType] = unset, dbm_queries_avg_sum: Union[int, UnsetType] = unset, end_date: Union[datetime, UnsetType] = unset, @@ -629,6 +632,9 @@ def __init__( :param cws_host_top99p_sum: Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current month for all organizations. :type cws_host_top99p_sum: int, optional + :param data_jobs_monitoring_host_hr_agg_sum: Shows the sum of Data Jobs Monitoring hosts over all hours in the current months for all organizations + :type data_jobs_monitoring_host_hr_agg_sum: int, optional + :param dbm_host_top99p_sum: Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for all organizations. :type dbm_host_top99p_sum: int, optional @@ -1008,6 +1014,8 @@ def __init__( kwargs["cws_containers_avg_sum"] = cws_containers_avg_sum if cws_host_top99p_sum is not unset: kwargs["cws_host_top99p_sum"] = cws_host_top99p_sum + if data_jobs_monitoring_host_hr_agg_sum is not unset: + kwargs["data_jobs_monitoring_host_hr_agg_sum"] = data_jobs_monitoring_host_hr_agg_sum if dbm_host_top99p_sum is not unset: kwargs["dbm_host_top99p_sum"] = dbm_host_top99p_sum if dbm_queries_avg_sum is not unset: