Skip to content

Commit 2ac67f0

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 3645b42b of spec repo
1 parent c4abc80 commit 2ac67f0

File tree

5 files changed

+30
-6
lines changed

5 files changed

+30
-6
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-02-20 13:35:04.708998",
8-
"spec_repo_commit": "c64543d0"
7+
"regenerated": "2025-02-20 18:52:15.740763",
8+
"spec_repo_commit": "3645b42b"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-02-20 13:35:04.724917",
13-
"spec_repo_commit": "c64543d0"
12+
"regenerated": "2025-02-20 18:52:15.755931",
13+
"spec_repo_commit": "3645b42b"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25090,6 +25090,10 @@ components:
2509025090
- 1800
2509125091
- 3600
2509225092
- 7200
25093+
- 10800
25094+
- 21600
25095+
- 43200
25096+
- 86400
2509325097
format: int32
2509425098
type: integer
2509525099
x-enum-varnames:
@@ -25101,6 +25105,10 @@ components:
2510125105
- THIRTY_MINUTES
2510225106
- ONE_HOUR
2510325107
- TWO_HOURS
25108+
- THREE_HOURS
25109+
- SIX_HOURS
25110+
- TWELVE_HOURS
25111+
- ONE_DAY
2510425112
SecurityMonitoringRuleHardcodedEvaluatorType:
2510525113
description: Hardcoded evaluator type.
2510625114
enum:
@@ -25137,6 +25145,8 @@ components:
2513725145
- 7200
2513825146
- 10800
2513925147
- 21600
25148+
- 43200
25149+
- 86400
2514025150
format: int32
2514125151
type: integer
2514225152
x-enum-varnames:
@@ -25150,6 +25160,8 @@ components:
2515025160
- TWO_HOURS
2515125161
- THREE_HOURS
2515225162
- SIX_HOURS
25163+
- TWELVE_HOURS
25164+
- ONE_DAY
2515325165
SecurityMonitoringRuleMaxSignalDuration:
2515425166
description: "A signal will \u201Cclose\u201D regardless of the query being
2515525167
matched once the time exceeds the maximum duration.\nThis time is calculated

packages/datadog-api-client-v2/models/ObjectSerializer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2187,11 +2187,11 @@ const enumsMap: { [key: string]: any[] } = {
21872187
"anomaly_threshold",
21882188
],
21892189
SecurityMonitoringRuleEvaluationWindow: [
2190-
0, 60, 300, 600, 900, 1800, 3600, 7200,
2190+
0, 60, 300, 600, 900, 1800, 3600, 7200, 10800, 21600, 43200, 86400,
21912191
],
21922192
SecurityMonitoringRuleHardcodedEvaluatorType: ["log4shell"],
21932193
SecurityMonitoringRuleKeepAlive: [
2194-
0, 60, 300, 600, 900, 1800, 3600, 7200, 10800, 21600,
2194+
0, 60, 300, 600, 900, 1800, 3600, 7200, 10800, 21600, 43200, 86400,
21952195
],
21962196
SecurityMonitoringRuleMaxSignalDuration: [
21972197
0, 60, 300, 600, 900, 1800, 3600, 7200, 10800, 21600, 43200, 86400,

packages/datadog-api-client-v2/models/SecurityMonitoringRuleEvaluationWindow.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ export type SecurityMonitoringRuleEvaluationWindow =
2020
| typeof THIRTY_MINUTES
2121
| typeof ONE_HOUR
2222
| typeof TWO_HOURS
23+
| typeof THREE_HOURS
24+
| typeof SIX_HOURS
25+
| typeof TWELVE_HOURS
26+
| typeof ONE_DAY
2327
| UnparsedObject;
2428
export const ZERO_MINUTES = 0;
2529
export const ONE_MINUTE = 60;
@@ -29,3 +33,7 @@ export const FIFTEEN_MINUTES = 900;
2933
export const THIRTY_MINUTES = 1800;
3034
export const ONE_HOUR = 3600;
3135
export const TWO_HOURS = 7200;
36+
export const THREE_HOURS = 10800;
37+
export const SIX_HOURS = 21600;
38+
export const TWELVE_HOURS = 43200;
39+
export const ONE_DAY = 86400;

packages/datadog-api-client-v2/models/SecurityMonitoringRuleKeepAlive.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ export type SecurityMonitoringRuleKeepAlive =
2222
| typeof TWO_HOURS
2323
| typeof THREE_HOURS
2424
| typeof SIX_HOURS
25+
| typeof TWELVE_HOURS
26+
| typeof ONE_DAY
2527
| UnparsedObject;
2628
export const ZERO_MINUTES = 0;
2729
export const ONE_MINUTE = 60;
@@ -33,3 +35,5 @@ export const ONE_HOUR = 3600;
3335
export const TWO_HOURS = 7200;
3436
export const THREE_HOURS = 10800;
3537
export const SIX_HOURS = 21600;
38+
export const TWELVE_HOURS = 43200;
39+
export const ONE_DAY = 86400;

0 commit comments

Comments
 (0)