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

GoogleCloudSecuritycenterV1CustomConfig

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

Defines the properties in a custom module configuration for Security Health Analytics. Use the custom module configuration to create custom detectors that generate custom findings for resources that you specify.

interface GoogleCloudSecuritycenterV1CustomConfig {
description?: string;
predicate?: Expr;
recommendation?: string;
severity?:
| "SEVERITY_UNSPECIFIED"
| "CRITICAL"
| "HIGH"
| "MEDIUM"
| "LOW";
}

§Properties

§

Custom output properties.

§
description?: string
[src]

Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.

§
predicate?: Expr
[src]

The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated.

§
recommendation?: string
[src]

An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the nextSteps property of the finding JSON.

§

The resource types that the custom module operates on. Each custom module can specify up to 5 resource types.

§
severity?: "SEVERITY_UNSPECIFIED" | "CRITICAL" | "HIGH" | "MEDIUM" | "LOW"
[src]

The severity to assign to findings generated by the module.