Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kubernetes_apis/client.ts>RestClient

REST focused Typescript classes for Kubernetes APIs, and tools for generating API interfaces
Go to Latest
interface RestClient
Re-export
import { type RestClient } from "https://deno.land/x/kubernetes_apis@v0.3.2/client.ts";

Properties

optional
defaultNamespace: string

Methods

performRequest(opts: RequestOptions & { expectStream: true; expectJson: true; }): Promise<ReadableStream<JSONValue>>
performRequest(opts: RequestOptions & { expectStream: true; }): Promise<ReadableStream<Uint8Array>>
performRequest(opts: RequestOptions & { expectJson: true; }): Promise<JSONValue>
performRequest(opts: RequestOptions): Promise<Uint8Array>