Skip to content

Commit bc153c0

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add account on demand and committed usage to billable summary (#2553)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 7bf10bf commit bc153c0

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "eea03ed",
3-
"generated": "2025-07-21 08:50:55.922"
2+
"spec_repo_commit": "06ccc32",
3+
"generated": "2025-07-21 13:55:07.250"
44
}

.generator/schemas/v1/openapi.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18895,6 +18895,14 @@ components:
1889518895
description: The total account usage.
1889618896
format: int64
1889718897
type: integer
18898+
account_committed_usage:
18899+
description: The total account committed usage.
18900+
format: int64
18901+
type: integer
18902+
account_on_demand_usage:
18903+
description: The total account on-demand usage.
18904+
format: int64
18905+
type: integer
1889818906
elapsed_usage_hours:
1889918907
description: Elapsed usage hours for some billable product.
1890018908
format: int64

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ export class UsageBillableSummaryBody {
88
* The total account usage.
99
*/
1010
"accountBillableUsage"?: number;
11+
/**
12+
* The total account committed usage.
13+
*/
14+
"accountCommittedUsage"?: number;
15+
/**
16+
* The total account on-demand usage.
17+
*/
18+
"accountOnDemandUsage"?: number;
1119
/**
1220
* Elapsed usage hours for some billable product.
1321
*/
@@ -52,6 +60,16 @@ export class UsageBillableSummaryBody {
5260
type: "number",
5361
format: "int64",
5462
},
63+
accountCommittedUsage: {
64+
baseName: "account_committed_usage",
65+
type: "number",
66+
format: "int64",
67+
},
68+
accountOnDemandUsage: {
69+
baseName: "account_on_demand_usage",
70+
type: "number",
71+
format: "int64",
72+
},
5573
elapsedUsageHours: {
5674
baseName: "elapsed_usage_hours",
5775
type: "number",

0 commit comments

Comments
 (0)