File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "spec_repo_commit": "fde8b90 ",
3
- "generated": "2025-08-18 20:33:32.064 "
2
+ "spec_repo_commit": "e9346e4 ",
3
+ "generated": "2025-08-19 15:56:13.028 "
4
4
}
Original file line number Diff line number Diff line change @@ -981,6 +981,10 @@ components:
981
981
increase_good:
982
982
description: Whether to show increase as good.
983
983
type: boolean
984
+ limit:
985
+ description: The number of items to show.
986
+ format: int64
987
+ type: integer
984
988
log_query:
985
989
$ref: '#/components/schemas/LogQueryDefinition'
986
990
network_query:
Original file line number Diff line number Diff line change @@ -43,6 +43,10 @@ export class ChangeWidgetRequest {
43
43
* Whether to show increase as good.
44
44
*/
45
45
"increaseGood" ?: boolean ;
46
+ /**
47
+ * The number of items to show.
48
+ */
49
+ "limit" ?: number ;
46
50
/**
47
51
* The log query.
48
52
*/
@@ -132,6 +136,11 @@ export class ChangeWidgetRequest {
132
136
baseName : "increase_good" ,
133
137
type : "boolean" ,
134
138
} ,
139
+ limit : {
140
+ baseName : "limit" ,
141
+ type : "number" ,
142
+ format : "int64" ,
143
+ } ,
135
144
logQuery : {
136
145
baseName : "log_query" ,
137
146
type : "LogQueryDefinition" ,
You can’t perform that action at this time.
0 commit comments