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

GoogleCloudPolicysimulatorV1OrgPolicyViolationsPreviewResourceCounts

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

A summary of the state of all resources scanned for compliance with the changed OrgPolicy.

interface GoogleCloudPolicysimulatorV1OrgPolicyViolationsPreviewResourceCounts {
readonly compliant?: number;
readonly errors?: number;
readonly noncompliant?: number;
readonly scanned?: number;
readonly unenforced?: number;
}

§Properties

§
readonly compliant?: number
[src]

Output only. Number of scanned resources with zero violations.

§
readonly errors?: number
[src]

Output only. Number of resources that returned an error when scanned.

§
readonly noncompliant?: number
[src]

Output only. Number of scanned resources with at least one violation.

§
readonly scanned?: number
[src]

Output only. Number of resources checked for compliance. Must equal: unenforced + noncompliant + compliant + error

§
readonly unenforced?: number
[src]

Output only. Number of resources where the constraint was not enforced, i.e. the Policy set enforced: false for that resource.