Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/kubernetes_apis/common.ts>JsonPatchOp

REST focused Typescript classes for Kubernetes APIs, and tools for generating API interfaces
Latest
type alias JsonPatchOp
import { type JsonPatchOp } from "https://deno.land/x/kubernetes_apis@v0.5.3/common.ts";
definition:
| { op: "add"; path: string; value: JSONValue; }
| { op: "remove"; path: string; }
| { op: "replace"; path: string; value: JSONValue; }
| { op: "move"; from: string; path: string; }
| { op: "copy"; from: string; path: string; }
| { op: "test"; path: string; value: JSONValue; }