|
5 | 5 |
|
6 | 6 | """Custom shared definitions for schemas."""
|
7 | 7 |
|
8 |
| -from typing import Literal, Final |
| 8 | +from typing import List, Literal, Final |
9 | 9 |
|
10 | 10 | from marshmallow import validate
|
11 | 11 | from marshmallow_dataclass import NewType
|
|
44 | 44 | }
|
45 | 45 |
|
46 | 46 |
|
| 47 | +NonEmptyStr = NewType('NonEmptyStr', str, validate=validate.Length(min=1)) |
| 48 | + |
47 | 49 | BranchVer = NewType('BranchVer', str, validate=validate.Regexp(BRANCH_PATTERN))
|
| 50 | +CardinalityFields = NewType('CardinalityFields', List[NonEmptyStr], validate=validate.Length(min=0, max=3)) |
48 | 51 | CodeString = NewType("CodeString", str)
|
49 | 52 | ConditionSemVer = NewType('ConditionSemVer', str, validate=validate.Regexp(CONDITION_VERSION_PATTERN))
|
50 | 53 | Date = NewType('Date', str, validate=validate.Regexp(DATE_PATTERN))
|
51 | 54 | FilterLanguages = Literal["kuery", "lucene"]
|
52 | 55 | Interval = NewType('Interval', str, validate=validate.Regexp(INTERVAL_PATTERN))
|
53 |
| -PositiveInteger = NewType('PositiveInteger', int, validate=validate.Range(min=1)) |
54 | 56 | Markdown = NewType("MarkdownField", CodeString)
|
55 | 57 | Maturity = Literal['development', 'experimental', 'beta', 'production', 'deprecated']
|
56 | 58 | MaxSignals = NewType("MaxSignals", int, validate=validate.Range(min=1))
|
57 |
| -NonEmptyStr = NewType('NonEmptyStr', str, validate=validate.Length(min=1)) |
58 | 59 | Operator = Literal['equals']
|
59 | 60 | OSType = Literal['windows', 'linux', 'macos']
|
| 61 | +PositiveInteger = NewType('PositiveInteger', int, validate=validate.Range(min=1)) |
60 | 62 | RiskScore = NewType("MaxSignals", int, validate=validate.Range(min=1, max=100))
|
61 | 63 | RuleType = Literal['query', 'saved_query', 'machine_learning', 'eql', 'threshold', 'threat_match']
|
62 | 64 | SemVer = NewType('SemVer', str, validate=validate.Regexp(VERSION_PATTERN))
|
|
0 commit comments