/** * Request to update a firewall exception. Only allowed when status is PENDING. */ export interface FirewallExceptionUpdateRequestV3 { /** * Updated business justification for the exception */ businessJustification?: string; /** * Number of days after approval when the exception expires. Null means never expires. * @format int32 */ expireAfter?: number | null; /** * Updated plan for remediation */ remediationPlan?: string | null; /** * Updated list of versions to except. Empty array means all versions. */ versionList?: string[]; }