Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
oas-ci / oas-validate (push) Has been cancelled
Signals CI & Image / signals-ci (push) Has been cancelled
sm-remote-ci / build-and-test (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Signals Reachability Scoring & Events / sign-and-upload (push) Has been cancelled
api-governance / spectral-lint (push) Has been cancelled
Signals Reachability Scoring & Events / reachability-smoke (push) Has been cancelled
AOC Guard CI / aoc-guard (push) Has been cancelled
devportal-offline / build-offline (push) Has been cancelled
Mirror Thin Bundle Sign & Verify / mirror-sign (push) Has been cancelled
53 lines
1.5 KiB
C#
53 lines
1.5 KiB
C#
namespace StellaOps.Audit.ReplayToken;
|
|
|
|
/// <summary>
|
|
/// Inputs for replay token generation.
|
|
/// </summary>
|
|
public sealed class ReplayTokenRequest
|
|
{
|
|
/// <summary>
|
|
/// Feed manifest hashes (advisory sources).
|
|
/// </summary>
|
|
public IReadOnlyList<string> FeedManifests { get; init; } = Array.Empty<string>();
|
|
|
|
/// <summary>
|
|
/// Rule set version identifier.
|
|
/// </summary>
|
|
public string? RulesVersion { get; init; }
|
|
|
|
/// <summary>
|
|
/// Rule set content hash.
|
|
/// </summary>
|
|
public string? RulesHash { get; init; }
|
|
|
|
/// <summary>
|
|
/// Lattice policy version identifier.
|
|
/// </summary>
|
|
public string? LatticePolicyVersion { get; init; }
|
|
|
|
/// <summary>
|
|
/// Lattice policy content hash.
|
|
/// </summary>
|
|
public string? LatticePolicyHash { get; init; }
|
|
|
|
/// <summary>
|
|
/// Input artifact hashes (SBOMs, images, etc.).
|
|
/// </summary>
|
|
public IReadOnlyList<string> InputHashes { get; init; } = Array.Empty<string>();
|
|
|
|
/// <summary>
|
|
/// Scoring configuration version.
|
|
/// </summary>
|
|
public string? ScoringConfigVersion { get; init; }
|
|
|
|
/// <summary>
|
|
/// Evidence artifact hashes.
|
|
/// </summary>
|
|
public IReadOnlyList<string> EvidenceHashes { get; init; } = Array.Empty<string>();
|
|
|
|
/// <summary>
|
|
/// Additional context for extensibility.
|
|
/// </summary>
|
|
public IReadOnlyDictionary<string, string> AdditionalContext { get; init; } = new Dictionary<string, string>();
|
|
}
|