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

ListFindingsResult

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

Result containing the Finding and its StateChange.

interface ListFindingsResult {
finding?: Finding;
readonly resource?: Resource;
stateChange?:
| "UNUSED"
| "CHANGED"
| "UNCHANGED"
| "ADDED"
| "REMOVED";
}

§Properties

§
finding?: Finding
[src]

Finding matching the search request.

§
readonly resource?: Resource
[src]

Output only. Resource that is associated with this finding.

§
stateChange?: "UNUSED" | "CHANGED" | "UNCHANGED" | "ADDED" | "REMOVED"
[src]

State change of the finding between the points in time.