You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/datadog-api-client-v1/models/FormulaAndFunctionApmResourceStatsQueryDefinition.ts
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -27,15 +27,15 @@ export class FormulaAndFunctionApmResourceStatsQueryDefinition {
27
27
/**
28
28
* Array of fields to group results by.
29
29
*/
30
-
"groupBy"?: Array<string>;
30
+
"groupBy": Array<string>;
31
31
/**
32
32
* Name of this query to use in formulas.
33
33
*/
34
34
"name": string;
35
35
/**
36
36
* Name of operation on service.
37
37
*/
38
-
"operationName"?: string;
38
+
"operationName": string;
39
39
/**
40
40
* Name of the second primary tag used within APM. Required when `primary_tag_value` is specified. See https://docs.datadoghq.com/tracing/guide/setting_primary_tags_to_scope/#add-a-second-primary-tag-in-datadog
41
41
*/
@@ -90,6 +90,7 @@ export class FormulaAndFunctionApmResourceStatsQueryDefinition {
90
90
groupBy: {
91
91
baseName: "group_by",
92
92
type: "Array<string>",
93
+
required: true,
93
94
},
94
95
name: {
95
96
baseName: "name",
@@ -99,6 +100,7 @@ export class FormulaAndFunctionApmResourceStatsQueryDefinition {
0 commit comments