Skip to content

Commit 7a0c3af

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

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:52:11.681"
2+
"spec_repo_commit": "06ccc32",
3+
"generated": "2025-07-21 13:56:34.429"
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

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ export class UsageBillableSummaryBody {
1414
* The total account usage.
1515
*/
1616
"accountBillableUsage"?: number;
17+
/**
18+
* The total account committed usage.
19+
*/
20+
"accountCommittedUsage"?: number;
21+
/**
22+
* The total account on-demand usage.
23+
*/
24+
"accountOnDemandUsage"?: number;
1725
/**
1826
* Elapsed usage hours for some billable product.
1927
*/
@@ -60,6 +68,16 @@ export class UsageBillableSummaryBody {
6068
type: "number",
6169
format: "int64",
6270
},
71+
accountCommittedUsage: {
72+
baseName: "account_committed_usage",
73+
type: "number",
74+
format: "int64",
75+
},
76+
accountOnDemandUsage: {
77+
baseName: "account_on_demand_usage",
78+
type: "number",
79+
format: "int64",
80+
},
6381
elapsedUsageHours: {
6482
baseName: "elapsed_usage_hours",
6583
type: "number",

0 commit comments

Comments
 (0)