Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-02-21 18:16:25.164341",
"spec_repo_commit": "5de91bd6"
"regenerated": "2025-02-21 19:13:50.295635",
"spec_repo_commit": "47fc5add"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-02-21 18:16:25.179171",
"spec_repo_commit": "5de91bd6"
"regenerated": "2025-02-21 19:13:50.311443",
"spec_repo_commit": "47fc5add"
}
}
}
12 changes: 12 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25121,6 +25121,10 @@ components:
- 1800
- 3600
- 7200
- 10800
- 21600
- 43200
- 86400
format: int32
type: integer
x-enum-varnames:
Expand All @@ -25132,6 +25136,10 @@ components:
- THIRTY_MINUTES
- ONE_HOUR
- TWO_HOURS
- THREE_HOURS
- SIX_HOURS
- TWELVE_HOURS
- ONE_DAY
SecurityMonitoringRuleHardcodedEvaluatorType:
description: Hardcoded evaluator type.
enum:
Expand Down Expand Up @@ -25168,6 +25176,8 @@ components:
- 7200
- 10800
- 21600
- 43200
- 86400
format: int32
type: integer
x-enum-varnames:
Expand All @@ -25181,6 +25191,8 @@ components:
- TWO_HOURS
- THREE_HOURS
- SIX_HOURS
- TWELVE_HOURS
- ONE_DAY
SecurityMonitoringRuleMaxSignalDuration:
description: "A signal will \u201Cclose\u201D regardless of the query being
matched once the time exceeds the maximum duration.\nThis time is calculated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
public class SecurityMonitoringRuleEvaluationWindow extends ModelEnum<Integer> {

private static final Set<Integer> allowedValues =
new HashSet<Integer>(Arrays.asList(0, 60, 300, 600, 900, 1800, 3600, 7200));
new HashSet<Integer>(
Arrays.asList(0, 60, 300, 600, 900, 1800, 3600, 7200, 10800, 21600, 43200, 86400));

public static final SecurityMonitoringRuleEvaluationWindow ZERO_MINUTES =
new SecurityMonitoringRuleEvaluationWindow(0);
Expand All @@ -48,6 +49,14 @@ public class SecurityMonitoringRuleEvaluationWindow extends ModelEnum<Integer> {
new SecurityMonitoringRuleEvaluationWindow(3600);
public static final SecurityMonitoringRuleEvaluationWindow TWO_HOURS =
new SecurityMonitoringRuleEvaluationWindow(7200);
public static final SecurityMonitoringRuleEvaluationWindow THREE_HOURS =
new SecurityMonitoringRuleEvaluationWindow(10800);
public static final SecurityMonitoringRuleEvaluationWindow SIX_HOURS =
new SecurityMonitoringRuleEvaluationWindow(21600);
public static final SecurityMonitoringRuleEvaluationWindow TWELVE_HOURS =
new SecurityMonitoringRuleEvaluationWindow(43200);
public static final SecurityMonitoringRuleEvaluationWindow ONE_DAY =
new SecurityMonitoringRuleEvaluationWindow(86400);

SecurityMonitoringRuleEvaluationWindow(Integer value) {
super(value, allowedValues);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
public class SecurityMonitoringRuleKeepAlive extends ModelEnum<Integer> {

private static final Set<Integer> allowedValues =
new HashSet<Integer>(Arrays.asList(0, 60, 300, 600, 900, 1800, 3600, 7200, 10800, 21600));
new HashSet<Integer>(
Arrays.asList(0, 60, 300, 600, 900, 1800, 3600, 7200, 10800, 21600, 43200, 86400));

public static final SecurityMonitoringRuleKeepAlive ZERO_MINUTES =
new SecurityMonitoringRuleKeepAlive(0);
Expand All @@ -49,6 +50,10 @@ public class SecurityMonitoringRuleKeepAlive extends ModelEnum<Integer> {
new SecurityMonitoringRuleKeepAlive(10800);
public static final SecurityMonitoringRuleKeepAlive SIX_HOURS =
new SecurityMonitoringRuleKeepAlive(21600);
public static final SecurityMonitoringRuleKeepAlive TWELVE_HOURS =
new SecurityMonitoringRuleKeepAlive(43200);
public static final SecurityMonitoringRuleKeepAlive ONE_DAY =
new SecurityMonitoringRuleKeepAlive(86400);

SecurityMonitoringRuleKeepAlive(Integer value) {
super(value, allowedValues);
Expand Down