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

Object

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

Kubernetes object related to the finding, uniquely identified by GKNN. Used if the object Kind is not one of Pod, Node, NodePool, Binding, or AccessReview.

interface Object {
containers?: Container[];
group?: string;
kind?: string;
name?: string;
ns?: string;
}

§Properties

§
containers?: Container[]
[src]

Pod containers associated with this finding, if any.

§
group?: string
[src]

Kubernetes object group, such as "policy.k8s.io/v1".

§
kind?: string
[src]

Kubernetes object kind, such as "Namespace".

§
name?: string
[src]
§
ns?: string
[src]

Kubernetes object namespace. Must be a valid DNS label. Named "ns" to avoid collision with C++ namespace keyword. For details see https://kubernetes.io/docs/tasks/administer-cluster/namespaces/.