Skip to content

Add documentation for Data Jobs Monitoring summary keys #2154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
15 changes: 15 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
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 @@ -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,),
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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:
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 @@ -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,),
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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:
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 @@ -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,),
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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:
Expand Down
Loading