@@ -68,6 +68,21 @@ def __init__(self, **kwargs):
6868
6969 :param stat: APM resource stat name.
7070 :type stat: FormulaAndFunctionApmResourceStatName
71+
72+ :param operation_mode: Optional operation mode to aggregate across operation names.
73+ :type operation_mode: str, optional
74+
75+ :param peer_tags: Tags to query for a specific downstream entity (peer.service, peer.db_instance, peer.s3, peer.s3.bucket, etc.).
76+ :type peer_tags: [str], optional
77+
78+ :param query_filter: Additional filters for the query using metrics query syntax (e.g., env, primary_tag).
79+ :type query_filter: str, optional
80+
81+ :param resource_hash: The hash of a specific resource to filter by.
82+ :type resource_hash: str, optional
83+
84+ :param span_kind: Describes the relationship between the span, its parents, and its children in a trace.
85+ :type span_kind: FormulaAndFunctionApmMetricsSpanKind, optional
7186 """
7287 super ().__init__ (kwargs )
7388
@@ -89,11 +104,15 @@ def _composed_schemas(_):
89104 from datadog_api_client .v1 .model .formula_and_function_apm_resource_stats_query_definition import (
90105 FormulaAndFunctionApmResourceStatsQueryDefinition ,
91106 )
107+ from datadog_api_client .v1 .model .formula_and_function_apm_metrics_query_definition import (
108+ FormulaAndFunctionApmMetricsQueryDefinition ,
109+ )
92110
93111 return {
94112 "oneOf" : [
95113 FormulaAndFunctionMetricQueryDefinition ,
96114 FormulaAndFunctionEventQueryDefinition ,
97115 FormulaAndFunctionApmResourceStatsQueryDefinition ,
116+ FormulaAndFunctionApmMetricsQueryDefinition ,
98117 ],
99118 }
0 commit comments