Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Remediation

import type { Remediation } from "https://googleapis.deno.dev/v1/containeranalysis:v1.ts";

Specifies details on how to handle (and presumably, fix) a vulnerability.

interface Remediation {
details?: string;
remediationType?:
| "REMEDIATION_TYPE_UNSPECIFIED"
| "MITIGATION"
| "NO_FIX_PLANNED"
| "NONE_AVAILABLE"
| "VENDOR_FIX"
| "WORKAROUND";
remediationUri?: RelatedUrl;
}

§Properties

§
details?: string
[src]

Contains a comprehensive human-readable discussion of the remediation.

§
remediationType?: "REMEDIATION_TYPE_UNSPECIFIED" | "MITIGATION" | "NO_FIX_PLANNED" | "NONE_AVAILABLE" | "VENDOR_FIX" | "WORKAROUND"
[src]

The type of remediation that can be applied.

§
remediationUri?: RelatedUrl
[src]

Contains the URL where to obtain the remediation.