29 lines
1.3 KiB
C#
29 lines
1.3 KiB
C#
namespace ScadaLink.AuditLog.Configuration;
|
|
|
|
/// <summary>
|
|
/// Per-target redaction override applied additively on top of
|
|
/// <see cref="AuditLogOptions.GlobalBodyRedactors"/> and the
|
|
/// <see cref="AuditLogOptions.DefaultCapBytes"/> / <see cref="AuditLogOptions.ErrorCapBytes"/>
|
|
/// caps. Targets are identified by the script-facing external-system /
|
|
/// database / notification-list / inbound-API-key name.
|
|
/// </summary>
|
|
public sealed class PerTargetRedactionOverride
|
|
{
|
|
/// <summary>Optional payload cap override (bytes); null inherits the global cap.</summary>
|
|
public int? CapBytes { get; set; }
|
|
|
|
/// <summary>Additional body redactor regex patterns (appended to the global list).</summary>
|
|
public List<string>? AdditionalBodyRedactors { get; set; }
|
|
|
|
/// <summary>
|
|
/// Opt-in SQL parameter redaction: case-insensitive regex matched against
|
|
/// each SQL parameter NAME in the M4 <c>AuditingDbCommand</c> RequestSummary
|
|
/// JSON (<c>{"sql":"...","parameters":{"@name":"value", ...}}</c>); values
|
|
/// whose name matches are replaced with <c><redacted></c>. Null (the
|
|
/// default) means parameter values are captured verbatim. Only applied to
|
|
/// <see cref="ScadaLink.Commons.Types.Enums.AuditChannel.DbOutbound"/>
|
|
/// rows.
|
|
/// </summary>
|
|
public string? RedactSqlParamsMatching { get; set; }
|
|
}
|