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

x/kubernetes_apis/builtin/apps@v1/mod.ts>AppsV1NamespacedApi

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

Constructors

new
AppsV1NamespacedApi(client: c.RestClient, namespace: string)

Methods

createControllerRevision(body: AppsV1.ControllerRevision, opts?: operations.PutOpts)
createDaemonSet(body: AppsV1.DaemonSet, opts?: operations.PutOpts)
createDeployment(body: AppsV1.Deployment, opts?: operations.PutOpts)
createReplicaSet(body: AppsV1.ReplicaSet, opts?: operations.PutOpts)
createStatefulSet(body: AppsV1.StatefulSet, opts?: operations.PutOpts)
deleteControllerRevision(name: string, opts?: operations.DeleteOpts)
deleteControllerRevisionList(opts?: operations.DeleteListOpts)
deleteDaemonSet(name: string, opts?: operations.DeleteOpts)
deleteDaemonSetList(opts?: operations.DeleteListOpts)
deleteDeployment(name: string, opts?: operations.DeleteOpts)
deleteDeploymentList(opts?: operations.DeleteListOpts)
deleteReplicaSet(name: string, opts?: operations.DeleteOpts)
deleteReplicaSetList(opts?: operations.DeleteListOpts)
deleteStatefulSet(name: string, opts?: operations.DeleteOpts)
deleteStatefulSetList(opts?: operations.DeleteListOpts)
getControllerRevision(name: string, opts?: operations.NoOpts)
getControllerRevisionList(opts?: operations.GetListOpts)
getDaemonSet(name: string, opts?: operations.NoOpts)
getDaemonSetList(opts?: operations.GetListOpts)
getDaemonSetStatus(name: string, opts?: operations.NoOpts)
getDeployment(name: string, opts?: operations.NoOpts)
getDeploymentList(opts?: operations.GetListOpts)
getDeploymentScale(name: string, opts?: operations.NoOpts)
getDeploymentStatus(name: string, opts?: operations.NoOpts)
getReplicaSet(name: string, opts?: operations.NoOpts)
getReplicaSetList(opts?: operations.GetListOpts)
getReplicaSetScale(name: string, opts?: operations.NoOpts)
getReplicaSetStatus(name: string, opts?: operations.NoOpts)
getStatefulSet(name: string, opts?: operations.NoOpts)
getStatefulSetList(opts?: operations.GetListOpts)
getStatefulSetScale(name: string, opts?: operations.NoOpts)
getStatefulSetStatus(name: string, opts?: operations.NoOpts)
patchControllerRevision(
name: string,
type: c.PatchType,
body: AppsV1.ControllerRevision | c.JsonPatch,
opts?: operations.PatchOpts,
)
patchDaemonSet(
name: string,
type: c.PatchType,
body: AppsV1.DaemonSet | c.JsonPatch,
opts?: operations.PatchOpts,
)
patchDaemonSetStatus(
name: string,
type: c.PatchType,
body: AppsV1.DaemonSet | c.JsonPatch,
opts?: operations.PatchOpts,
)
patchDeployment(
name: string,
type: c.PatchType,
body: AppsV1.Deployment | c.JsonPatch,
opts?: operations.PatchOpts,
)
patchDeploymentScale(
name: string,
type: c.PatchType,
body: AutoscalingV1.Scale | c.JsonPatch,
opts?: operations.PatchOpts,
)
patchDeploymentStatus(
name: string,
type: c.PatchType,
body: AppsV1.Deployment | c.JsonPatch,
opts?: operations.PatchOpts,
)
patchReplicaSet(
name: string,
type: c.PatchType,
body: AppsV1.ReplicaSet | c.JsonPatch,
opts?: operations.PatchOpts,
)
patchReplicaSetScale(
name: string,
type: c.PatchType,
body: AutoscalingV1.Scale | c.JsonPatch,
opts?: operations.PatchOpts,
)
patchReplicaSetStatus(
name: string,
type: c.PatchType,
body: AppsV1.ReplicaSet | c.JsonPatch,
opts?: operations.PatchOpts,
)
patchStatefulSet(
name: string,
type: c.PatchType,
body: AppsV1.StatefulSet | c.JsonPatch,
opts?: operations.PatchOpts,
)
patchStatefulSetScale(
name: string,
type: c.PatchType,
body: AutoscalingV1.Scale | c.JsonPatch,
opts?: operations.PatchOpts,
)
patchStatefulSetStatus(
name: string,
type: c.PatchType,
body: AppsV1.StatefulSet | c.JsonPatch,
opts?: operations.PatchOpts,
)
replaceControllerRevision(
name: string,
body: AppsV1.ControllerRevision,
opts?: operations.PutOpts,
)
replaceDaemonSet(
name: string,
body: AppsV1.DaemonSet,
opts?: operations.PutOpts,
)
replaceDaemonSetStatus(
name: string,
body: AppsV1.DaemonSet,
opts?: operations.PutOpts,
)
replaceDeployment(
name: string,
body: AppsV1.Deployment,
opts?: operations.PutOpts,
)
replaceDeploymentScale(
name: string,
body: AutoscalingV1.Scale,
opts?: operations.PutOpts,
)
replaceDeploymentStatus(
name: string,
body: AppsV1.Deployment,
opts?: operations.PutOpts,
)
replaceReplicaSet(
name: string,
body: AppsV1.ReplicaSet,
opts?: operations.PutOpts,
)
replaceReplicaSetScale(
name: string,
body: AutoscalingV1.Scale,
opts?: operations.PutOpts,
)
replaceReplicaSetStatus(
name: string,
body: AppsV1.ReplicaSet,
opts?: operations.PutOpts,
)
replaceStatefulSet(
name: string,
body: AppsV1.StatefulSet,
opts?: operations.PutOpts,
)
replaceStatefulSetScale(
name: string,
body: AutoscalingV1.Scale,
opts?: operations.PutOpts,
)
replaceStatefulSetStatus(
name: string,
body: AppsV1.StatefulSet,
opts?: operations.PutOpts,
)
watchControllerRevisionList(opts?: operations.WatchListOpts)
watchDaemonSetList(opts?: operations.WatchListOpts)
watchDeploymentList(opts?: operations.WatchListOpts)
watchReplicaSetList(opts?: operations.WatchListOpts)
watchStatefulSetList(opts?: operations.WatchListOpts)