Skip to content

Add account on demand and committed usage to billable summary #2389

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: v2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18613,6 +18613,14 @@ components:
description: The total account usage.
format: int64
type: integer
account_committed_usage:
description: The total account committed usage.
format: int64
type: integer
account_on_demand_usage:
description: The total account on-demand usage.
format: int64
type: integer
elapsed_usage_hours:
description: Elapsed usage hours for some billable product.
format: int64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ export class UsageBillableSummaryBody {
* The total account usage.
*/
"accountBillableUsage"?: number;
/**
* The total account committed usage.
*/
"accountCommittedUsage"?: number;
/**
* The total account on-demand usage.
*/
"accountOnDemandUsage"?: number;
/**
* Elapsed usage hours for some billable product.
*/
Expand Down Expand Up @@ -52,6 +60,16 @@ export class UsageBillableSummaryBody {
type: "number",
format: "int64",
},
accountCommittedUsage: {
baseName: "account_committed_usage",
type: "number",
format: "int64",
},
accountOnDemandUsage: {
baseName: "account_on_demand_usage",
type: "number",
format: "int64",
},
elapsedUsageHours: {
baseName: "elapsed_usage_hours",
type: "number",
Expand Down