/** * Request to create a firewall exception */ export interface FirewallExceptionCreateRequestV3 { /** * 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; /** * Name of the package */ packageName: string; /** * UUID of the registry * @format uuid */ registryId: string; /** * Plan for remediation (optional) */ remediationPlan?: string | null; /** * List of versions to except. Empty array means all versions. */ versionList?: string[]; }