Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
Signals CI & Image / signals-ci (push) Has been cancelled
Signals Reachability Scoring & Events / reachability-smoke (push) Has been cancelled
Signals Reachability Scoring & Events / sign-and-upload (push) Has been cancelled
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Reachability Corpus Validation / validate-corpus (push) Has been cancelled
Reachability Corpus Validation / validate-ground-truths (push) Has been cancelled
Scanner Analyzers / Discover Analyzers (push) Has been cancelled
Scanner Analyzers / Validate Test Fixtures (push) Has been cancelled
Reachability Corpus Validation / determinism-check (push) Has been cancelled
Scanner Analyzers / Build Analyzers (push) Has been cancelled
Scanner Analyzers / Test Language Analyzers (push) Has been cancelled
Scanner Analyzers / Verify Deterministic Output (push) Has been cancelled
Notify Smoke Test / Notify Unit Tests (push) Has been cancelled
Notify Smoke Test / Notifier Service Tests (push) Has been cancelled
Notify Smoke Test / Notification Smoke Test (push) Has been cancelled
Policy Lint & Smoke / policy-lint (push) Has been cancelled
14 lines
446 B
C#
14 lines
446 B
C#
namespace StellaOps.Aoc.Cli.Models;
|
|
|
|
public sealed class VerifyOptions
|
|
{
|
|
public required string Since { get; init; }
|
|
public string? MongoConnectionString { get; init; }
|
|
public string? PostgresConnectionString { get; init; }
|
|
public string? OutputPath { get; init; }
|
|
public string? NdjsonPath { get; init; }
|
|
public string? Tenant { get; init; }
|
|
public bool DryRun { get; init; }
|
|
public bool Verbose { get; init; }
|
|
}
|