PostureTemplate
import type { PostureTemplate } from "https://googleapis.deno.dev/v1/securityposture:v1.ts";
The details of a posture template.
interface PostureTemplate {
readonly categories?:
| "CATEGORY_UNSPECIFIED"
| "AI"
| "AWS"
| "GCP"
| "AZURE"[];
readonly description?: string;
readonly name?: string;
readonly policySets?: PolicySet[];
readonly revisionId?: string;
readonly state?: "STATE_UNSPECIFIED" | "ACTIVE" | "DEPRECATED";
}§Properties
§
readonly categories?: "CATEGORY_UNSPECIFIED" | "AI" | "AWS" | "GCP" | "AZURE"[]
[src]Output only. The categories that the posture template belongs to, as determined by the Security Posture API.
§
readonly name?: string
[src]Output only. Identifier. The name of the posture template, in the format
organizations/{organization}/locations/global/postureTemplates/{posture_template}
.