audit work, fixed StellaOps.sln warnings/errors, fixed tests, sprints work, new advisories
This commit is contained in:
@@ -67,50 +67,65 @@ public sealed record PolicyPreviewFindingDto
|
||||
public sealed record PolicyPreviewVerdictDto
|
||||
{
|
||||
[JsonPropertyName("findingId")]
|
||||
[JsonPropertyOrder(0)]
|
||||
public string? FindingId { get; init; }
|
||||
|
||||
[JsonPropertyName("reachability")]
|
||||
[JsonPropertyOrder(1)]
|
||||
public string? Reachability { get; init; }
|
||||
|
||||
[JsonPropertyName("score")]
|
||||
[JsonPropertyOrder(2)]
|
||||
public double? Score { get; init; }
|
||||
|
||||
[JsonPropertyName("sourceTrust")]
|
||||
[JsonPropertyOrder(3)]
|
||||
public string? SourceTrust { get; init; }
|
||||
|
||||
[JsonPropertyName("status")]
|
||||
[JsonPropertyOrder(4)]
|
||||
public string? Status { get; init; }
|
||||
|
||||
[JsonPropertyName("ruleName")]
|
||||
[JsonPropertyOrder(5)]
|
||||
public string? RuleName { get; init; }
|
||||
|
||||
[JsonPropertyName("ruleAction")]
|
||||
[JsonPropertyOrder(6)]
|
||||
public string? RuleAction { get; init; }
|
||||
|
||||
[JsonPropertyName("notes")]
|
||||
[JsonPropertyOrder(7)]
|
||||
public string? Notes { get; init; }
|
||||
|
||||
[JsonPropertyName("score")]
|
||||
public double? Score { get; init; }
|
||||
|
||||
[JsonPropertyName("configVersion")]
|
||||
[JsonPropertyOrder(8)]
|
||||
public string? ConfigVersion { get; init; }
|
||||
|
||||
[JsonPropertyName("inputs")]
|
||||
[JsonPropertyOrder(9)]
|
||||
public IReadOnlyDictionary<string, double>? Inputs { get; init; }
|
||||
|
||||
[JsonPropertyName("quietedBy")]
|
||||
[JsonPropertyOrder(10)]
|
||||
public string? QuietedBy { get; init; }
|
||||
|
||||
[JsonPropertyName("quiet")]
|
||||
[JsonPropertyOrder(11)]
|
||||
public bool? Quiet { get; init; }
|
||||
|
||||
[JsonPropertyName("unknownConfidence")]
|
||||
[JsonPropertyOrder(12)]
|
||||
public double? UnknownConfidence { get; init; }
|
||||
|
||||
[JsonPropertyName("confidenceBand")]
|
||||
[JsonPropertyOrder(13)]
|
||||
public string? ConfidenceBand { get; init; }
|
||||
|
||||
[JsonPropertyName("unknownAgeDays")]
|
||||
[JsonPropertyOrder(14)]
|
||||
public double? UnknownAgeDays { get; init; }
|
||||
|
||||
[JsonPropertyName("sourceTrust")]
|
||||
public string? SourceTrust { get; init; }
|
||||
|
||||
[JsonPropertyName("reachability")]
|
||||
public string? Reachability { get; init; }
|
||||
|
||||
}
|
||||
|
||||
public sealed record PolicyPreviewPolicyDto
|
||||
|
||||
Reference in New Issue
Block a user