Skip to content

Commit 6e97053

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit e0b2ef6b of spec repo
1 parent 436b666 commit 6e97053

File tree

6 files changed

+43
-6
lines changed

6 files changed

+43
-6
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2024-09-10 08:48:30.716171",
8-
"spec_repo_commit": "b32bee1b"
7+
"regenerated": "2024-09-10 15:56:08.173778",
8+
"spec_repo_commit": "e0b2ef6b"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-09-10 08:48:30.742094",
13-
"spec_repo_commit": "b32bee1b"
12+
"regenerated": "2024-09-10 15:56:08.191192",
13+
"spec_repo_commit": "e0b2ef6b"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19096,6 +19096,11 @@ components:
1909619096
over all hours in the current date for all organizations.
1909719097
format: int64
1909819098
type: integer
19099+
data_jobs_monitoring_host_hr_sum:
19100+
description: Shows the sum of all Data Jobs Monitoring hosts over all hours
19101+
in the current date for the given org.
19102+
format: int64
19103+
type: integer
1909919104
date:
1910019105
description: The date for the usage.
1910119106
format: date-time
@@ -19831,6 +19836,11 @@ components:
1983119836
over all hours in the current date for the given org.
1983219837
format: int64
1983319838
type: integer
19839+
data_jobs_monitoring_host_hr_sum:
19840+
description: Shows the sum of all Data Jobs Monitoring hosts over all hours
19841+
in the current date for the given org.
19842+
format: int64
19843+
type: integer
1983419844
dbm_host_top99p_sum:
1983519845
description: Shows the 99th percentile of all Database Monitoring hosts
1983619846
over all hours in the current month for the given org.
@@ -20565,6 +20575,11 @@ components:
2056520575
over all hours in the current month for all organizations.
2056620576
format: int64
2056720577
type: integer
20578+
data_jobs_monitoring_host_hr_agg_sum:
20579+
description: Shows the sum of Data Jobs Monitoring hosts over all hours
20580+
in the current months for all organizations
20581+
format: int64
20582+
type: integer
2056820583
dbm_host_top99p_sum:
2056920584
description: Shows the 99th percentile of all Database Monitoring hosts
2057020585
over all hours in the current month for all organizations.

.generator/schemas/v2/openapi.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25175,8 +25175,6 @@ components:
2517525175
security_monitoring_signals_read: View Security Signals.
2517625176
security_monitoring_suppressions_read: Read Rule Suppressions.
2517725177
security_monitoring_suppressions_write: Write Rule Suppressions.
25178-
security_pipelines_read: View Security Pipelines.
25179-
security_pipelines_write: Create, edit, and delete CSM Security Pipelines.
2518025178
slos_corrections: Apply, edit, and delete SLO status corrections. A user
2518125179
with this permission can make status corrections, even if they do not
2518225180
have permission to edit those SLOs.

