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
3 changes: 2 additions & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3006,7 +3006,8 @@ components:
x-enum-varnames:
- APM_RESOURCE_STATS
FormulaAndFunctionApmResourceStatsQueryDefinition:
description: APM resource stats query using formulas and functions.
deprecated: true
description: APM resource stats query using formulas and functions. Deprecated - Use `apm_metrics` query type instead.
properties:
cross_org_uuids:
$ref: "#/components/schemas/CrossOrgUuids"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
require 'time'

module DatadogAPIClient::V1
# APM resource stats query using formulas and functions.
# APM resource stats query using formulas and functions. Deprecated - Use `apm_metrics` query type instead.
#
# @deprecated This model is deprecated.
class FormulaAndFunctionApmResourceStatsQueryDefinition
include BaseGenericModel

Expand Down Expand Up @@ -96,6 +98,7 @@ def self.openapi_types
# @param attributes [Hash] Model attributes in the form of hash
# @!visibility private
def initialize(attributes = {})
warn "[DEPRECATION] `FormulaAndFunctionApmResourceStatsQueryDefinition` is deprecated."
if (!attributes.is_a?(Hash))
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::FormulaAndFunctionApmResourceStatsQueryDefinition` initialize method"
end
Expand Down
Loading