Skip to content

Commit e16a541

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 2eb52c63 of spec repo
1 parent 847ca3f commit e16a541

File tree

5 files changed

+46
-4
lines changed

5 files changed

+46
-4
lines changed

.apigentools-info

+4-4
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-24 13:40:00.575999",
8-
"spec_repo_commit": "7752efd3"
7+
"regenerated": "2024-09-24 18:16:28.821186",
8+
"spec_repo_commit": "2eb52c63"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-09-24 13:40:00.590776",
13-
"spec_repo_commit": "7752efd3"
12+
"regenerated": "2024-09-24 18:16:28.835857",
13+
"spec_repo_commit": "2eb52c63"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -19283,6 +19283,11 @@ components:
1928319283
over all hours in the current date for all organizations.
1928419284
format: int64
1928519285
type: integer
19286+
data_jobs_monitoring_host_hr_sum:
19287+
description: Shows the sum of all Data Jobs Monitoring hosts over all hours
19288+
in the current date for the given org.
19289+
format: int64
19290+
type: integer
1928619291
date:
1928719292
description: The date for the usage.
1928819293
format: date-time
@@ -20018,6 +20023,11 @@ components:
2001820023
over all hours in the current date for the given org.
2001920024
format: int64
2002020025
type: integer
20026+
data_jobs_monitoring_host_hr_sum:
20027+
description: Shows the sum of all Data Jobs Monitoring hosts over all hours
20028+
in the current date for the given org.
20029+
format: int64
20030+
type: integer
2002120031
dbm_host_top99p_sum:
2002220032
description: Shows the 99th percentile of all Database Monitoring hosts
2002320033
over all hours in the current month for the given org.
@@ -20752,6 +20762,11 @@ components:
2075220762
over all hours in the current month for all organizations.
2075320763
format: int64
2075420764
type: integer
20765+
data_jobs_monitoring_host_hr_agg_sum:
20766+
description: Shows the sum of Data Jobs Monitoring hosts over all hours
20767+
in the current months for all organizations
20768+
format: int64
20769+
type: integer
2075520770
dbm_host_top99p_sum:
2075620771
description: Shows the 99th percentile of all Database Monitoring hosts
2075720772
over all hours in the current month for all organizations.

packages/datadog-api-client-v1/models/UsageSummaryDate.ts

+9
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,10 @@ export class UsageSummaryDate {
215215
* Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for all organizations.
216216
*/
217217
"cwsHostTop99p"?: number;
218+
/**
219+
* Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org.
220+
*/
221+
"dataJobsMonitoringHostHrSum"?: number;
218222
/**
219223
* The date for the usage.
220224
*/
@@ -811,6 +815,11 @@ export class UsageSummaryDate {
811815
type: "number",
812816
format: "int64",
813817
},
818+
dataJobsMonitoringHostHrSum: {
819+
baseName: "data_jobs_monitoring_host_hr_sum",
820+
type: "number",
821+
format: "int64",
822+
},
814823
date: {
815824
baseName: "date",
816825
type: "Date",

packages/datadog-api-client-v1/models/UsageSummaryDateOrg.ts

+9
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,10 @@ export class UsageSummaryDateOrg {
230230
* Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for the given org.
231231
*/
232232
"cwsHostTop99p"?: number;
233+
/**
234+
* Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org.
235+
*/
236+
"dataJobsMonitoringHostHrSum"?: number;
233237
/**
234238
* Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for the given org.
235239
*/
@@ -852,6 +856,11 @@ export class UsageSummaryDateOrg {
852856
type: "number",
853857
format: "int64",
854858
},
859+
dataJobsMonitoringHostHrSum: {
860+
baseName: "data_jobs_monitoring_host_hr_sum",
861+
type: "number",
862+
format: "int64",
863+
},
855864
dbmHostTop99pSum: {
856865
baseName: "dbm_host_top99p_sum",
857866
type: "number",

packages/datadog-api-client-v1/models/UsageSummaryResponse.ts

+9
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,10 @@ export class UsageSummaryResponse {
228228
* Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current month for all organizations.
229229
*/
230230
"cwsHostTop99pSum"?: number;
231+
/**
232+
* Shows the sum of Data Jobs Monitoring hosts over all hours in the current months for all organizations
233+
*/
234+
"dataJobsMonitoringHostHrAggSum"?: number;
231235
/**
232236
* Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for all organizations.
233237
*/
@@ -871,6 +875,11 @@ export class UsageSummaryResponse {
871875
type: "number",
872876
format: "int64",
873877
},
878+
dataJobsMonitoringHostHrAggSum: {
879+
baseName: "data_jobs_monitoring_host_hr_agg_sum",
880+
type: "number",
881+
format: "int64",
882+
},
874883
dbmHostTop99pSum: {
875884
baseName: "dbm_host_top99p_sum",
876885
type: "number",

0 commit comments

Comments
 (0)