Skip to content

Commit 6a11072

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 7dbcff9 of spec repo (#4190)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 79a0e15 commit 6a11072

4 files changed

Lines changed: 39 additions & 0 deletions

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22607,6 +22607,10 @@ components:
2260722607
description: Shows the average of all normalized Database Monitoring queries over all hours in the current date for all organizations.
2260822608
format: int64
2260922609
type: integer
22610+
do_jobs_monitoring_orchestrators_job_hours_sum:
22611+
description: Shows the sum of all orchestrator job hours over all hours in the current date for all organizations.
22612+
format: int64
22613+
type: integer
2261022614
eph_infra_host_agent_sum:
2261122615
description: Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
2261222616
format: int64
@@ -23620,6 +23624,10 @@ components:
2362023624
description: Shows the average of all distinct Database Monitoring normalized queries over all hours in the current month for the given org.
2362123625
format: int64
2362223626
type: integer
23627+
do_jobs_monitoring_orchestrators_job_hours_sum:
23628+
description: Shows the sum of all orchestrator job hours over all hours in the current date for the given org.
23629+
format: int64
23630+
type: integer
2362323631
eph_infra_host_agent_sum:
2362423632
description: Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
2362523633
format: int64
@@ -24639,6 +24647,10 @@ components:
2463924647
description: Shows the average of all distinct Database Monitoring Normalized Queries over all hours in the current month for all organizations.
2464024648
format: int64
2464124649
type: integer
24650+
do_jobs_monitoring_orchestrators_job_hours_agg_sum:
24651+
description: Shows the sum of all orchestrator job hours over all hours in the current month for all organizations.
24652+
format: int64
24653+
type: integer
2464224654
end_date:
2464324655
description: Shows the last date of usage in the current month for all organizations.
2464424656
format: date-time

services/usage_metering/src/v1/models/UsageSummaryDate.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,10 @@ export class UsageSummaryDate {
346346
* Shows the average of all normalized Database Monitoring queries over all hours in the current date for all organizations.
347347
*/
348348
"dbmQueriesCountAvg"?: number;
349+
/**
350+
* Shows the sum of all orchestrator job hours over all hours in the current date for all organizations.
351+
*/
352+
"doJobsMonitoringOrchestratorsJobHoursSum"?: number;
349353
/**
350354
* Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
351355
*/
@@ -1430,6 +1434,11 @@ export class UsageSummaryDate {
14301434
type: "number",
14311435
format: "int64",
14321436
},
1437+
doJobsMonitoringOrchestratorsJobHoursSum: {
1438+
baseName: "do_jobs_monitoring_orchestrators_job_hours_sum",
1439+
type: "number",
1440+
format: "int64",
1441+
},
14331442
ephInfraHostAgentSum: {
14341443
baseName: "eph_infra_host_agent_sum",
14351444
type: "number",

services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,10 @@ export class UsageSummaryDateOrg {
356356
* Shows the average of all distinct Database Monitoring normalized queries over all hours in the current month for the given org.
357357
*/
358358
"dbmQueriesAvgSum"?: number;
359+
/**
360+
* Shows the sum of all orchestrator job hours over all hours in the current date for the given org.
361+
*/
362+
"doJobsMonitoringOrchestratorsJobHoursSum"?: number;
359363
/**
360364
* Shows the sum of all ephemeral infrastructure hosts with the Datadog Agent over all hours in the current date for the given org.
361365
*/
@@ -1465,6 +1469,11 @@ export class UsageSummaryDateOrg {
14651469
type: "number",
14661470
format: "int64",
14671471
},
1472+
doJobsMonitoringOrchestratorsJobHoursSum: {
1473+
baseName: "do_jobs_monitoring_orchestrators_job_hours_sum",
1474+
type: "number",
1475+
format: "int64",
1476+
},
14681477
ephInfraHostAgentSum: {
14691478
baseName: "eph_infra_host_agent_sum",
14701479
type: "number",

services/usage_metering/src/v1/models/UsageSummaryResponse.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,10 @@ export class UsageSummaryResponse {
355355
* Shows the average of all distinct Database Monitoring Normalized Queries over all hours in the current month for all organizations.
356356
*/
357357
"dbmQueriesAvgSum"?: number;
358+
/**
359+
* Shows the sum of all orchestrator job hours over all hours in the current month for all organizations.
360+
*/
361+
"doJobsMonitoringOrchestratorsJobHoursAggSum"?: number;
358362
/**
359363
* Shows the last date of usage in the current month for all organizations.
360364
*/
@@ -1485,6 +1489,11 @@ export class UsageSummaryResponse {
14851489
type: "number",
14861490
format: "int64",
14871491
},
1492+
doJobsMonitoringOrchestratorsJobHoursAggSum: {
1493+
baseName: "do_jobs_monitoring_orchestrators_job_hours_agg_sum",
1494+
type: "number",
1495+
format: "int64",
1496+
},
14881497
endDate: {
14891498
baseName: "end_date",
14901499
type: "Date",

0 commit comments

Comments
 (0)