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

DiscoveredWorkload

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

Represents discovered, customer managed workload that is not registered with the respective GCP service.

interface DiscoveredWorkload {
confidence?: "CONFIDENCE_UNSPECIFIED" | "CONFIDENCE_HIGH";
detectedRelevantHardware?: boolean;
detectedRelevantKeywords?: boolean;
detectedRelevantPackages?: boolean;
workloadType?:
| "WORKLOAD_TYPE_UNSPECIFIED"
| "MCP_SERVER"
| "AI_INFERENCE"
| "AGENT";
}

§Properties

§
confidence?: "CONFIDENCE_UNSPECIFIED" | "CONFIDENCE_HIGH"
[src]

The confidence in detection of this workload.

§
detectedRelevantHardware?: boolean
[src]

A boolean flag set to true if associated hardware strongly predicts the workload type.

§
detectedRelevantKeywords?: boolean
[src]

A boolean flag set to true if associated keywords strongly predict the workload type.

§
detectedRelevantPackages?: boolean
[src]

A boolean flag set to true if installed packages strongly predict the workload type.

§
workloadType?: "WORKLOAD_TYPE_UNSPECIFIED" | "MCP_SERVER" | "AI_INFERENCE" | "AGENT"
[src]

The type of workload.