Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/kubernetes_apis/builtin/networking.k8s.io@v1/mod.ts>NetworkingV1Api

REST focused Typescript classes for Kubernetes APIs, and tools for generating API interfaces
Latest
class NetworkingV1Api
import { NetworkingV1Api } from "https://deno.land/x/kubernetes_apis@v0.5.1/builtin/networking.k8s.io@v1/mod.ts";

Constructors

new
NetworkingV1Api(client: c.RestClient)

Methods

createIngressClass(body: NetworkingV1.IngressClass, opts?: operations.PutOpts): Promise<NetworkingV1.IngressClass>
deleteIngressClass(name: string, opts?: operations.DeleteOpts): Promise<NetworkingV1.IngressClass | MetaV1.Status>
deleteIngressClassList(opts?: operations.DeleteListOpts): Promise<NetworkingV1.IngressClassList>
getIngressClass(name: string, opts?: operations.NoOpts): Promise<NetworkingV1.IngressClass>
getIngressClassList(opts?: operations.GetListOpts): Promise<NetworkingV1.IngressClassList>
getIngressListForAllNamespaces(opts?: operations.GetListOpts): Promise<NetworkingV1.IngressList>
getNetworkPolicyListForAllNamespaces(opts?: operations.GetListOpts): Promise<NetworkingV1.NetworkPolicyList>
patchIngressClass(
name: string,
type: c.PatchType,
body: NetworkingV1.IngressClass | c.JsonPatch,
opts?: operations.PatchOpts,
): Promise<NetworkingV1.IngressClass>
replaceIngressClass(
name: string,
body: NetworkingV1.IngressClass,
opts?: operations.PutOpts,
): Promise<NetworkingV1.IngressClass>
watchIngressClassList(opts?: operations.WatchListOpts): Promise<c.WatchEventStream<NetworkingV1.IngressClass>>
watchIngressListForAllNamespaces(opts?: operations.WatchListOpts): Promise<c.WatchEventStream<NetworkingV1.Ingress>>
watchNetworkPolicyListForAllNamespaces(opts?: operations.WatchListOpts): Promise<c.WatchEventStream<NetworkingV1.NetworkPolicy>>