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

Framework

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

Compliance framework associated with the finding.

interface Framework {
category?:
| "FRAMEWORK_CATEGORY_UNSPECIFIED"
| "SECURITY_BENCHMARKS"
| "ASSURED_WORKLOADS"
| "DATA_SECURITY"
| "GOOGLE_BEST_PRACTICES"[];
controls?: Control[];
displayName?: string;
name?: string;
type?: "FRAMEWORK_TYPE_UNSPECIFIED" | "FRAMEWORK_TYPE_BUILT_IN" | "FRAMEWORK_TYPE_CUSTOM";
}

§Properties

§
category?: "FRAMEWORK_CATEGORY_UNSPECIFIED" | "SECURITY_BENCHMARKS" | "ASSURED_WORKLOADS" | "DATA_SECURITY" | "GOOGLE_BEST_PRACTICES"[]
[src]

Category of the framework associated with the finding. E.g. Security Benchmark, or Assured Workloads

§
controls?: Control[]
[src]

The controls associated with the framework.

§
displayName?: string
[src]

Display name of the framework. For a standard framework, this will look like e.g. PCI DSS 3.2.1, whereas for a custom framework it can be a user defined string like MyFramework

§
name?: string
[src]

Name of the framework associated with the finding

§
type?: "FRAMEWORK_TYPE_UNSPECIFIED" | "FRAMEWORK_TYPE_BUILT_IN" | "FRAMEWORK_TYPE_CUSTOM"
[src]

Type of the framework associated with the finding, to specify whether the framework is built-in (pre-defined and immutable) or a custom framework defined by the customer (equivalent to security posture)