src/datadog_api_client/v1/model/usage_summary_date.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ def openapi_types(_):
7575
"custom_ts_avg": (int,),
7676
"cws_container_count_avg": (int,),
7777
"cws_host_top99p": (int,),
78+
"data_jobs_monitoring_host_hr_sum": (int,),
7879
"date": (datetime,),
7980
"dbm_host_top99p": (int,),
8081
"dbm_queries_count_avg": (int,),
@@ -210,6 +211,7 @@ def openapi_types(_):
210211
"custom_ts_avg": "custom_ts_avg",
211212
"cws_container_count_avg": "cws_container_count_avg",
212213
"cws_host_top99p": "cws_host_top99p",
214+
"data_jobs_monitoring_host_hr_sum": "data_jobs_monitoring_host_hr_sum",
213215
"date": "date",
214216
"dbm_host_top99p": "dbm_host_top99p",
215217
"dbm_queries_count_avg": "dbm_queries_count_avg",
@@ -346,6 +348,7 @@ def __init__(
346348
custom_ts_avg: Union[int, UnsetType] = unset,
347349
cws_container_count_avg: Union[int, UnsetType] = unset,
348350
cws_host_top99p: Union[int, UnsetType] = unset,
351+
data_jobs_monitoring_host_hr_sum: Union[int, UnsetType] = unset,
349352
date: Union[datetime, UnsetType] = unset,
350353
dbm_host_top99p: Union[int, UnsetType] = unset,
351354
dbm_queries_count_avg: Union[int, UnsetType] = unset,
@@ -585,6 +588,9 @@ def __init__(
585588
:param cws_host_top99p: Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for all organizations.
586589
:type cws_host_top99p: int, optional
587590
591+
: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.
592+
:type data_jobs_monitoring_host_hr_sum: int, optional
593+
588594
:param date: The date for the usage.
589595
:type date: datetime, optional
590596
@@ -932,6 +938,8 @@ def __init__(
932938
kwargs["cws_container_count_avg"] = cws_container_count_avg
933939
if cws_host_top99p is not unset:
934940
kwargs["cws_host_top99p"] = cws_host_top99p
941+
if data_jobs_monitoring_host_hr_sum is not unset:
942+
kwargs["data_jobs_monitoring_host_hr_sum"] = data_jobs_monitoring_host_hr_sum
935943
if date is not unset:
936944
kwargs["date"] = date
937945
if dbm_host_top99p 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
@@ -72,6 +72,7 @@ def openapi_types(_):
7272
"custom_ts_avg": (int,),
7373
"cws_container_count_avg": (int,),
7474
"cws_host_top99p": (int,),
75+
"data_jobs_monitoring_host_hr_sum": (int,),
7576
"dbm_host_top99p_sum": (int,),
7677
"dbm_queries_avg_sum": (int,),
7778
"error_tracking_events_sum": (int,),
@@ -213,6 +214,7 @@ def openapi_types(_):
213214
"custom_ts_avg": "custom_ts_avg",
214215
"cws_container_count_avg": "cws_container_count_avg",
215216
"cws_host_top99p": "cws_host_top99p",
217+
"data_jobs_monitoring_host_hr_sum": "data_jobs_monitoring_host_hr_sum",
216218
"dbm_host_top99p_sum": "dbm_host_top99p_sum",
217219
"dbm_queries_avg_sum": "dbm_queries_avg_sum",
218220
"error_tracking_events_sum": "error_tracking_events_sum",
@@ -355,6 +357,7 @@ def __init__(
355357
custom_ts_avg: Union[int, UnsetType] = unset,
356358
cws_container_count_avg: Union[int, UnsetType] = unset,
357359
cws_host_top99p: Union[int, UnsetType] = unset,
360+
data_jobs_monitoring_host_hr_sum: Union[int, UnsetType] = unset,
358361
dbm_host_top99p_sum: Union[int, UnsetType] = unset,
359362
dbm_queries_avg_sum: Union[int, UnsetType] = unset,
360363
error_tracking_events_sum: Union[int, UnsetType] = unset,
@@ -608,6 +611,9 @@ def __init__(
608611
: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.
609612
:type cws_host_top99p: int, optional
610613
614+
: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.
615+
:type data_jobs_monitoring_host_hr_sum: int, optional
616+
611617
: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.
612618
:type dbm_host_top99p_sum: int, optional
613619
@@ -969,6 +975,8 @@ def __init__(
969975
kwargs["cws_container_count_avg"] = cws_container_count_avg
970976
if cws_host_top99p is not unset:
971977
kwargs["cws_host_top99p"] = cws_host_top99p
978+
if data_jobs_monitoring_host_hr_sum is not unset:
979+
kwargs["data_jobs_monitoring_host_hr_sum"] = data_jobs_monitoring_host_hr_sum
972980
if dbm_host_top99p_sum is not unset:
973981
kwargs["dbm_host_top99p_sum"] = dbm_host_top99p_sum
974982
if dbm_queries_avg_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
@@ -80,6 +80,7 @@ def openapi_types(_):
8080
"custom_ts_sum": (int,),
8181
"cws_containers_avg_sum": (int,),
8282
"cws_host_top99p_sum": (int,),
83+
"data_jobs_monitoring_host_hr_agg_sum": (int,),
8384
"dbm_host_top99p_sum": (int,),
8485
"dbm_queries_avg_sum": (int,),
8586
"end_date": (datetime,),
@@ -226,6 +227,7 @@ def openapi_types(_):
226227
"custom_ts_sum": "custom_ts_sum",
227228
"cws_containers_avg_sum": "cws_containers_avg_sum",
228229
"cws_host_top99p_sum": "cws_host_top99p_sum",
230+
"data_jobs_monitoring_host_hr_agg_sum": "data_jobs_monitoring_host_hr_agg_sum",
229231
"dbm_host_top99p_sum": "dbm_host_top99p_sum",
230232
"dbm_queries_avg_sum": "dbm_queries_avg_sum",
231233
"end_date": "end_date",
@@ -373,6 +375,7 @@ def __init__(
373375
custom_ts_sum: Union[int, UnsetType] = unset,
374376
cws_containers_avg_sum: Union[int, UnsetType] = unset,
375377
cws_host_top99p_sum: Union[int, UnsetType] = unset,
378+
data_jobs_monitoring_host_hr_agg_sum: Union[int, UnsetType] = unset,
376379
dbm_host_top99p_sum: Union[int, UnsetType] = unset,
377380
dbm_queries_avg_sum: Union[int, UnsetType] = unset,
378381
end_date: Union[datetime, UnsetType] = unset,
@@ -629,6 +632,9 @@ def __init__(
629632
: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.
630633
:type cws_host_top99p_sum: int, optional
631634
635+
: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
636+
:type data_jobs_monitoring_host_hr_agg_sum: int, optional
637+
632638
:param dbm_host_top99p_sum: Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for all organizations.
633639
:type dbm_host_top99p_sum: int, optional
634640
@@ -1008,6 +1014,8 @@ def __init__(
10081014
kwargs["cws_containers_avg_sum"] = cws_containers_avg_sum
10091015
if cws_host_top99p_sum is not unset:
10101016
kwargs["cws_host_top99p_sum"] = cws_host_top99p_sum
1017+
if data_jobs_monitoring_host_hr_agg_sum is not unset:
1018+
kwargs["data_jobs_monitoring_host_hr_agg_sum"] = data_jobs_monitoring_host_hr_agg_sum
10111019
if dbm_host_top99p_sum is not unset:
10121020
kwargs["dbm_host_top99p_sum"] = dbm_host_top99p_sum
10131021
if dbm_queries_avg_sum is not unset:

0 commit comments

Comments
 (0)