Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .generated-info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"spec_repo_commit": "0f24b8e",
"generated": "2025-07-18 16:53:06.032"
"spec_repo_commit": "06ccc32",
"generated": "2025-07-21 13:55:17.296"
}
8 changes: 8 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18895,6 +18895,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
4 changes: 4 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55235,6 +55235,7 @@ paths:
default: navy.oncall.datadoghq.com
description: The globally available endpoint for On-Call.
enum:
- lava.oncall.datadoghq.com
- saffron.oncall.datadoghq.com
- navy.oncall.datadoghq.com
- coral.oncall.datadoghq.com
Expand Down Expand Up @@ -55290,6 +55291,7 @@ paths:
default: navy.oncall.datadoghq.com
description: The globally available endpoint for On-Call.
enum:
- lava.oncall.datadoghq.com
- saffron.oncall.datadoghq.com
- navy.oncall.datadoghq.com
- coral.oncall.datadoghq.com
Expand Down Expand Up @@ -55345,6 +55347,7 @@ paths:
default: navy.oncall.datadoghq.com
description: The globally available endpoint for On-Call.
enum:
- lava.oncall.datadoghq.com
- saffron.oncall.datadoghq.com
- navy.oncall.datadoghq.com
- coral.oncall.datadoghq.com
Expand Down Expand Up @@ -55400,6 +55403,7 @@ paths:
default: navy.oncall.datadoghq.com
description: The globally available endpoint for On-Call.
enum:
- lava.oncall.datadoghq.com
- saffron.oncall.datadoghq.com
- navy.oncall.datadoghq.com
- coral.oncall.datadoghq.com
Expand Down
4 changes: 4 additions & 0 deletions lib/datadog_api_client/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,7 @@ def operation_server_settings
description: "The globally available endpoint for On-Call.",
default_value: "navy.oncall.datadoghq.com",
enum_values: [
"lava.oncall.datadoghq.com",
"saffron.oncall.datadoghq.com",
"navy.oncall.datadoghq.com",
"coral.oncall.datadoghq.com",
Expand Down Expand Up @@ -702,6 +703,7 @@ def operation_server_settings
description: "The globally available endpoint for On-Call.",
default_value: "navy.oncall.datadoghq.com",
enum_values: [
"lava.oncall.datadoghq.com",
"saffron.oncall.datadoghq.com",
"navy.oncall.datadoghq.com",
"coral.oncall.datadoghq.com",
Expand Down Expand Up @@ -749,6 +751,7 @@ def operation_server_settings
description: "The globally available endpoint for On-Call.",
default_value: "navy.oncall.datadoghq.com",
enum_values: [
"lava.oncall.datadoghq.com",
"saffron.oncall.datadoghq.com",
"navy.oncall.datadoghq.com",
"coral.oncall.datadoghq.com",
Expand Down Expand Up @@ -796,6 +799,7 @@ def operation_server_settings
description: "The globally available endpoint for On-Call.",
default_value: "navy.oncall.datadoghq.com",
enum_values: [
"lava.oncall.datadoghq.com",
"saffron.oncall.datadoghq.com",
"navy.oncall.datadoghq.com",
"coral.oncall.datadoghq.com",
Expand Down
22 changes: 21 additions & 1 deletion lib/datadog_api_client/v1/models/usage_billable_summary_body.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ class UsageBillableSummaryBody
# The total account usage.
attr_accessor :account_billable_usage

# The total account committed usage.
attr_accessor :account_committed_usage

# The total account on-demand usage.
attr_accessor :account_on_demand_usage

# Elapsed usage hours for some billable product.
attr_accessor :elapsed_usage_hours

Expand All @@ -49,6 +55,8 @@ class UsageBillableSummaryBody
def self.attribute_map
{
:'account_billable_usage' => :'account_billable_usage',
:'account_committed_usage' => :'account_committed_usage',
:'account_on_demand_usage' => :'account_on_demand_usage',
:'elapsed_usage_hours' => :'elapsed_usage_hours',
:'first_billable_usage_hour' => :'first_billable_usage_hour',
:'last_billable_usage_hour' => :'last_billable_usage_hour',
Expand All @@ -63,6 +71,8 @@ def self.attribute_map
def self.openapi_types
{
:'account_billable_usage' => :'Integer',
:'account_committed_usage' => :'Integer',
:'account_on_demand_usage' => :'Integer',
:'elapsed_usage_hours' => :'Integer',
:'first_billable_usage_hour' => :'Time',
:'last_billable_usage_hour' => :'Time',
Expand Down Expand Up @@ -94,6 +104,14 @@ def initialize(attributes = {})
self.account_billable_usage = attributes[:'account_billable_usage']
end

if attributes.key?(:'account_committed_usage')
self.account_committed_usage = attributes[:'account_committed_usage']
end

if attributes.key?(:'account_on_demand_usage')
self.account_on_demand_usage = attributes[:'account_on_demand_usage']
end

if attributes.key?(:'elapsed_usage_hours')
self.elapsed_usage_hours = attributes[:'elapsed_usage_hours']
end
Expand Down Expand Up @@ -146,6 +164,8 @@ def ==(o)
return true if self.equal?(o)
self.class == o.class &&
account_billable_usage == o.account_billable_usage &&
account_committed_usage == o.account_committed_usage &&
account_on_demand_usage == o.account_on_demand_usage &&
elapsed_usage_hours == o.elapsed_usage_hours &&
first_billable_usage_hour == o.first_billable_usage_hour &&
last_billable_usage_hour == o.last_billable_usage_hour &&
Expand All @@ -159,7 +179,7 @@ def ==(o)
# @return [Integer] Hash code
# @!visibility private
def hash
[account_billable_usage, elapsed_usage_hours, first_billable_usage_hour, last_billable_usage_hour, org_billable_usage, percentage_in_account, usage_unit, additional_properties].hash
[account_billable_usage, account_committed_usage, account_on_demand_usage, elapsed_usage_hours, first_billable_usage_hour, last_billable_usage_hour, org_billable_usage, percentage_in_account, usage_unit, additional_properties].hash
end
end
end
Loading