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

x/kubernetes_apis/builtin/networking.k8s.io@v1alpha1/mod.ts>NetworkingV1alpha1Api

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

Constructors

new
NetworkingV1alpha1Api(client: c.RestClient)

Methods

createIPAddress(body: NetworkingV1alpha1.IPAddress, opts?: operations.PutOpts): Promise<NetworkingV1alpha1.IPAddress>
createServiceCIDR(body: NetworkingV1alpha1.ServiceCIDR, opts?: operations.PutOpts): Promise<NetworkingV1alpha1.ServiceCIDR>
deleteIPAddress(name: string, opts?: operations.DeleteOpts): Promise<NetworkingV1alpha1.IPAddress | MetaV1.Status>
deleteIPAddressList(opts?: operations.DeleteListOpts): Promise<NetworkingV1alpha1.IPAddressList>
deleteServiceCIDR(name: string, opts?: operations.DeleteOpts): Promise<NetworkingV1alpha1.ServiceCIDR | MetaV1.Status>
deleteServiceCIDRList(opts?: operations.DeleteListOpts): Promise<NetworkingV1alpha1.ServiceCIDRList>
getIPAddress(name: string, opts?: operations.NoOpts): Promise<NetworkingV1alpha1.IPAddress>
getIPAddressList(opts?: operations.GetListOpts): Promise<NetworkingV1alpha1.IPAddressList>
getServiceCIDR(name: string, opts?: operations.NoOpts): Promise<NetworkingV1alpha1.ServiceCIDR>
getServiceCIDRList(opts?: operations.GetListOpts): Promise<NetworkingV1alpha1.ServiceCIDRList>
getServiceCIDRStatus(name: string, opts?: operations.NoOpts): Promise<NetworkingV1alpha1.ServiceCIDR>
patchIPAddress(
name: string,
type: c.PatchType,
body: NetworkingV1alpha1.IPAddress | c.JsonPatch,
opts?: operations.PatchOpts,
): Promise<NetworkingV1alpha1.IPAddress>
patchServiceCIDR(
name: string,
type: c.PatchType,
body: NetworkingV1alpha1.ServiceCIDR | c.JsonPatch,
opts?: operations.PatchOpts,
): Promise<NetworkingV1alpha1.ServiceCIDR>
patchServiceCIDRStatus(
name: string,
type: c.PatchType,
body: NetworkingV1alpha1.ServiceCIDR | c.JsonPatch,
opts?: operations.PatchOpts,
): Promise<NetworkingV1alpha1.ServiceCIDR>
replaceIPAddress(
name: string,
body: NetworkingV1alpha1.IPAddress,
opts?: operations.PutOpts,
): Promise<NetworkingV1alpha1.IPAddress>
replaceServiceCIDR(
name: string,
body: NetworkingV1alpha1.ServiceCIDR,
opts?: operations.PutOpts,
): Promise<NetworkingV1alpha1.ServiceCIDR>
replaceServiceCIDRStatus(
name: string,
body: NetworkingV1alpha1.ServiceCIDR,
opts?: operations.PutOpts,
): Promise<NetworkingV1alpha1.ServiceCIDR>
watchIPAddressList(opts?: operations.WatchListOpts): Promise<c.WatchEventStream<NetworkingV1alpha1.IPAddress>>
watchServiceCIDRList(opts?: operations.WatchListOpts): Promise<c.WatchEventStream<NetworkingV1alpha1.ServiceCIDR>>