Skip to content

Commit 51f64b1

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit a92a7a4f of spec repo
1 parent ba56fea commit 51f64b1

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 18:33:38.403757",
8-
"spec_repo_commit": "d3fcdb89"
7+
"regenerated": "2025-02-21 01:24:37.358829",
8+
"spec_repo_commit": "a92a7a4f"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-02-20 18:33:38.419806",
13-
"spec_repo_commit": "d3fcdb89"
12+
"regenerated": "2025-02-21 01:24:37.373943",
13+
"spec_repo_commit": "a92a7a4f"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25121,6 +25121,10 @@ components:
2512125121
- 1800
2512225122
- 3600
2512325123
- 7200
25124+
- 10800
25125+
- 21600
25126+
- 43200
25127+
- 86400
2512425128
format: int32
2512525129
type: integer
2512625130
x-enum-varnames:
@@ -25132,6 +25136,10 @@ components:
2513225136
- THIRTY_MINUTES
2513325137
- ONE_HOUR
2513425138
- TWO_HOURS
25139+
- THREE_HOURS
25140+
- SIX_HOURS
25141+
- TWELVE_HOURS
25142+
- ONE_DAY
2513525143
SecurityMonitoringRuleHardcodedEvaluatorType:
2513625144
description: Hardcoded evaluator type.
2513725145
enum:
@@ -25168,6 +25176,8 @@ components:
2516825176
- 7200
2516925177
- 10800
2517025178
- 21600
25179+
- 43200
25180+
- 86400
2517125181
format: int32
2517225182
type: integer
2517325183
x-enum-varnames:
@@ -25181,6 +25191,8 @@ components:
2518125191
- TWO_HOURS
2518225192
- THREE_HOURS
2518325193
- SIX_HOURS
25194+
- TWELVE_HOURS
25195+
- ONE_DAY
2518425196
SecurityMonitoringRuleMaxSignalDuration:
2518525197
description: "A signal will \u201Cclose\u201D regardless of the query being
2518625198
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
@@ -2188,11 +2188,11 @@ const enumsMap: { [key: string]: any[] } = {
21882188
"anomaly_threshold",
21892189
],
21902190
SecurityMonitoringRuleEvaluationWindow: [
2191-
0, 60, 300, 600, 900, 1800, 3600, 7200,
2191+
0, 60, 300, 600, 900, 1800, 3600, 7200, 10800, 21600, 43200, 86400,
21922192
],
21932193
SecurityMonitoringRuleHardcodedEvaluatorType: ["log4shell"],
21942194
SecurityMonitoringRuleKeepAlive: [
2195-
0, 60, 300, 600, 900, 1800, 3600, 7200, 10800, 21600,
2195+
0, 60, 300, 600, 900, 1800, 3600, 7200, 10800, 21600, 43200, 86400,
21962196
],
21972197
SecurityMonitoringRuleMaxSignalDuration: [
21982198
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)