File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.4",
7
- "regenerated": "2022-12-13 17:18:35.179183 ",
8
- "spec_repo_commit": "8cd868ba "
7
+ "regenerated": "2022-12-13 20:15:30.242009 ",
8
+ "spec_repo_commit": "cb07e37b "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.4",
12
- "regenerated": "2022-12-13 17:18:35.195191 ",
13
- "spec_repo_commit": "8cd868ba "
12
+ "regenerated": "2022-12-13 20:15:30.253488 ",
13
+ "spec_repo_commit": "cb07e37b "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -6155,6 +6155,10 @@ components:
6155
6155
enable_logs_sample:
6156
6156
description: Whether or not to send a log sample when the log monitor triggers.
6157
6157
type: boolean
6158
+ enable_samples:
6159
+ description: Whether or not to send a list of samples when the monitor triggers.
6160
+ This is only used by CI Test and Pipeline monitors.
6161
+ type: boolean
6158
6162
escalation_message:
6159
6163
default: none
6160
6164
description: 'We recommend using the [is_renotify](https://docs.datadoghq.com/monitors/notify/?tab=is_alert#renotify),
Original file line number Diff line number Diff line change @@ -30,6 +30,10 @@ export class MonitorOptions {
30
30
* Whether or not to send a log sample when the log monitor triggers.
31
31
*/
32
32
"enableLogsSample" ?: boolean ;
33
+ /**
34
+ * Whether or not to send a list of samples when the monitor triggers. This is only used by CI Test and Pipeline monitors.
35
+ */
36
+ "enableSamples" ?: boolean ;
33
37
/**
34
38
* We recommend using the [is_renotify](https://docs.datadoghq.com/monitors/notify/?tab=is_alert#renotify),
35
39
* block in the original message instead.
@@ -192,6 +196,10 @@ export class MonitorOptions {
192
196
baseName : "enable_logs_sample" ,
193
197
type : "boolean" ,
194
198
} ,
199
+ enableSamples : {
200
+ baseName : "enable_samples" ,
201
+ type : "boolean" ,
202
+ } ,
195
203
escalationMessage : {
196
204
baseName : "escalation_message" ,
197
205
type : "string" ,
You can’t perform that action at this time.
0 commit comments