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

AccessReview

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

Conveys information about a Kubernetes access review (such as one returned by a kubectl auth can-i command) that was involved in a finding.

interface AccessReview {
group?: string;
name?: string;
ns?: string;
resource?: string;
subresource?: string;
verb?: string;
version?: string;
}

§Properties

§
group?: string
[src]

The API group of the resource. "*" means all.

§
name?: string
[src]

The name of the resource being requested. Empty means all.

§
ns?: string
[src]

Namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces. Both are represented by "" (empty).

§
resource?: string
[src]

The optional resource type requested. "*" means all.

§
subresource?: string
[src]

The optional subresource type.

§
verb?: string
[src]

A Kubernetes resource API verb, like get, list, watch, create, update, delete, proxy. "*" means all.

§
version?: string
[src]

The API version of the resource. "*" means all.