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

Subject

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

Represents a Kubernetes subject.

interface Subject {
kind?:
| "AUTH_TYPE_UNSPECIFIED"
| "USER"
| "SERVICEACCOUNT"
| "GROUP";
name?: string;
ns?: string;
}

§Properties

§
kind?: "AUTH_TYPE_UNSPECIFIED" | "USER" | "SERVICEACCOUNT" | "GROUP"
[src]

Authentication type for the subject.

§
name?: string
[src]

Name for the subject.

§
ns?: string
[src]

Namespace for the subject.