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

GoogleCloudSecuritycenterV2PolicyViolationSummary

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

Metadata summarizing policy violations of child resources of the affected resource. finding_category and resource determine the exact semantics of the counts. For example, when category=DATA_SECURITY_POSTURE_OBJECT_PUBLIC_ACCESS_VIOLATION and resource='storage.googleapis.com/buckets/my-bucket-name' then this counts the number of Cloud Storage objects in my-bucket-name which violate a Public Access control.

interface GoogleCloudSecuritycenterV2PolicyViolationSummary {
conformantResourcesCount?: bigint;
evaluationErrorsCount?: bigint;
outOfScopeResourcesCount?: bigint;
policyViolationsCount?: bigint;
}

§Properties

§
conformantResourcesCount?: bigint
[src]

Total number of child resources that conform to the policy.

§
evaluationErrorsCount?: bigint
[src]

Number of child resources for which errors during evaluation occurred. The evaluation result for these child resources is effectively "unknown".

§
outOfScopeResourcesCount?: bigint
[src]

Total count of child resources which were not in scope for evaluation.

§
policyViolationsCount?: bigint
[src]

Count of child resources in violation of the policy.