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

GoogleCloudRecommenderV1Insight

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

An insight along with the information used to derive the insight. The insight may have associated recommendations as well.

interface GoogleCloudRecommenderV1Insight {
category?:
| "CATEGORY_UNSPECIFIED"
| "COST"
| "SECURITY"
| "PERFORMANCE"
| "MANAGEABILITY"
| "SUSTAINABILITY"
| "RELIABILITY";
content?: {
[key: string]: any;
}
;
description?: string;
etag?: string;
insightSubtype?: string;
lastRefreshTime?: Date;
name?: string;
observationPeriod?: number;
severity?:
| "SEVERITY_UNSPECIFIED"
| "LOW"
| "MEDIUM"
| "HIGH"
| "CRITICAL";
targetResources?: string[];
}

§Properties

§

Recommendations derived from this insight.

§
category?: "CATEGORY_UNSPECIFIED" | "COST" | "SECURITY" | "PERFORMANCE" | "MANAGEABILITY" | "SUSTAINABILITY" | "RELIABILITY"
[src]

Category being targeted by the insight.

§
content?: {
[key: string]: any;
}
[src]

A struct of custom fields to explain the insight. Example: "grantedPermissionsCount": "1000"

§
description?: string
[src]

Free-form human readable summary in English. The maximum length is 500 characters.

§
etag?: string
[src]

Fingerprint of the Insight. Provides optimistic locking when updating states.

§
insightSubtype?: string
[src]

Insight subtype. Insight content schema will be stable for a given subtype.

§
lastRefreshTime?: Date
[src]

Timestamp of the latest data used to generate the insight.

§
name?: string
[src]

Identifier. Name of the insight.

§
observationPeriod?: number
[src]

Observation period that led to the insight. The source data used to generate the insight ends at last_refresh_time and begins at (last_refresh_time - observation_period).

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

Insight's severity.

§

Information state and metadata.

§
targetResources?: string[]
[src]

Fully qualified resource names that this insight is targeting.