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

MuteInfo

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

Mute information about the finding, including whether the finding has a static mute or any matching dynamic mute rules.

interface MuteInfo {
dynamicMuteRecords?: DynamicMuteRecord[];
staticMute?: StaticMute;
}

§Properties

§
dynamicMuteRecords?: DynamicMuteRecord[]
[src]

The list of dynamic mute rules that currently match the finding.

§
staticMute?: StaticMute
[src]

If set, the static mute applied to this finding. Static mutes override dynamic mutes. If unset, there is no static mute.