Skip to content

Commit 867b972

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 4b3a243 of spec repo
1 parent cda7e05 commit 867b972

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18616,6 +18616,14 @@ components:
1861618616
description: The total account usage.
1861718617
format: int64
1861818618
type: integer
18619+
account_committed_usage:
18620+
description: The total account committed usage.
18621+
format: int64
18622+
type: integer
18623+
account_on_demand_usage:
18624+
description: The total account on-demand usage.
18625+
format: int64
18626+
type: integer
1861918627
elapsed_usage_hours:
1862018628
description: Elapsed usage hours for some billable product.
1862118629
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)